Bug#840682: dh-exec --with=subst run also strip and filter command

2022-07-11 Thread Craig Small
On Thu, 13 Oct 2016 21:31:38 +0200 Bastien ROUCARIES <
roucaries.bast...@gmail.com> wrote:
> > dh-exec --with=subst --no-act
> /usr/lib/dh-exec/dh-exec-filter | /usr/lib/dh-exec/dh-exec-subst |
> /usr/lib/dh-exec/dh-exec-strip [input: {0, NULL}, output: {0, NULL}]
>
> instead of
> /usr/lib/dh-exec/dh-exec-subst  [input: {0, NULL}, output: {0, NULL}]
Hi,
Apologies for the delay, I have just took over maintaining dh-exec.

The trick we have here is a lot of packages have now expected that the flag
works this way[1].
Looking at the code, it adds filter, then whatever --with specifies, or
subst,install then strip.

That means the current packages specify install, but mean
filter,install,strip. If I make this change, then it will only do install.
I think only doing install is the right answer, but not sure if there is a
way of doing this but not breaking everything.

 - Craig

1: https://codesearch.debian.net/search?q=dh-exec+--with%3D&literal=1


Bug#990428: bonding now completely broken

2022-07-11 Thread Dirk Jost
Hiya,

since roughly last week bonding is completely broken for me, whatever way I’m 
using it. Neither via the slave or the master option it works now.
Is there any new synthax, we are supposed to use?

Cheers,
Dirk.

Gesendet von Mail für Windows



Bug#1003144: marked as done (obexftp FTCBFS: multiple reasons)

2022-07-11 Thread Debian Bug Tracking System
Your message dated Mon, 11 Jul 2022 22:20:16 +
with message-id 
and subject line Bug#1003144: fixed in obexftp 0.24-7
has caused the Debian Bug report #1003144,
regarding obexftp FTCBFS: multiple reasons
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1003144: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1003144
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: obexftp
Version: 0.24-6
Tags: patch
User: debian-cr...@lists.debian.org
Usertags: ftcbfs

obexftp fails to cross build from source. Most of the reasons come down
to language bindings. In order to make the problem manageable, I propose
adding support for the noperl and noruby build profiles. Those profiles
allow easy disabling of those language bindings. That's really needed
for ruby as the ruby packaging itself does not yet support cross
building in a sane way. So all we can support right now is cross
building with the noruby profile. For perl, exporting a PERL5LIB
pointing to the cross configs makes it work. Please consider applying
the attached patch.

Helmut
diff --minimal -Nru obexftp-0.24/debian/changelog obexftp-0.24/debian/changelog
--- obexftp-0.24/debian/changelog   2019-08-21 19:51:26.0 +0200
+++ obexftp-0.24/debian/changelog   2022-01-03 07:24:35.0 +0100
@@ -1,3 +1,13 @@
+obexftp (0.24-7) UNRELEASED; urgency=medium
+
+  * QA upload.
+  * Support build profiles noperl and noruby.
+  * Make obexftp cross build with just noruby:
++ Add missing build dependency on perl-xs-dev.
++ Export a PERL5LIB containing the cross config.
+
+ -- Helmut Grohne   Mon, 03 Jan 2022 07:24:35 +0100
+
 obexftp (0.24-6) unstable; urgency=medium
 
   * QA upload.
diff --minimal -Nru obexftp-0.24/debian/control obexftp-0.24/debian/control
--- obexftp-0.24/debian/control 2019-08-21 19:51:17.0 +0200
+++ obexftp-0.24/debian/control 2022-01-03 07:24:35.0 +0100
@@ -7,11 +7,12 @@
  cmake,
  debhelper (>= 9),
  doxygen,
- gem2deb,
+ gem2deb ,
  libbluetooth-dev,
  libopenobex2-dev,
+ perl-xs-dev ,
  pkg-config,
- swig,
+ swig  ,
 Standards-Version: 3.9.7
 Homepage: http://triq.net/obex
 Vcs-Git: https://anonscm.debian.org/git/collab-maint/obexftp.git
@@ -140,6 +141,7 @@
 Package: ruby-obexftp
 Architecture: any
 Section: ruby
+Build-Profiles: 
 Depends:
  libobexftp0 (= ${binary:Version}),
  ${misc:Depends},
@@ -163,6 +165,7 @@
 Package: libobexftp-perl
 Architecture: any
 Section: perl
+Build-Profiles: 
 Depends:
  libobexftp0 (= ${binary:Version}),
  ${misc:Depends},
diff --minimal -Nru obexftp-0.24/debian/rules obexftp-0.24/debian/rules
--- obexftp-0.24/debian/rules   2019-08-21 19:51:26.0 +0200
+++ obexftp-0.24/debian/rules   2022-01-03 07:24:35.0 +0100
@@ -1,14 +1,26 @@
 #!/usr/bin/make -f
 
+include /usr/share/dpkg/architecture.mk
+
 export DH_VERBOSE=1
 export DEB_BUILD_MAINT_OPTIONS=hardening=+all
 
+DOPACKAGES := $(shell dh_listpackages)
+
 ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CFLAGS += -DOBEXFTP_DEBUG=5
 endif
 
+ifneq ($(filter libobexftp-perl,$(DOPACKAGES)),)
+PERL_VER := $(shell perl -MConfig -e 'print $$Config{version}')
+ifneq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
+export PERL5LIB := 
/usr/lib/$(DEB_HOST_MULTIARCH)/perl/cross-config-$(PERL_VER)$(if 
$(PERL5LIB),:$(PERL5LIB))
+endif
 PERL_ARCHLIB := $(shell perl -MConfig -e 'print $$Config{vendorarch}')
+endif
+ifneq ($(filter ruby-obexftp,$(DOPACKAGES)),)
 RUBY_DEPENDS := -Vruby:Depends="lib$(firstword $(shell dh_ruby 
--print-supported))"
+endif
 
 %:
dh $@ --parallel
@@ -17,14 +29,19 @@
dh_gencontrol -- $(RUBY_DEPENDS)
 
 override_dh_auto_configure:
-   dh_auto_configure -- -DENABLE_PYTHON=OFF
+   dh_auto_configure -- \
+   -DENABLE_PERL=$(if $(filter 
libobexftp-perl,$(DOPACKAGES)),ON,OFF) \
+   -DENABLE_PYTHON=OFF \
+   -DENABLE_RUBY=$(if $(filter ruby-obexftp,$(DOPACKAGES)),ON,OFF)
 
 override_dh_auto_build:
dh_auto_build
doxygen
 
 override_dh_install:
+ifneq ($(filter libobexftp-perl,$(DOPACKAGES)),)
sed -e 's;@PERL_ARCHLIB@;$(PERL_ARCHLIB);g;' 
$(CURDIR)/debian/libobexftp-perl.install.in > 
$(CURDIR)/debian/libobexftp-perl.install
+endif
dh_install --fail-missing -X.la
 
 override_dh_installdocs:
--- End Message ---
--- Begin Message ---
Source: obexftp
Source-Version: 0.24-7
Done: Vagrant Cascadian 

We believe that the bug you reported is fixed in the latest version of
obexftp, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the pr

Processing of obexftp_0.24-7_source.changes

2022-07-11 Thread Debian FTP Masters
obexftp_0.24-7_source.changes uploaded successfully to localhost
along with the files:
  obexftp_0.24-7.dsc
  obexftp_0.24-7.debian.tar.xz
  obexftp_0.24-7_arm64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



obexftp_0.24-7_source.changes ACCEPTED into unstable

2022-07-11 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 Jul 2022 14:45:14 -0700
Source: obexftp
Architecture: source
Version: 0.24-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Vagrant Cascadian 
Closes: 1003144
Changes:
 obexftp (0.24-7) unstable; urgency=medium
 .
   * QA upload.
 .
   [ Jelmer Vernooij ]
   * Migrate repository from alioth to salsa.
 .
   [ Helmut Grohne ]
   * Support build profiles noperl and noruby. (Closes: #1003144)
   * Make obexftp cross build with just noruby:
 + Add missing build dependency on perl-xs-dev.
 + Export a PERL5LIB containing the cross config.
 .
   [ Vagrant Cascadian ]
   * debian/rules: Pass -DCMAKE_BUILD_RPATH_USE_ORIGIN=ON via
 dh_auto_configure override.
   * Update to debhelper-compat 13.
Checksums-Sha1:
 83f827aa2b40436e2d8f597046be6057b4154ee6 1872 obexftp_0.24-7.dsc
 490f5a6d4bb13d41041a09e143d82f837b42f8e9 8916 obexftp_0.24-7.debian.tar.xz
 2135b0a435cbbc0187a401a742ca35278b38aa20 13294 obexftp_0.24-7_arm64.buildinfo
Checksums-Sha256:
 c1fa5e8f0e85a165071e6af8e4d1135f958eaf3126785868e56f7a51d5e099ee 1872 
obexftp_0.24-7.dsc
 f93736a773685710994282190a4485ee18c41f42f40212d218d66f6e99729167 8916 
obexftp_0.24-7.debian.tar.xz
 46564adad90b9bc8e0f3ff6a95b9c752429f587b7d54e24e72c51ea596583c9f 13294 
obexftp_0.24-7_arm64.buildinfo
Files:
 a27159d7cff96dcf8393276f21958592 1872 comm optional obexftp_0.24-7.dsc
 a7d8126fd3b14d121a2f0b3e7a92ce48 8916 comm optional 
obexftp_0.24-7.debian.tar.xz
 ee8876e4609f05be2d4a44f6c717044d 13294 comm optional 
obexftp_0.24-7_arm64.buildinfo

-BEGIN PGP SIGNATURE-

iJYEARYKAD4WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCYsyd9SAcdmFncmFudEBy
ZXByb2R1Y2libGUtYnVpbGRzLm9yZwAKCRDcUY/If5cWqjwxAQD2+lzayqwihgXG
9ZHwGUTKVsyXiFKxkeKqsV/2FObXbAEAjv+/UXPCqwy0gmh8SMmNlwZPyz3+VdR7
r/o4V9+tpwY=
=KmDl
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#1014789: rdiff-backup-fs: reproducible-builds: embedded build paths in /usr/bin/rdiff-backup-fs

2022-07-11 Thread Vagrant Cascadian
Source: rdiff-backup-fs
Severity: normal
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: buildpath
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

The build path is embedded in /usr/bin/rdiff-backup-fs:

  
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/rdiff-backup-fs.html

  /build/1st/rdiff-backup-fs-1.0.0/rdiff-backup-fs.c:43
  vs.
  /build/2/rdiff-backup-fs-1.0.0/2nd/rdiff-backup-fs.c:43

The attached patches fix this by updating to using debhelper compat 13
which sets various compiler flags by default, patching configure.ac to
take EXTRA_CFLAGS, and passing EXTRA_CFLAGS to configure in
debian/rules.


With these patches applied, rdiff-backup-fs should build reproducibly on
tests.reproducible-builds.org!


live well,
  vagrant
From cc979a98912da5099859c5337d2c7de5bb7aac9d Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian 
Date: Mon, 11 Jul 2022 23:13:08 +
Subject: [PATCH 1/3] Update to debhelper compat 13.

---
 debian/compat  | 1 -
 debian/control | 2 +-
 debian/rules   | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)
 delete mode 100644 debian/compat

diff --git a/debian/compat b/debian/compat
deleted file mode 100644
index 7f8f011..000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-7
diff --git a/debian/control b/debian/control
index c6d57ea..b4fa00f 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: rdiff-backup-fs
 Section: utils
 Priority: extra
 Maintainer: Debian QA Group 
-Build-Depends: debhelper (>= 7.0.50~), autotools-dev, libz-dev, libfuse-dev, pkg-config, dh-autoreconf
+Build-Depends: debhelper-compat (= 13), libz-dev, libfuse-dev, pkg-config
 Standards-Version: 3.9.2
 Homepage: http://code.google.com/p/rdiff-backup-fs/
 
diff --git a/debian/rules b/debian/rules
index 21dfdfb..955dd78 100755
--- a/debian/rules
+++ b/debian/rules
@@ -10,4 +10,4 @@
 #export DH_VERBOSE=1
 
 %:
-	dh --with autoreconf $@ 
+	dh $@
-- 
2.36.1

From 20475bdd718c6baca6bd832dc92ef37821bec195 Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian 
Date: Mon, 11 Jul 2022 23:13:49 +
Subject: [PATCH 2/3] configure.ac: Support passing EXTRA_CFLAGS when setting
 LIBS and CFLAGS variables.

---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 7f7482a..ae26bde 100644
--- a/configure.ac
+++ b/configure.ac
@@ -46,8 +46,8 @@ AC_TYPE_SIZE_T
 dnl checking type of system to provide proper compile and linking flags
 
 case ${host} in
-*-*-linux-*|*-*-k*bsd*-*)	AC_SUBST(CFLAGS, ["-Wall -g -O3 `pkg-config --cflags fuse`"])
-			AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);;
+*-*-linux-*|*-*-k*bsd*-*)	AC_SUBST(CFLAGS, ["$EXTRA_CFLAGS -Wall -g -O3 `pkg-config --cflags fuse`"])
+			AC_SUBST(LIBS, ["$LIBS $EXTRA_CFLAGS `pkg-config --cflags --libs fuse` -lz"]);;
 *-*-bsd-*)		AC_SUBST(CFLAGS, ["-Wall -g -O3 `pkg-config --cflags fuse`"])
 			AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);;
 *-*-darwin*)	AC_SUBST(CFLAGS, ["-Wall -g -O3 `pkg-config --cflags fuse`"])
-- 
2.36.1

From 8f52af0fa9e957c8eff1797aaf57d8bb9233af47 Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian 
Date: Mon, 11 Jul 2022 23:15:45 +
Subject: [PATCH 3/3] debian/rules: Set EXTRA_CFLAGS in dh_auto_configure
 override.

This allows passing the default compiler flags, such as
-ffile-prefix-map which is used to avoid embedding the build path.
---
 debian/rules | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/debian/rules b/debian/rules
index 955dd78..608d0b6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -11,3 +11,6 @@
 
 %:
 	dh $@
+
+override_dh_auto_configure:
+	EXTRA_CFLAGS="$(CFLAGS)" dh_auto_configure
-- 
2.36.1



signature.asc
Description: PGP signature


Bug#1014789: marked as done (rdiff-backup-fs: reproducible-builds: embedded build paths in /usr/bin/rdiff-backup-fs)

2022-07-11 Thread Debian Bug Tracking System
Your message dated Tue, 12 Jul 2022 00:33:53 +
with message-id 
and subject line Bug#1014789: fixed in rdiff-backup-fs 1.0.0-6
has caused the Debian Bug report #1014789,
regarding rdiff-backup-fs: reproducible-builds: embedded build paths in 
/usr/bin/rdiff-backup-fs
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1014789: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1014789
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: rdiff-backup-fs
Severity: normal
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: buildpath
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

The build path is embedded in /usr/bin/rdiff-backup-fs:

  
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/rdiff-backup-fs.html

  /build/1st/rdiff-backup-fs-1.0.0/rdiff-backup-fs.c:43
  vs.
  /build/2/rdiff-backup-fs-1.0.0/2nd/rdiff-backup-fs.c:43

The attached patches fix this by updating to using debhelper compat 13
which sets various compiler flags by default, patching configure.ac to
take EXTRA_CFLAGS, and passing EXTRA_CFLAGS to configure in
debian/rules.


With these patches applied, rdiff-backup-fs should build reproducibly on
tests.reproducible-builds.org!


live well,
  vagrant
From cc979a98912da5099859c5337d2c7de5bb7aac9d Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian 
Date: Mon, 11 Jul 2022 23:13:08 +
Subject: [PATCH 1/3] Update to debhelper compat 13.

---
 debian/compat  | 1 -
 debian/control | 2 +-
 debian/rules   | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)
 delete mode 100644 debian/compat

diff --git a/debian/compat b/debian/compat
deleted file mode 100644
index 7f8f011..000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-7
diff --git a/debian/control b/debian/control
index c6d57ea..b4fa00f 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: rdiff-backup-fs
 Section: utils
 Priority: extra
 Maintainer: Debian QA Group 
-Build-Depends: debhelper (>= 7.0.50~), autotools-dev, libz-dev, libfuse-dev, pkg-config, dh-autoreconf
+Build-Depends: debhelper-compat (= 13), libz-dev, libfuse-dev, pkg-config
 Standards-Version: 3.9.2
 Homepage: http://code.google.com/p/rdiff-backup-fs/
 
diff --git a/debian/rules b/debian/rules
index 21dfdfb..955dd78 100755
--- a/debian/rules
+++ b/debian/rules
@@ -10,4 +10,4 @@
 #export DH_VERBOSE=1
 
 %:
-	dh --with autoreconf $@ 
+	dh $@
-- 
2.36.1

From 20475bdd718c6baca6bd832dc92ef37821bec195 Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian 
Date: Mon, 11 Jul 2022 23:13:49 +
Subject: [PATCH 2/3] configure.ac: Support passing EXTRA_CFLAGS when setting
 LIBS and CFLAGS variables.

---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 7f7482a..ae26bde 100644
--- a/configure.ac
+++ b/configure.ac
@@ -46,8 +46,8 @@ AC_TYPE_SIZE_T
 dnl checking type of system to provide proper compile and linking flags
 
 case ${host} in
-*-*-linux-*|*-*-k*bsd*-*)	AC_SUBST(CFLAGS, ["-Wall -g -O3 `pkg-config --cflags fuse`"])
-			AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);;
+*-*-linux-*|*-*-k*bsd*-*)	AC_SUBST(CFLAGS, ["$EXTRA_CFLAGS -Wall -g -O3 `pkg-config --cflags fuse`"])
+			AC_SUBST(LIBS, ["$LIBS $EXTRA_CFLAGS `pkg-config --cflags --libs fuse` -lz"]);;
 *-*-bsd-*)		AC_SUBST(CFLAGS, ["-Wall -g -O3 `pkg-config --cflags fuse`"])
 			AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);;
 *-*-darwin*)	AC_SUBST(CFLAGS, ["-Wall -g -O3 `pkg-config --cflags fuse`"])
-- 
2.36.1

From 8f52af0fa9e957c8eff1797aaf57d8bb9233af47 Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian 
Date: Mon, 11 Jul 2022 23:15:45 +
Subject: [PATCH 3/3] debian/rules: Set EXTRA_CFLAGS in dh_auto_configure
 override.

This allows passing the default compiler flags, such as
-ffile-prefix-map which is used to avoid embedding the build path.
---
 debian/rules | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/debian/rules b/debian/rules
index 955dd78..608d0b6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -11,3 +11,6 @@
 
 %:
 	dh $@
+
+override_dh_auto_configure:
+	EXTRA_CFLAGS="$(CFLAGS)" dh_auto_configure
-- 
2.36.1



signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: rdiff-backup-fs
Source-Version: 1.0.0-6
Done: Vagrant Cascadian 

We believe that the bug you reported is fixed in the latest version of
rdiff-backup-fs, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
at

Processing of rdiff-backup-fs_1.0.0-6_source.changes

2022-07-11 Thread Debian FTP Masters
rdiff-backup-fs_1.0.0-6_source.changes uploaded successfully to localhost
along with the files:
  rdiff-backup-fs_1.0.0-6.dsc
  rdiff-backup-fs_1.0.0-6.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



rdiff-backup-fs_1.0.0-6_source.changes ACCEPTED into unstable

2022-07-11 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 Jul 2022 17:05:20 -0700
Source: rdiff-backup-fs
Architecture: source
Version: 1.0.0-6
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Vagrant Cascadian 
Closes: 1014789
Changes:
 rdiff-backup-fs (1.0.0-6) unstable; urgency=medium
 .
   * QA upload.
   * Update to debhelper compat 13.
   * debian/patches: configure.ac: Support passing EXTRA_CFLAGS when
 setting LIBS and CFLAGS variables.
   * debian/rules: Set EXTRA_CFLAGS in dh_auto_configure override.
 (Closes: #1014789)
   * debian/copyright: Update Format URL.
   * debian/control: Set Rules-Requires-Root to "no".
   * debian/control: Set priority to "optional".
Checksums-Sha1:
 3245d345c089e0b830e1a608ce9bb5355f9428d8 1387 rdiff-backup-fs_1.0.0-6.dsc
 1c5c0e77c037b21144c647d4fd8bb12ae953f511 4692 
rdiff-backup-fs_1.0.0-6.debian.tar.xz
Checksums-Sha256:
 68346fbe7011b95bda251b7f98d455b7af4c39f403d4fc3efee7c24c200dedf6 1387 
rdiff-backup-fs_1.0.0-6.dsc
 571c644221c39b7a6de5eec7511281d7f8b3862902b0d949acbdea8ca75598fc 4692 
rdiff-backup-fs_1.0.0-6.debian.tar.xz
Files:
 c60aa4c742bfa48f8e37c0828b818c7d 1387 utils optional 
rdiff-backup-fs_1.0.0-6.dsc
 3b139683baa75694e5d46c7b7a5745a7 4692 utils optional 
rdiff-backup-fs_1.0.0-6.debian.tar.xz

-BEGIN PGP SIGNATURE-

iJYEARYKAD4WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCYsy87yAcdmFncmFudEBy
ZXByb2R1Y2libGUtYnVpbGRzLm9yZwAKCRDcUY/If5cWqoW4AQC5KH7OFNu7ld6b
lS1lurEVrqvzlKOSfeZd54ruqCwJTQD/b/M0umyAcpACmj3/jwyaGV2bfI3vMni4
FBt6b8mMgAE=
=xtFU
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#914739: marked as done (rdiff-backup-fs FTCBFS: uses the wrong pkg-config)

2022-07-11 Thread Debian Bug Tracking System
Your message dated Tue, 12 Jul 2022 00:48:53 +
with message-id 
and subject line Bug#914739: fixed in rdiff-backup-fs 1.0.0-7
has caused the Debian Bug report #914739,
regarding rdiff-backup-fs FTCBFS: uses the wrong pkg-config
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
914739: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=914739
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: rdiff-backup-fs
Version: 1.0.0-5
Tags: patch upstream
User: helm...@debian.org
Usertags: rebootstrap

rdiff-backup-fs fails to cross build from source, because configure.ac
hard codes the build architecture pkg-config. The attached patch makes
it use PKG_CHECK_MODULES, which automatically picks up the right
pkg-config, and makes rdiff-backup-fs cross build successfully. Please
consider applying it.

Helmut
--- rdiff-backup-fs-1.0.0.orig/configure.ac
+++ rdiff-backup-fs-1.0.0/configure.ac
@@ -15,7 +15,7 @@
 dnl checks for libraries
 
 AC_CHECK_LIB([z], [gzgets],,[AC_MSG_ERROR(No zlib library!)])
-AC_CHECK_LIB(fuse, fuse_main, FUSE_LIBS="-lfuse", AC_MSG_ERROR(No fuse library!))
+PKG_CHECK_MODULES([FUSE],[fuse])
 
 dnl checks for header files
 
@@ -46,12 +46,12 @@
 dnl checking type of system to provide proper compile and linking flags
 
 case ${host} in
-*-*-linux-*|*-*-k*bsd*-*)	AC_SUBST(CFLAGS, ["-Wall -g -O3 `pkg-config --cflags fuse`"])
-			AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);;
-*-*-bsd-*)		AC_SUBST(CFLAGS, ["-Wall -g -O3 `pkg-config --cflags fuse`"])
-			AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);;
-*-*-darwin*)	AC_SUBST(CFLAGS, ["-Wall -g -O3 `pkg-config --cflags fuse`"])
-			AC_SUBST(LIBS, ["$LIBS `pkg-config --cflags --libs fuse` -lz"]);;
+*-*-linux-*|*-*-k*bsd*-*)	AC_SUBST(CFLAGS, ["-Wall -g -O3 $FUSE_CFLAGS"])
+			AC_SUBST(LIBS, ["$LIBS $FUSE_CFLAGS $FUSE_LIBS -lz"]);;
+*-*-bsd-*)		AC_SUBST(CFLAGS, ["-Wall -g -O3 $FUSE_CFLAGS"])
+			AC_SUBST(LIBS, ["$LIBS $FUSE_CFLAGS $FUSE_LIBS -lz"]);;
+*-*-darwin*)	AC_SUBST(CFLAGS, ["-Wall -g -O3 $FUSE_CFLAGS"])
+			AC_SUBST(LIBS, ["$LIBS $FUSE_CFLAGS $FUSE_LIBS -lz"]);;
 *)			AC_MSG_WARN(No automatic flags for this host system; set compile/linking flags manually);;
 esac
 
--- End Message ---
--- Begin Message ---
Source: rdiff-backup-fs
Source-Version: 1.0.0-7
Done: Vagrant Cascadian 

We believe that the bug you reported is fixed in the latest version of
rdiff-backup-fs, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 914...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Vagrant Cascadian  (supplier of updated rdiff-backup-fs 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 Jul 2022 17:31:23 -0700
Source: rdiff-backup-fs
Architecture: source
Version: 1.0.0-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Vagrant Cascadian 
Closes: 914739
Changes:
 rdiff-backup-fs (1.0.0-7) unstable; urgency=medium
 .
   * QA upload.
 .
   [ Helmut Grohne ]
   * Fix: FTCBFS: uses the wrong pkg-config (Closes: #914739)
Checksums-Sha1:
 6d4b2f1fd339627d1059d55cffda8dfbd51b02a8 1370 rdiff-backup-fs_1.0.0-7.dsc
 8988b643ab6adbcbe91164b5398557dd7b804734 5036 
rdiff-backup-fs_1.0.0-7.debian.tar.xz
Checksums-Sha256:
 9ffd82674a109b05984704dc5b0420c5b80817c7bd2494612a56b51802cf6b18 1370 
rdiff-backup-fs_1.0.0-7.dsc
 aa075fbb2493c68867461ecfe8b263152c7019295c44ae21c7964bb2189a 5036 
rdiff-backup-fs_1.0.0-7.debian.tar.xz
Files:
 ba1a855dd78d3cd2e04811c50ff205b0 1370 utils optional 
rdiff-backup-fs_1.0.0-7.dsc
 488d9b93cc9b27e89882ad31cedd70e0 5036 utils optional 
rdiff-backup-fs_1.0.0-7.debian.tar.xz

-BEGIN PGP SIGNATURE-

iIkEARYKADEWIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCYszCIBMcdmFncmFudEBk
ZWJpYW4ub3JnAAoJENxRj8h/lxaqIugA+QE87K60Q9Ip9YBydP5S5vtbtM8p+7m6
YHJAbx97aXA7AQCvLvFB6pBN0+HrSrFvrOTmQRlmFUcsVs5g0QWjb5EdDA==
=NZxv
-END PGP SIGNATURE End Message ---


Processing of rdiff-backup-fs_1.0.0-7_source.changes

2022-07-11 Thread Debian FTP Masters
rdiff-backup-fs_1.0.0-7_source.changes uploaded successfully to localhost
along with the files:
  rdiff-backup-fs_1.0.0-7.dsc
  rdiff-backup-fs_1.0.0-7.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



rdiff-backup-fs_1.0.0-7_source.changes ACCEPTED into unstable

2022-07-11 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 Jul 2022 17:31:23 -0700
Source: rdiff-backup-fs
Architecture: source
Version: 1.0.0-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Vagrant Cascadian 
Closes: 914739
Changes:
 rdiff-backup-fs (1.0.0-7) unstable; urgency=medium
 .
   * QA upload.
 .
   [ Helmut Grohne ]
   * Fix: FTCBFS: uses the wrong pkg-config (Closes: #914739)
Checksums-Sha1:
 6d4b2f1fd339627d1059d55cffda8dfbd51b02a8 1370 rdiff-backup-fs_1.0.0-7.dsc
 8988b643ab6adbcbe91164b5398557dd7b804734 5036 
rdiff-backup-fs_1.0.0-7.debian.tar.xz
Checksums-Sha256:
 9ffd82674a109b05984704dc5b0420c5b80817c7bd2494612a56b51802cf6b18 1370 
rdiff-backup-fs_1.0.0-7.dsc
 aa075fbb2493c68867461ecfe8b263152c7019295c44ae21c7964bb2189a 5036 
rdiff-backup-fs_1.0.0-7.debian.tar.xz
Files:
 ba1a855dd78d3cd2e04811c50ff205b0 1370 utils optional 
rdiff-backup-fs_1.0.0-7.dsc
 488d9b93cc9b27e89882ad31cedd70e0 5036 utils optional 
rdiff-backup-fs_1.0.0-7.debian.tar.xz

-BEGIN PGP SIGNATURE-

iIkEARYKADEWIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCYszCIBMcdmFncmFudEBk
ZWJpYW4ub3JnAAoJENxRj8h/lxaqIugA+QE87K60Q9Ip9YBydP5S5vtbtM8p+7m6
YHJAbx97aXA7AQCvLvFB6pBN0+HrSrFvrOTmQRlmFUcsVs5g0QWjb5EdDA==
=NZxv
-END PGP SIGNATURE-


Thank you for your contribution to Debian.