debian/0000755000000000000000000000000011623162406007167 5ustar debian/watch0000644000000000000000000000056311553334272010230 0ustar # Example watch control file for uscan # Rename this file to "watch" and then you can run the "uscan" command # to check for upstream updates and more. # See uscan(1) for format # Compulsory line, this is a version 3 file version=3 http://code.google.com/p/rdiff-backup-fs/downloads/list \ http://rdiff-backup-fs.googlecode.com/files/rdiff-backup-fs-([0-9].*)\.tar\.gz debian/docs0000644000000000000000000000001411553334272010041 0ustar NEWS README debian/changelog0000644000000000000000000000220211623162363011037 0ustar rdiff-backup-fs (1.0.0-4) unstable; urgency=low * Applied changes to avoid FTBFS with ld --as-needed (Closes: #632476) * Provides, Conflicts and Replaces archfs (Closes: #612514). I'm sorry for not noticing that they were the same package and note that all the old archfs package patches were merged upstream or are unnecesary with this version -- Sergio Talens-Oliag Thu, 18 Aug 2011 11:39:39 +0200 rdiff-backup-fs (1.0.0-3) unstable; urgency=low * Fixes to build under kfreebsd -- Sergio Talens-Oliag Wed, 27 Apr 2011 10:37:53 +0200 rdiff-backup-fs (1.0.0-2) unstable; urgency=low * Added missing Build-depends (pkg-config) * Updated standards version (no changes needed) * Removied upstream Vcs-Hg and Vcs-Browser... probably I should try hg-buildpackage and upload this one to the collab-maint project, but today I don't have the time -- Sergio Talens-Oliag Wed, 20 Apr 2011 11:02:00 +0200 rdiff-backup-fs (1.0.0-1) unstable; urgency=low * Initial release (Closes: #623364) -- Sergio Talens-Oliag Tue, 19 Apr 2011 16:54:19 +0200 debian/compat0000644000000000000000000000000211553334272010371 0ustar 7 debian/patches/0000755000000000000000000000000011623162406010616 5ustar debian/patches/series0000644000000000000000000000006011623161250012023 0ustar kfreebsd-support.diff ld_as-needed-support.diff debian/patches/kfreebsd-support.diff0000644000000000000000000000226111556003005014742 0ustar Index: rdiff-backup-fs-1.0.0/configure.ac =================================================================== --- rdiff-backup-fs-1.0.0.orig/configure.ac 2011-02-08 11:20:26.000000000 +0100 +++ rdiff-backup-fs-1.0.0/configure.ac 2011-04-27 13:58:55.455155268 +0200 @@ -46,7 +46,7 @@ dnl checking type of system to provide proper compile and linking flags case ${host} in - *-*-linux-*) AC_SUBST(CFLAGS, ["-Wall -O3 `pkg-config --cflags fuse`"]) + *-*-linux-*|*-*-k*bsd*-*) AC_SUBST(CFLAGS, ["-Wall -O3 `pkg-config --cflags fuse`"]) AC_SUBST(LDFLAGS, ["`pkg-config --cflags --libs fuse` -lz"]);; *-*-bsd-*) AC_SUBST(CFLAGS, ["-Wall -O3 `pkg-config --cflags fuse`"]) AC_SUBST(LDFLAGS, ["`pkg-config --cflags --libs fuse` -lz"]);; Index: rdiff-backup-fs-1.0.0/operations.c =================================================================== --- rdiff-backup-fs-1.0.0.orig/operations.c 2011-04-27 13:59:28.443636259 +0200 +++ rdiff-backup-fs-1.0.0/operations.c 2011-04-27 14:00:35.528748767 +0200 @@ -1,4 +1,4 @@ -#include "fuse.h" +#include "operations.h" // This header includes the fuse.h header. #include "headers.h" #include "support/gutils.h" #include "support/gstring.h" debian/patches/ld_as-needed-support.diff0000644000000000000000000000212311623161417015465 0ustar Description: Place libraries in LIBS variable. This ensures correct order of parameters for ld, allowing to link with --as-needed option. Author: Ilya Barygin Bug-Ubuntu: https://launchpad.net/bugs/803192 --- a/configure.ac +++ b/configure.ac @@ -47,11 +47,11 @@ dnl checking type of system to provide p case ${host} in *-*-linux-*|*-*-k*bsd*-*) AC_SUBST(CFLAGS, ["-Wall -O3 `pkg-config --cflags fuse`"]) - AC_SUBST(LDFLAGS, ["`pkg-config --cflags --libs fuse` -lz"]);; + AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);; *-*-bsd-*) AC_SUBST(CFLAGS, ["-Wall -O3 `pkg-config --cflags fuse`"]) - AC_SUBST(LDFLAGS, ["`pkg-config --cflags --libs fuse` -lz"]);; + AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);; *-*-darwin*) AC_SUBST(CFLAGS, ["-Wall -O3 `pkg-config --cflags fuse`"]) - AC_SUBST(LDFLAGS, ["`pkg-config --cflags --libs fuse` -lz"]);; + AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);; *) AC_MSG_WARN(No automatic flags for this host system; set compile/linking flags manually);; esac debian/source/0000755000000000000000000000000011623162406010467 5ustar debian/source/format0000644000000000000000000000001411553334272011701 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000071411555753144010262 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh --with autoreconf $@ debian/control0000644000000000000000000000123111623162156010571 0ustar Source: rdiff-backup-fs Section: utils Priority: extra Maintainer: Sergio Talens-Oliag Build-Depends: debhelper (>= 7.0.50~), autotools-dev, libz-dev, libfuse-dev, pkg-config, dh-autoreconf Standards-Version: 3.9.2 Homepage: http://code.google.com/p/rdiff-backup-fs/ Package: rdiff-backup-fs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Provides: archfs Conflicts: archfs Replaces: archfs Description: Fuse filesystem for accessing rdiff-backup archives rdiff-backup-fs is a filesystem in userspace that reads rdiff-backup archives and provides convenient access for different revisions of the copied files and directories. debian/links0000644000000000000000000000015011623161120010216 0ustar usr/bin/rdiff-backup-fs usr/bin/archfs usr/share/man/man1/rdiff-backup-fs.1 usr/share/man/man1/archfs.1 debian/copyright0000644000000000000000000000104011553334272011121 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: rdiff-backup-fs Source: http://code.google.com/p/rdiff-backup-fs/ Files: * Copyright: 2007-2011 Filip GruszczyƄski License: GPL-3+ Files: debian/* Copyright: 2011 Sergio Talens-Oliag License: GPL-2+ License: GPL-2+ The full text of the GPL version 2 is distributed in /usr/share/common-licenses/GPL-2 on Debian systems. License: GPL-3+ The full text of the GPL version 3 is distributed in /usr/share/common-licenses/GPL-3 on Debian systems.