Your message dated Mon, 13 Jan 2020 17:04:13 +0000
with message-id <e1ir38p-000j7y...@fasolo.debian.org>
and subject line Bug#925629: fixed in aghermann 1.1.2-3
has caused the Debian Bug report #925629,
regarding aghermann: ftbfs with 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 ow...@bugs.debian.org
immediately.)
--
925629: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925629
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:aghermann
Version: 1.1.2-2
Severity: normal
Tags: sid bullseye
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-9
Please keep this issue open in the bug tracker for the package it
was filed for. If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.
The package fails to build in a test rebuild on at least amd64 with
gcc-9/g++-9, but succeeds to build with gcc-8/g++-8. The
severity of this report will be raised before the bullseye release,
so nothing has to be done for the buster release.
The full build log can be found at:
http://people.debian.org/~doko/logs/gcc9-20190321/aghermann_1.1.2-2_unstable_gcc9.log
The last lines of the build log are at the end of this report.
To build with GCC 9, either set CC=gcc-9 CXX=g++-9 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.
apt-get -t=experimental install g++
Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-9/porting_to.html
GCC 9 also passes the linker option --as-needed by default; typical
build issues are passing libraries before object files to the linker,
or underlinking of convenience libraries built from the same source.
[...]
from rk1968/rk1968-profiles.cc:17:
../../src/common/alg.hh:132:44: warning: 'pure' attribute on function returning
'void' [-Wattributes]
132 | ensure_within( T& v, const T& l, const T& h)
| ^
../../src/common/alg.hh: In function 'std::valarray<double>
agh::alg::to_vad(const std::valarray<float>&)':
../../src/common/alg.hh:169:20: warning: moving a local object in a return
statement prevents copy elision [-Wpessimizing-move]
169 | return move(ret);
| ~~~~^~~~~
../../src/common/alg.hh:169:20: note: remove 'std::move' call
In file included from ../../src/libmetrics/all.hh:16,
from ../../src/aghermann/expdesign/recording.hh:19,
from ../../src/aghermann/expdesign/profile.hh:16,
from ../../src/aghermann/model/achermann.hh:24,
from ../../src/aghermann/expdesign/expdesign.hh:27,
from rk1968/rk1968-profiles.cc:17:
../../src/libmetrics/psd.hh: In member function 'std::valarray<float>
metrics::psd::CProfile::course(double, double) const':
../../src/libmetrics/psd.hh:152:36: warning: moving a local object in a return
statement prevents copy elision [-Wpessimizing-move]
152 | return move(acc);
| ~~~~^~~~~
../../src/libmetrics/psd.hh:152:36: note: remove 'std::move' call
In file included from ../../src/libmetrics/all.hh:16,
from ../../src/aghermann/expdesign/recording.hh:19,
from rk1968/rk1968.cc:29:
../../src/libmetrics/psd.hh: In member function 'std::valarray<float>
metrics::psd::CProfile::course(double, double) const':
../../src/libmetrics/psd.hh:152:36: warning: moving a local object in a return
statement prevents copy elision [-Wpessimizing-move]
152 | return move(acc);
| ~~~~^~~~~
../../src/libmetrics/psd.hh:152:36: note: remove 'std::move' call
In file included from ../../src/libsigproc/sigproc.hh:28,
from rk1968/rk1968.hh:23,
from rk1968/rk1968-profiles.cc:19:
../../src/libsigproc/exstrom.hh: In function 'std::valarray<int>
exstrom::ccof_bwlp(unsigned int)':
../../src/libsigproc/exstrom.hh:326:20: warning: moving a local object in a
return statement prevents copy elision [-Wpessimizing-move]
326 | return move(ccof);
| ~~~~^~~~~~
../../src/libsigproc/exstrom.hh:326:20: note: remove 'std::move' call
../../src/libsigproc/exstrom.hh: In function 'std::valarray<int>
exstrom::ccof_bwhp(unsigned int)':
../../src/libsigproc/exstrom.hh:345:20: warning: moving a local object in a
return statement prevents copy elision [-Wpessimizing-move]
345 | return move(ccof);
| ~~~~^~~~~~
../../src/libsigproc/exstrom.hh:345:20: note: remove 'std::move' call
../../src/libsigproc/exstrom.hh: In function 'std::valarray<int>
exstrom::ccof_bwbp(unsigned int)':
../../src/libsigproc/exstrom.hh:369:20: warning: moving a local object in a
return statement prevents copy elision [-Wpessimizing-move]
369 | return move(ccof);
| ~~~~^~~~~~
../../src/libsigproc/exstrom.hh:369:20: note: remove 'std::move' call
rk1968/rk1968.cc: In lambda function:
rk1968/rk1968.cc:237:103: error: expected '{' before '->' token
237 | auto make_error_return = [&L] ( const char* fmt, ...)
__attribute__ ((format (printf, 2, 3))) -> int
|
^~
rk1968/rk1968.cc: In function 'int host_get_data(lua_State*)':
rk1968/rk1968.cc:237:103: error: base operand of '->' has non-pointer type
'host_get_data(lua_State*)::<lambda(const char*, ...)>'
rk1968/rk1968.cc:237:106: error: expected unqualified-id before 'int'
237 | auto make_error_return = [&L] ( const char* fmt, ...)
__attribute__ ((format (printf, 2, 3))) -> int
|
^~~
g++ -DHAVE_CONFIG_H -I. -I../.. -Wdate-time -D_FORTIFY_SOURCE=2 -Wall
-Werror=format-security -Wdeprecated-declarations -std=c++0x -fno-rtti -pthread
-I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0
-I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include
-I/usr/include/gtk-3.0 -I/usr/include/cairo -I/usr/include/libdrm
-I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0
-I/usr/include/fribidi -I/usr/include/atk-1.0 -I/usr/include/cairo
-I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16
-I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0
-I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid
-I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -pthread
-I/usr/include/vte-2.91 -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0
-I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0
-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/gtk-3.0
-I/usr/include/cairo
-I/usr/include/libdrm -I/usr/include/pango-1.0 -I/usr/include/harfbuzz
-I/usr/include/pango-1.0 -I/usr/include/fribidi -I/usr/include/atk-1.0
-I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2
-I/usr/include/libpng16 -I/usr/include/gdk-pixbuf-2.0
-I/usr/include/gio-unix-2.0 -I/usr/include/libmount -I/usr/include/blkid
-I/usr/include/uuid -I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/p11-kit-1
-I/usr/include/cairo -I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1
-I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -fopenmp
-I/usr/include/lua5.2 -I../../src -DPACKAGE_DATADIR=\"/usr/share\"
-DBUILT_BY=\"@user@\" -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -c -o
ui/sm/sm-construct.o ui/sm/sm-construct.cc
make[5]: *** [Makefile:995: rk1968/rk1968.o] Error 1
make[5]: *** Waiting for unfinished jobs....
make[5]: Leaving directory '/<<PKGBUILDDIR>>/src/aghermann'
make[4]: *** [Makefile:474: all-recursive] Error 1
make[4]: Leaving directory '/<<PKGBUILDDIR>>/src'
make[3]: *** [Makefile:428: all] Error 2
make[3]: Leaving directory '/<<PKGBUILDDIR>>/src'
make[2]: *** [Makefile:564: all-recursive] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
make[1]: *** [Makefile:443: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: make -j4 returned exit code 2
make: *** [debian/rules:10: build-arch] Error 2
dpkg-buildpackage: error: debian/rules build-arch subprocess returned exit
status 2
--- End Message ---
--- Begin Message ---
Source: aghermann
Source-Version: 1.1.2-3
We believe that the bug you reported is fixed in the latest version of
aghermann, 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 925...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Andreas Tille <ti...@debian.org> (supplier of updated aghermann 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: SHA256
Format: 1.8
Date: Mon, 13 Jan 2020 17:36:40 +0100
Source: aghermann
Architecture: source
Version: 1.1.2-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Andreas Tille <ti...@debian.org>
Closes: 925629
Changes:
aghermann (1.1.2-3) unstable; urgency=medium
.
* Team upload.
* debhelper-compat 12
* Standards-Version: 4.4.1
* Fix day-of-week for changelog entries 0.8.1-1, 0.8-1, 0.7.0.1-1,
0.7.0-1, 0.5.0-1, 0.4.3.5-1, 0.4.3.4-1, 0.4.3.3-1, 0.4.0-1, 0.3.4-1,
0.3.3-1, 0.3.0-1, 0.2.96-1, 0.2.95-1, 0.2.94-1, 0.2.93-1, 0.2.90-1,
0.2.9-1, 0.2.5-1.
* Turn format into a C++11 attribute
Closes: #925629
Checksums-Sha1:
38a454c0f423c26e6093d19affab729a84c0d02c 2147 aghermann_1.1.2-3.dsc
e342c0d6b5bc1e55e0ca1fa05076e61a30a01fbc 4772 aghermann_1.1.2-3.debian.tar.xz
315926bb2843d4a061e366ef0b4e01681675a397 14834
aghermann_1.1.2-3_amd64.buildinfo
Checksums-Sha256:
daf0598d9c8b01e2d165fa165a5a71067a7247f44ddbbec29a830632ac8c62ef 2147
aghermann_1.1.2-3.dsc
fc829a5087a972f49b090c1965678daea94daeedc0eefa99c6f371be858ad93b 4772
aghermann_1.1.2-3.debian.tar.xz
a5198999e242e41dfb083f967cf7b83285e4c630d9d9391d0a49d7e7482d1605 14834
aghermann_1.1.2-3_amd64.buildinfo
Files:
12ac8439c0309efe472d33da04ba5db5 2147 science optional aghermann_1.1.2-3.dsc
4f0c767ac63c730fd157218f4a3cbd85 4772 science optional
aghermann_1.1.2-3.debian.tar.xz
b33318238c76d09d0a8c511d51706766 14834 science optional
aghermann_1.1.2-3_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJFBAEBCAAvFiEE8fAHMgoDVUHwpmPKV4oElNHGRtEFAl4cn1URHHRpbGxlQGRl
Ymlhbi5vcmcACgkQV4oElNHGRtF4LA/8C3eW2xeWGbIH00Aw733XTR57LFu5b2iu
8n26hUypev5HAnnprCwDnEa0hZIjM23u/yaRozSvcCCmTkVGWkmnw/KpST7Zsoxy
fSOvgXWQbsYMyMxUFL9FwrO8K65ENDCo/AOvUc1b9PHFEdou/r41GdhMBH+2+QhQ
BK6S0S14iiq4AclNohyTO/tsER63aVqnPEbqJwibTLEsUblvJmcb9652mzegtkDw
pf3B8ylq0AJksbTL/JQlapbLwMSDtRSnzSM0KuTPFZb0Ac5Ms5EIAbS9wLPxRekZ
St6EhTP81f9HQfkbleGYxvkcv3DzPt7vfbroBbA7SWNiGUXWyPcyl0e8eW7OA3vP
HAgoIN0kT0OUzIcqn6D73hykX/jgiwm42LSohxVf9OP5u96M3qJ2L9h4CxEpiFk/
PDkIBgt4ZOwgNCFa19V3qOJiOYWjayCfT8zUMs4tt7hMxrXAvXjEpjBV7TPd81n0
iDj4Je5wVX4BDkRhR2x+RXsrRdZhU7SN+3dRTTgB/H9Ezjzvos6y24+HN1K8yJw1
T4REabQIlOHz9hx/S0RisBe9hlnIhijStRb6DgaCzXuq5bj7f8Jffjto0cLyN4JK
ENcwiGKb7tiOP5rUw2mSkMKgUkmjq0TCizPlEW7F9q0gD+hMQfeFeTwKXTBqaoyN
lZlJM/xMjm4=
=bEvF
-----END PGP SIGNATURE-----
--- End Message ---