Your message dated Wed, 11 Sep 2019 04:03:49 +0000
with message-id <[email protected]>
and subject line Bug#939821: fixed in capnproto 0.7.0-5
has caused the Debian Bug report #939821,
regarding capnproto: test failure due to new gcc-9
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 [email protected]
immediately.)
--
939821: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=939821
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: capnproto
Version: 0.7.0-4
Severity: serious
Hello, your new test seems to be causing a link failure due to asneeded gcc
default flag, because of wrong order in the link command line.
The attached patch fixes the issue, by moving the pkg-config libs call after
the cc file.
Theoretically, you can just move the line a little bit above, instead of
splitting in two different pkg-config calls,
but I find this approach a little bit more clear
+capnproto (0.7.0-4.1) unstable; urgency=medium
+
+ * Fix test failure with asneeded gcc-9 default flag,
+ by moving order of link line (Closes: #-1)
+
+ -- Gianfranco Costamagna <[email protected]> Mon, 09 Sep 2019
11:02:04 +0200
+
capnproto (0.7.0-4) unstable; urgency=medium
[ Tom Lee ]
diff -Nru capnproto-0.7.0/debian/tests/build-tests
capnproto-0.7.0/debian/tests/build-tests
--- capnproto-0.7.0/debian/tests/build-tests 2019-09-04 22:12:33.000000000
+0200
+++ capnproto-0.7.0/debian/tests/build-tests 2019-09-09 11:02:04.000000000
+0200
@@ -40,9 +40,10 @@
echo "$EXAMPLE_PROGRAM_1" >"$WORKDIR/pkgconfig-test.cc"
g++ -Wall -Werror \
+ $(pkg-config --cflags kj) \
-o "$WORKDIR/pkgconfig-test" \
- $(pkg-config --cflags --libs kj) \
- "$WORKDIR/pkgconfig-test.cc"
+ "$WORKDIR/pkgconfig-test.cc" \
+ $(pkg-config --libs kj)
if [[ "$?" != 0 ]]; then
fail "compile failed"
@@ -83,8 +84,8 @@
echo "$EXAMPLE_PROGRAM_2" >"$WORKDIR/version-test.cc"
g++ -Wall -Werror \
- -o "$WORKDIR/version-test" \
$(pkg-config --cflags kj) \
+ -o "$WORKDIR/version-test" \
"$WORKDIR/version-test.cc"
if [[ "$?" != 0 ]]; then
diff -Nru capnproto-0.7.0/debian/changelog capnproto-0.7.0/debian/changelog
--- capnproto-0.7.0/debian/changelog 2019-09-04 22:12:33.000000000 +0200
+++ capnproto-0.7.0/debian/changelog 2019-09-09 11:02:04.000000000 +0200
@@ -1,3 +1,10 @@
+capnproto (0.7.0-4ubuntu2) eoan; urgency=medium
+
+ * Fix test failure with asneeded gcc-9 default flag,
+ by moving order of link line
+
+ -- Gianfranco Costamagna <[email protected]> Mon, 09 Sep 2019
11:02:04 +0200
+
capnproto (0.7.0-4) unstable; urgency=medium
[ Tom Lee ]
diff -Nru capnproto-0.7.0/debian/tests/build-tests
capnproto-0.7.0/debian/tests/build-tests
--- capnproto-0.7.0/debian/tests/build-tests 2019-09-04 22:12:33.000000000
+0200
+++ capnproto-0.7.0/debian/tests/build-tests 2019-09-09 11:02:04.000000000
+0200
@@ -40,9 +40,10 @@
echo "$EXAMPLE_PROGRAM_1" >"$WORKDIR/pkgconfig-test.cc"
g++ -Wall -Werror \
+ $(pkg-config --cflags kj) \
-o "$WORKDIR/pkgconfig-test" \
- $(pkg-config --cflags --libs kj) \
- "$WORKDIR/pkgconfig-test.cc"
+ "$WORKDIR/pkgconfig-test.cc" \
+ $(pkg-config --libs kj)
if [[ "$?" != 0 ]]; then
fail "compile failed"
@@ -83,8 +84,8 @@
echo "$EXAMPLE_PROGRAM_2" >"$WORKDIR/version-test.cc"
g++ -Wall -Werror \
- -o "$WORKDIR/version-test" \
$(pkg-config --cflags kj) \
+ -o "$WORKDIR/version-test" \
"$WORKDIR/version-test.cc"
if [[ "$?" != 0 ]]; then
--- End Message ---
--- Begin Message ---
Source: capnproto
Source-Version: 0.7.0-5
We believe that the bug you reported is fixed in the latest version of
capnproto, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
tony mancill <[email protected]> (supplier of updated capnproto 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 [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Tue, 10 Sep 2019 20:29:14 -0700
Source: capnproto
Architecture: source
Version: 0.7.0-5
Distribution: unstable
Urgency: medium
Maintainer: Tom Lee <[email protected]>
Changed-By: tony mancill <[email protected]>
Closes: 939821
Changes:
capnproto (0.7.0-5) unstable; urgency=medium
.
[ Gianfranco Costamagna ]
* Fix autopkgtest failure with asneeded gcc-9 default flag,
by moving order of link line (Closes: #939821)
.
[ tony mancill ]
* Add cmake to debian/tests/control
* Use debhelper 12
* Add patch for typos in source
Checksums-Sha1:
a6598861d3c61691e20f871e9dca7ed3adb45ca0 2192 capnproto_0.7.0-5.dsc
f2bce742f3482de29ec713cd7a283e54ed34c6a5 9344 capnproto_0.7.0-5.debian.tar.xz
b7bfc2f110ddeafdc078e8bc617cfe6acf543479 8322 capnproto_0.7.0-5_amd64.buildinfo
Checksums-Sha256:
b4ee9cf274b6baf76814a62beb5f98a3b9567dec4ff079b62ec4aad8cdaddce0 2192
capnproto_0.7.0-5.dsc
f59d7ef208be47f5a357749aa61ce151290931eb8b399c5d92b776d3eecb3c71 9344
capnproto_0.7.0-5.debian.tar.xz
7b61b2c28254cb929c0ed59e1d4ff971eef6699429eec8c4dbe8d304c20d5886 8322
capnproto_0.7.0-5_amd64.buildinfo
Files:
470a9fd5cad30625f2ea24a1969e63db 2192 devel optional capnproto_0.7.0-5.dsc
75e268c21d6580dda8cd3200e2af0277 9344 devel optional
capnproto_0.7.0-5.debian.tar.xz
c13d4c521ec27a0670c15bcedaedd9f9 8322 devel optional
capnproto_0.7.0-5_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJIBAEBCgAyFiEE5Qr9Va3SequXFjqLIdIFiZdLPpYFAl14bhEUHHRtYW5jaWxs
QGRlYmlhbi5vcmcACgkQIdIFiZdLPpZBdA/9EImhR8XzVr68KK1O5+z+LhA7oCG4
jQwFR2l0MlsOy8sXKrYLiSbnX8M0SmUMXnn0lOhIdZqOmquQwesasxgLjnGFmLP6
8v9YQga9aTwb5szNob0vwBSATqnrf6exS5rEog2Wqs7rdBAyNU05wJuYOYNQq+a2
qek/l4w9YG0Vzzgcmw4XmfYcEmwjT0W7GQu6FcMzeUdESueBs1RxAQmovx7c/ev9
7Uvj5HYNTTTAs0R0/juaevzDswsAtaUhVe4z2jFAKJFjBcBAOgqGGurQHuvfTFVj
q+VlSeZxOzQHSiushJgInKwjfwLUI0N3JxRp+qStxuoC+Ae5gOesXMsJ7VK2w0kq
Q2U4OfdUNBppLQuwDJPJNhG/hw9zRB3Q12Ljj/HH512MFzsElUP2T2aI8b6izS1U
/sBjhGSSkWVasNHwmhUiu4fD3qMCAwRpLBoG8IgCRl/0deJaMfguNDk6lvYcCS5D
1kQuAs11OSJVOinrlw7JJQ0bNX+LnSqhSRUOWommWoTX2pdbU+kvKVq+7+UhvQea
PdJSKujKcw0BLQ41FshtXNXdC35iLGAY0e5tTKu1lwRERKV7XqAKfqdjAXpVXIpp
9Rs2IG90K8C4fbkbLfN/7zohG11K6aaDEwzdoleZ19MbQ0WhM6qoxaDxiyVu8Aq2
CDJhv/zXtwbPhxo=
=Ssts
-----END PGP SIGNATURE-----
--- End Message ---