debian/0000755000000000000000000000000012250560617007172 5ustar debian/compat0000644000000000000000000000000212250560617010370 0ustar 9 debian/copyright0000644000000000000000000000432012250560617011124 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Fuse Upstream-Contact: Dobrica Pavlinusic Source: http://search.cpan.org/dist/Fuse/ Files: * Copyright: 2001-2011 Mark Glines 2001-2011 Dobrica Pavlinusic Richard Dawe Mark Wilkinson Csaba Henk Vladimir V. Kolpakov Andrew Chadwick Chris Dolan Reuben Thomas Jason Long Justin Fletcher Derrik Pates Daniel Frett Alex Sudakov Bojan Petrovic License: LGPL-2.1+ Comment: jaslong from AUTHORS is well known cpan contributor Jason Long. Copyright years according to git tree commits. Upstream clarify the license terms by git commit c352cd3e4bf245da980c2e8876b6b9b509b9f168. This commit will be in version 0.15 (see https://github.com/dpavlin/perl-fuse/commit/c352cd3e4bf245da980c2e8876b6b9b509b9f168) This is compatible with README that states: This is contributed to the FUSE project by Mark Glines , and is therefore subject to the same license and copyright as FUSE itself. Please see the AUTHORS and COPYING files from the FUSE distribution for more information. According to http://packages.debian.org/changelogs/pool/main/f/fuse/current/copyright libfuse is licencied under LGPL2+ Files: debian/* Copyright: 2006-2009, Romain Beauxis 2011, Bastien Roucariès License: LGPL-2.1+ License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . On Debian systems, the complete text of the GNU Lesser General Public license can be found in the file /usr/share/common-licenses/LGPL-2.1 debian/rules0000755000000000000000000000031512250560617010251 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/perl-makemaker.mk # do not test buildd does not have fuse DEB_MAKE_CHECK_TARGET := # Do not build tests debian/watch0000644000000000000000000000014312250560617010221 0ustar version=3 http://search.cpan.org/dist/Fuse .*/Fuse-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/control0000644000000000000000000000225212250560617010576 0ustar Source: libfuse-perl Section: perl Priority: optional Build-Depends: debhelper (>= 9.20120312~), cdbs (>= 0.4.122~), perl, libfuse-dev, pkg-config Maintainer: Debian Perl Group Uploaders: Bastien Roucariès , Romain Beauxis Homepage: http://search.cpan.org/dist/Fuse/Fuse.pm Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libfuse-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libfuse-perl.git Standards-Version: 3.9.5 Package: libfuse-perl Architecture: any Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends} Recommends: fuse [linux-any] | fuse4bsd [kfreebsd-any] Suggests: libunix-mknod-perl, liblchown-perl, libfilesys-statvfs-perl Description: Perl bindings for FUSE (Filesystems in USErland This module lets you implement filesystems in perl, through the FUSE interface . FUSE (Filesystem in USErspace) is a simple interface for userspace programs to export a virtual filesystem to the kernel. FUSE also aims to provide a secure method for non privileged users to create and mount their own filesystem implementations. debian/source/0000755000000000000000000000000012250560617010472 5ustar debian/source/format0000644000000000000000000000001312250560617011677 0ustar 3.0 (quilt)debian/patches/0000755000000000000000000000000012250560617010621 5ustar debian/patches/fix-FTBFS-on-kfreebsd.patch0000644000000000000000000000110012250560617015457 0ustar Description: Fix FTBFS on Debian GNU/kFreeBSD Origin: vendor Bug-Debian: http://bugs.debian.org/670808 Forwarded: no Author: Salvatore Bonaccorso Last-Update: 2012-04-30 --- a/Fuse.xs +++ b/Fuse.xs @@ -17,7 +17,7 @@ #define FUSE_MINOR_VERSION FUSE_FOUND_MINOR_VER #endif /* defined(__OpenBSD__) */ -#if defined(__linux__) || defined(__sun__) +#if ( defined(__linux__) || defined(__sun__) || defined(__GNU__) || defined(__GLIBC__) ) # define STAT_SEC(st, st_xtim) ((st)->st_xtim.tv_sec) # define STAT_NSEC(st, st_xtim) ((st)->st_xtim.tv_nsec) #else debian/patches/series0000644000000000000000000000003412250560617012033 0ustar fix-FTBFS-on-kfreebsd.patch debian/examples0000644000000000000000000000001312250560617010725 0ustar examples/* debian/changelog0000644000000000000000000000733412250560617011053 0ustar libfuse-perl (0.16.1-1) unstable; urgency=low * Team upload. * Imported Upstream version 0.16.1 * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Refresh fix-FTBFS-on-kfreebsd.patch patch * Bump Standards-Version to 3.9.5 * Update versioned Build-Depends on debhelper. Update the dependency to debhelper (>= 9.20120312~) to have all hardening flags included. * Correct Vcs-Browser field (canonical uri) * Update Build-Depends on cdbs. Update versioned Build-Depends on cdbs to (>= 0.4.122~). -- Salvatore Bonaccorso Sat, 07 Dec 2013 09:51:01 +0100 libfuse-perl (0.15.1-2) unstable; urgency=low * Team upload. * Add fix-FTBFS-on-kfreebsd.patch patch. Fix FTBFS on Debian GNU/kFreeBSD architecture: "error: 'struct stat' has no member named 'st_ctimespec'". (Closes: #670808) -- Salvatore Bonaccorso Mon, 30 Apr 2012 14:21:00 +0200 libfuse-perl (0.15.1-1) unstable; urgency=low * Team upload. * Imported Upstream version 0.15.1 + Rebuilding fixes "fuse: unknown option `'". (Closes: #670717). * Update debian/copyright file. Update format to copyright-format 1.0 as released together with Debian policy 3.9.3. Update Source field to refer to http://search.cpan.org/dist/Fuse/. * Bump Standards-Version to 3.9.3 * Drop 0001-Fix-a-typo-in-documentation.patch. Patch is applied upstream. * Drop 0002-Fix-another-typo-in-documentation-separeted.patch patch. Patch is applied upstream. * Bump Debhelper compat level to 9. Adjust versioned Build-Depends on debhelper to (>= 9). -- Salvatore Bonaccorso Sat, 28 Apr 2012 23:37:03 +0200 libfuse-perl (0.14-1) unstable; urgency=low * New upstream version (Closes: #647029). * Add myself as maintainer. * Bug fix: "uninstallable on kfreebsd-i386 or kfreebsd-amd64", thanks to Robert Millan (Closes: #634788). * Bump policy. * Switch to 3.0 (quilt) format. * Switch to perl-makemaker.mk. -- Bastien Roucariès Mon, 24 Oct 2011 18:31:49 +0200 libfuse-perl (0.09-3) unstable; urgency=low * Ack previous NMU. * Added Recommends on fuse-utils Closes: #494726 * Bumped compat to 7 * Updated standards version to 3.8.1 * Updated watch file -- Romain Beauxis Mon, 13 Apr 2009 23:05:58 -0400 libfuse-perl (0.09-2.1) unstable; urgency=low * Non-maintainer upload for the Perl 5.10 transition. * Don't try to remove /usr/share/perl5 if it doesn't exist. (Closes: #463456) -- Niko Tyni Wed, 02 Apr 2008 20:29:36 +0300 libfuse-perl (0.09-2) unstable; urgency=low * Added examples to package (Closes: #453146) * Corrected typo (Closes: #453143) * Updated standards to 3.7.3 (no changes) -- Romain Beauxis Sun, 09 Dec 2007 19:59:15 +0100 libfuse-perl (0.09-1) unstable; urgency=low * New upstream release * Refreshed patch removing unportable version check. Forced versioned dependency to latest sid package then. -- Romain Beauxis Tue, 20 Nov 2007 01:08:23 +0100 libfuse-perl (0.08-1) unstable; urgency=low * New upstream release. -- Romain Beauxis Tue, 6 Feb 2007 03:04:08 +0100 libfuse-perl (0.07-2) unstable; urgency=low * Switched to cdbs build for perl module. -- Romain Beauxis Tue, 10 Oct 2006 02:41:48 +0200 libfuse-perl (0.07-1) unstable; urgency=low * New upstream release * First upload to sid (Closes: #345003) -- Romain Beauxis Wed, 27 Sep 2006 16:09:39 +0200 libfuse-perl (0.06-1) unstable; urgency=low * Initial Release -- Romain Beauxis Fri, 5 May 2006 10:10:25 +0200