Processing of see_0.72-7_source.changes
see_0.72-7_source.changes uploaded successfully to localhost along with the files: see_0.72-7.dsc see_0.72-7.debian.tar.xz see_0.72-7_amd64.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
see_0.72-7_source.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Wed, 29 Jul 2020 11:53:55 +0100 Source: see Architecture: source Version: 0.72-7 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Sudip Mukherjee Closes: 957785 Changes: see (0.72-7) unstable; urgency=medium . * QA upload. * Fix ftbfs with GCC-10. (Closes: #957785) * Update Standards-Version to 4.5.0 - Update priority to optional. * Orphan the package. (See: #920095) * Move Vcs to salsa. Checksums-Sha1: eb54eef59b581e93116b46d41e7febe4a172e718 1806 see_0.72-7.dsc 13041d8dcf01ad41da8b4b6c376f3a8e1927596c 6192 see_0.72-7.debian.tar.xz 1463737c8a5a3077929062babc54ebe094adc39e 10692 see_0.72-7_amd64.buildinfo Checksums-Sha256: 2fc6a3c91724296c44080575a62e8ad4b6df9ef3fa0a8b11a1a3fa11a3ccd531 1806 see_0.72-7.dsc 5fda21eaf966e8b9c67ae9c8b1c4f0b865a2b241496865b7988a8067302e6418 6192 see_0.72-7.debian.tar.xz e4fab6d31688ad065c2d7bc91f5d1b4fc3b9044071c97b1f2e077ca9e2a1a720 10692 see_0.72-7_amd64.buildinfo Files: 5f7f56989b5f2b01f0c7dd37d8836141 1806 text optional see_0.72-7.dsc e61d587e0e4e98cef5854432da20f6ec 6192 text optional see_0.72-7.debian.tar.xz 3bfd15f536b60b1c7c3dbd14449217af 10692 text optional see_0.72-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCgAdFiEEuDQJkCg9jZvBlJrHR5mjUUbRKzUFAl8hWVIACgkQR5mjUUbR KzUtGQ//QFHkzMih/SxPWAO7Rb8r9UyMLqQRdSOQ53/zoz8UcXF71eKj0v1GQNNa n7Qv6JOzdmBvyqH9vHZglDKBLoogcUJHtOWO7dMHln6GqNKx5Obd3bAPZicfCKl/ Uz+4uV4ebVFe4m9+fmfFsCgD3IuJ8eL56FofjUaVrI8Ju2dq60gSfmQwTIlsGLy9 DWQ1+7EbAOGC/DXk3Yy9HnIRR232Uo2NHbU5fgIujuT5pO0uoWuHWxc/I+a8TSCe YoylxO7kBFN7vhYPwPFW3IOOfZ7ibehkqdxHCnLiYaaudkBSDmWJ8OO8sRzqMP2y P35dzgyNkgebcUDN4EaoN7jDlDPdKdyl82fQGcgcn/QZrBnb5mk8Ck/XEnGFESbK 1Qn+bXtLQdN3ttJogYUpFYz3t/KHH0z/DxaYsgln+PfR+MsrQMNBSzWWDWnl78BR xlDwAw0dHOnga6088qfv9i6IdtvkfGUUK9lk7G/5j5kHmQ65NNNw/1ikPZ3rCK7b OXk75tUr0IgASozY6Pp5Gbo/bzZgmhqfuWqVFt6J9KNGarB+ErenrQvtJH7Yb33w QcQsYjQnoHdN4BdV3neh56574Abfmfwb01Ss6AQm0sMRhcFkV8qa7Tkwh3+f+s6V uz8z9gnpDui+koGR2W6hxXAUKypm6zhJLYLeQaqj3Sc5cxP+FiQ= =M4F6 -END PGP SIGNATURE- Thank you for your contribution to Debian.
Bug#950980: marked as done (vfu FTCBFS: uses build architecture build tools)
Your message dated Wed, 29 Jul 2020 15:50:40 + with message-id and subject line Bug#950980: fixed in vfu 4.18-2 has caused the Debian Bug report #950980, regarding vfu FTCBFS: uses build architecture build tools 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.) -- 950980: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=950980 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Source: vfu Version: 4.18-1 Tags: patch User: debian-cr...@lists.debian.org Usertags: ftcbfs vfu fails to cross build from source, because it uses build architecture build tools. It starts with using the autoconf build system and then skipping configure. That results in debhelper not passing cross tools to make. Using the makefile build system is better here as it also skips makes dh_auto_configure a noop. Then the upstream build system uses non-standard variables for g++ in lots of places. I think it is best to canonicalize that and hope that this change is upstreamable. Also the build strips by default. Doing so also breaks generation of -dbgsym packages as well as DEB_BUILD_OPTIONS=nostrip. The attached patch fixes all of that. Please consider applying it. Helmut diff --minimal -Nru vfu-4.18/debian/changelog vfu-4.18/debian/changelog --- vfu-4.18/debian/changelog 2020-01-02 01:49:06.0 +0100 +++ vfu-4.18/debian/changelog 2020-02-09 07:01:09.0 +0100 @@ -1,3 +1,12 @@ +vfu (4.18-2) UNRELEASED; urgency=medium + + * Fix FTCBFS: (Closes: #-1) ++ Use the makefile debhelper build system to pass cross tools. ++ Defer stripping to dh_strip. ++ cross.patch: make build tools substitutable via standard means. + + -- Helmut Grohne Sun, 09 Feb 2020 07:01:09 +0100 + vfu (4.18-1) unstable; urgency=medium * QA upload. diff --minimal -Nru vfu-4.18/debian/patches/cross.patch vfu-4.18/debian/patches/cross.patch --- vfu-4.18/debian/patches/cross.patch 1970-01-01 01:00:00.0 +0100 +++ vfu-4.18/debian/patches/cross.patch 2020-02-09 07:01:09.0 +0100 @@ -0,0 +1,389 @@ +--- vfu-4.18.orig/vslib/makefile vfu-4.18/vslib/makefile +@@ -25,8 +25,8 @@ + + + AR = ar rv +-CC = g++ +-LD = g++ ++CXX = g++ ++LD = $(CXX) + MKDIR = mkdir -p + RANLIB = ranlib + RMDIR = rm -rf +@@ -36,8 +36,8 @@ + + ### TARGET 1: libvslib.a ### + +-CC_1 = g++ +-LD_1 = g++ ++CXX_1 = $(CXX) ++LD_1 = $(CXX_1) + AR_1 = ar rv + RANLIB_1 = ranlib + CCFLAGS_1 = -I. -O2 $(CCDEF) +@@ -100,33 +100,33 @@ + ### TARGET OBJECTS FOR TARGET 1: libvslib.a + + .OBJ.libvslib.a/clusters.o: clusters.cpp clusters.cpp clusters.h +- $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c clusters.cpp -o .OBJ.libvslib.a/clusters.o ++ $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c clusters.cpp -o .OBJ.libvslib.a/clusters.o + .OBJ.libvslib.a/dlog.o: dlog.cpp dlog.cpp dlog.h +- $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c dlog.cpp -o .OBJ.libvslib.a/dlog.o ++ $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c dlog.cpp -o .OBJ.libvslib.a/dlog.o + .OBJ.libvslib.a/eval.o: eval.cpp eval.cpp eval.h +- $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c eval.cpp -o .OBJ.libvslib.a/eval.o ++ $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c eval.cpp -o .OBJ.libvslib.a/eval.o + .OBJ.libvslib.a/fnmatch2.o: fnmatch2.cpp fnmatch2.cpp fnmatch2.h +- $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c fnmatch2.cpp -o .OBJ.libvslib.a/fnmatch2.o ++ $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c fnmatch2.cpp -o .OBJ.libvslib.a/fnmatch2.o + .OBJ.libvslib.a/getopt2.o: getopt2.cpp getopt2.cpp getopt2.h +- $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c getopt2.cpp -o .OBJ.libvslib.a/getopt2.o ++ $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c getopt2.cpp -o .OBJ.libvslib.a/getopt2.o + .OBJ.libvslib.a/scroll.o: scroll.cpp scroll.cpp scroll.h +- $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c scroll.cpp -o .OBJ.libvslib.a/scroll.o ++ $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c scroll.cpp -o .OBJ.libvslib.a/scroll.o + .OBJ.libvslib.a/vslib.o: vslib.cpp vslib.cpp +- $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c vslib.cpp-o .OBJ.libvslib.a/vslib.o ++ $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c vslib.cpp-o .OBJ.libvslib.a/vslib.o + .OBJ.libvslib.a/vstring.o: vstring.cpp vstring.cpp vstring.h +- $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c vstring.cpp -o .OBJ.libvslib.a/vstring.o ++ $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c vstring.cpp -o .OBJ.libvslib.a
Bug#776951: (no subject)
Thanks, this patch has been applied to the new upstream version: https://git.kernel.org/pub/scm/linux/kernel/git/deller/rbootd.git/
Processing of lightsquid_1.8-7_sourceonly.changes
lightsquid_1.8-7_sourceonly.changes uploaded successfully to localhost along with the files: lightsquid_1.8-7.dsc lightsquid_1.8-7.debian.tar.xz lightsquid_1.8-7_sourceonly.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
lightsquid_1.8-7_sourceonly.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Wed, 29 Jul 2020 22:55:58 CEST Source: lightsquid Binary: Architecture: source Version: 1.8-7 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: gregor herrmann Description: Changes: lightsquid (1.8-7) unstable; urgency=medium . * QA upload. * Replace libgd-gd2-{,noxpm-}perl with libgd-perl in debian/control. Checksums-Sha256: d9ee51afe87ff88d010113fff36d8060e528ab55252e45b222671cfc35b155a6 1958 lightsquid_1.8-7.dsc de5a96dd1c7f010d28d6a626b38762e5e76fa385baf5c29e1b4253d4c27a4920 3684 lightsquid_1.8-7.debian.tar.xz efac8bf236db025a0aa18577ca987207c757d0669dadc2147bb514ae07c25bcc 5444 lightsquid_1.8-7_sourceonly.buildinfo Checksums-Sha1: fa38c4257af11e3afed491305b0f519e4f6bb6d9 1958 lightsquid_1.8-7.dsc d06034389c21744b61df5fc91c84cac22e97d120 3684 lightsquid_1.8-7.debian.tar.xz aebfdd0f751f34ac2013d5be17b5e6607629a494 5444 lightsquid_1.8-7_sourceonly.buildinfo Files: dc126e53973f332d6fff57931a0762ca 1958 admin optional lightsquid_1.8-7.dsc 6c580fbeedabaab96a7f184d4dea67da 3684 admin optional lightsquid_1.8-7.debian.tar.xz 2ebac1119dadaa42cac233e24102df9a 5444 - - lightsquid_1.8-7_sourceonly.buildinfo -BEGIN PGP SIGNATURE- iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAl8h4l9fFIAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ qgZCAw//dODUrVyyPorpEUoeAJ1L+y0ee/5PtvnoxXRco2p3DyjMppiza3NeQqHR VUIFkdMQrEGKlJ4zQdxYt+Pmbx4ISPjFt4jLqkTXw9cI1pvywXhJWIQN7lpEofDL GcxWHy4icYkAvkL6+K2E4rUUTCqbDGWg7YAdnDDMWU1OYaYaWbbl0q4SyOyG5kCz FcehZZ61VtEfJAIf0LdCzfMM5WS4hCazs3Bfq0UeQ1N9VWfQ7dCYrZcz3F+yG+rm 2HaRJYH9i1pohEw2EFlDlGF2GEyv5YW9eZE4GYfCCGJ+Ms4s4eLNkl4Nx46yiWFJ G3TXoLYmoPs5tLLHuOwYC+sKKI39XmhZTTIWGe7xhS6nCwzNFLFGjCVd65UaL7aq GKCq+zm4IqqYTfZ1gV4ZpWllzVjwiCMfzzYjG+Hr/R2kGIsmjSCR1uKY/1A0jQnS 9goB2hgY8p/S64zKLlUq7jQjQodm5U6h3NWEYkB4mR6qZe1OyN8/5vWIX1uriKEt XdeT707z49CMOA04Cibzfpfzah69qZ6u0xeYSciOy7CqX+Z6agzrqeSpubGD81PG 92zXK6LUoOJxlnthrMik6ZY51xBUUNpFixoHOmYZGyt7nBL6o0P5rq8AHHcwI02Y 2QNsqoAEslj/IyWaRS5Hc87v+PxE7pCuFGQPFaSSl5RIDKCm8XQ= =zHRD -END PGP SIGNATURE- Thank you for your contribution to Debian.