Your message dated Sun, 20 Sep 2020 14:50:08 +0000
with message-id <e1kk0fi-000alv...@fasolo.debian.org>
and subject line Bug#957602: fixed in nettoe 1.5.1-3
has caused the Debian Bug report #957602,
regarding nettoe: ftbfs with GCC-10
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.)
--
957602: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=957602
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:nettoe
Version: 1.5.1-2
Severity: normal
Tags: sid bullseye
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-10
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-10/g++-10, but succeeds to build with gcc-9/g++-9. 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/gcc10-20200225/nettoe_1.5.1-2_unstable_gcc10.log
The last lines of the build log are at the end of this report.
To build with GCC 10, either set CC=gcc-10 CXX=g++-10 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-10/porting_to.html
[...]
Build: x86_64-pc-linux-gnu
Host: x86_64-pc-linux-gnu
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build
make -j1
make[1]: Entering directory '/<<PKGBUILDDIR>>'
make all-recursive
make[2]: Entering directory '/<<PKGBUILDDIR>>'
Making all in src
make[3]: Entering directory '/<<PKGBUILDDIR>>/src'
gcc -DNETTOE_PORT=7501 -DHAVE_CONFIG_H -I. -I.. -Wdate-time
-D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -MT ai.o -MD -MP -MF
.deps/ai.Tpo -c -o ai.o ai.c
mv -f .deps/ai.Tpo .deps/ai.Po
gcc -DNETTOE_PORT=7501 -DHAVE_CONFIG_H -I. -I.. -Wdate-time
-D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -MT board.o -MD -MP
-MF .deps/board.Tpo -c -o board.o board.c
mv -f .deps/board.Tpo .deps/board.Po
gcc -DNETTOE_PORT=7501 -DHAVE_CONFIG_H -I. -I.. -Wdate-time
-D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -MT nettoe.o -MD -MP
-MF .deps/nettoe.Tpo -c -o nettoe.o nettoe.c
nettoe.c: In function ‘main’:
nettoe.c:120:3: warning: ignoring return value of ‘setegid’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
120 | setegid(getgid());
| ^~~~~~~~~~~~~~~~~
nettoe.c:121:3: warning: ignoring return value of ‘setgid’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
121 | setgid(getgid());
| ^~~~~~~~~~~~~~~~
nettoe.c:122:3: warning: ignoring return value of ‘seteuid’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
122 | seteuid(getuid());
| ^~~~~~~~~~~~~~~~~
nettoe.c:123:3: warning: ignoring return value of ‘setuid’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
123 | setuid(getuid());
| ^~~~~~~~~~~~~~~~
mv -f .deps/nettoe.Tpo .deps/nettoe.Po
gcc -DNETTOE_PORT=7501 -DHAVE_CONFIG_H -I. -I.. -Wdate-time
-D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -MT matrices.o -MD
-MP -MF .deps/matrices.Tpo -c -o matrices.o matrices.c
mv -f .deps/matrices.Tpo .deps/matrices.Po
gcc -DNETTOE_PORT=7501 -DHAVE_CONFIG_H -I. -I.. -Wdate-time
-D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -MT terminal.o -MD
-MP -MF .deps/terminal.Tpo -c -o terminal.o terminal.c
terminal.c: In function ‘nettoe_term_set_color’:
terminal.c:194:33: warning: ‘%d’ directive writing between 1 and 11 bytes into
a region of size between 0 and 9 [-Wformat-overflow=]
194 | sprintf(cmd_str, "%c[%d;%dm", 0x1B, attrib, fg + 30);
| ^~
terminal.c:194:26: note: directive argument in the range [-2147483618,
2147483647]
194 | sprintf(cmd_str, "%c[%d;%dm", 0x1B, attrib, fg + 30);
| ^~~~~~~~~~~
In file included from /usr/include/stdio.h:867,
from terminal.c:26:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note:
‘__builtin___sprintf_chk’ output between 7 and 27 bytes into a destination of
size 13
36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
37 | __bos (__s), __fmt, __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mv -f .deps/terminal.Tpo .deps/terminal.Po
gcc -DNETTOE_PORT=7501 -DHAVE_CONFIG_H -I. -I.. -Wdate-time
-D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -MT misc.o -MD -MP
-MF .deps/misc.Tpo -c -o misc.o misc.c
mv -f .deps/misc.Tpo .deps/misc.Po
gcc -DNETTOE_PORT=7501 -DHAVE_CONFIG_H -I. -I.. -Wdate-time
-D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -MT network.o -MD -MP
-MF .deps/network.Tpo -c -o network.o network.c
mv -f .deps/network.Tpo .deps/network.Po
gcc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-Wformat -Werror=format-security -Wl,-z,relro -o nettoe ai.o board.o nettoe.o
matrices.o terminal.o misc.o network.o -ltinfo
/usr/bin/ld: terminal.o:./src/game.h:48: multiple definition of `NO_COLORS';
nettoe.o:./src/game.h:48: first defined here
/usr/bin/ld: terminal.o:./src/game.h:46: multiple definition of `NO_BEEP';
nettoe.o:./src/game.h:46: first defined here
/usr/bin/ld: terminal.o:./src/game.h:50: multiple definition of `addrfamily';
nettoe.o:./src/game.h:50: first defined here
/usr/bin/ld: misc.o:./src/game.h:50: multiple definition of `addrfamily';
nettoe.o:./src/game.h:50: first defined here
/usr/bin/ld: misc.o:./src/game.h:48: multiple definition of `NO_COLORS';
nettoe.o:./src/game.h:48: first defined here
/usr/bin/ld: misc.o:./src/game.h:46: multiple definition of `NO_BEEP';
nettoe.o:./src/game.h:46: first defined here
collect2: error: ld returned 1 exit status
make[3]: *** [Makefile:371: nettoe] Error 1
make[3]: Leaving directory '/<<PKGBUILDDIR>>/src'
make[2]: *** [Makefile:398: all-recursive] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
make[1]: *** [Makefile:339: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j1 returned exit code 2
make: *** [debian/rules:8: build] Error 25
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: nettoe
Source-Version: 1.5.1-3
Done: Markus Koschany <a...@debian.org>
We believe that the bug you reported is fixed in the latest version of
nettoe, 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 957...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Markus Koschany <a...@debian.org> (supplier of updated nettoe 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: Sun, 20 Sep 2020 15:51:53 +0200
Source: nettoe
Architecture: source
Version: 1.5.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team <pkg-games-de...@lists.alioth.debian.org>
Changed-By: Markus Koschany <a...@debian.org>
Closes: 922561 957602
Changes:
nettoe (1.5.1-3) unstable; urgency=medium
.
* Team upload.
* Switch to debhelper-compat = 13.
* Remove dh-autoreconf and autopoint from B-D.
* Declare compliance with Debian Policy 4.5.0.
* Move nettoe to salsa.debian.org.
* Remove obsolete NEWS file.
* Let dh_auto_configure pass --host to ./configure.
Thanks to Helmut Grohne for the patch. (Closes: #922561)
* Work around FTBFS with GCC 10 by building with -fcommon. (Closes: #957602)
Checksums-Sha1:
a5215a5eff196755027cb9b62988aee65e024a32 2124 nettoe_1.5.1-3.dsc
0fa27ef7863e734e8d0e87b3505c2343ab25bcc6 8740 nettoe_1.5.1-3.debian.tar.xz
42e65dc64490e9611f74b404425c18c855a9d058 5811 nettoe_1.5.1-3_amd64.buildinfo
Checksums-Sha256:
5cfdd5499f109f5a04bb2b19df2f85b041cf9d20a9e1c9d59346b3786e55dfb2 2124
nettoe_1.5.1-3.dsc
132bf56b80c6cf580f392f2fa6ebb77f7980512b7b3b33701f8d7385b2d7a670 8740
nettoe_1.5.1-3.debian.tar.xz
157cc083916e99b0d4007e49020ffb6817cf8c81605063f6f6e2e8a29e7b922e 5811
nettoe_1.5.1-3_amd64.buildinfo
Files:
6d51f3f3b1d9559f6514ae4dbcd1231c 2124 games optional nettoe_1.5.1-3.dsc
8eebb3bd330ccf7175b1392c42832b9a 8740 games optional
nettoe_1.5.1-3.debian.tar.xz
d1be69578dd959868fb687ab03fb16b7 5811 games optional
nettoe_1.5.1-3_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQKjBAEBCgCNFiEErPPQiO8y7e9qGoNf2a0UuVE7UeQFAl9nYDtfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEFD
RjNEMDg4RUYzMkVERUY2QTFBODM1RkQ5QUQxNEI5NTEzQjUxRTQPHGFwb0BkZWJp
YW4ub3JnAAoJENmtFLlRO1Hk54kQAIAVc54PvERqfRgd703sY4L/vi45n0M9Lk27
96fJju6FYAx0bg/wIIQScLbpPBrendYehaBFNrnYu8OLfboAvOYeQl/VcbStQTi0
eTkfO7xqwzO08GLKmao3/6zLYYZf2DgJajbsHb7Dype1zyQXhbe991FqCmO+z92K
S5X1W9HruofB/rE0FdiYFbCq2J8rXMWAsf2Was6w9SfSKY+OGUbMK+U16IoKO/Q/
YG/VejHiuXgNY3MIYKJur59geDIbVC8+XhxgwfWS8UO2OhArSgLG0aUmR8tbttH/
Nww4lzmN/WA2jvbymqlT1dFu14kK1qI4lhVeKoKA5wd2GXyOEMj9ltDqCylacjTe
QZgdesBgI/39fQ4+GqjNV1wzmMHGG2Cc/TLLozP45qjjDDxC+mCiZ1a03nBbQ3OP
GWKe2AYU2739NJEGa+HIw6JgJjyy6YdQa6Fc4qfbfSNZoZDwESWrtnREMJzz+WHH
izmJYZc7jXBf76b8HF8FJs0kdPMpGEwQg8WpJTAXDqKcos2/l4GNEFXcJy1jL4ZV
hpwM9MO/sNecj2NTptFayXndOmczKaT/PjmDM1vED8/WsZIvvsttjEgcnUEbmKBW
MeIpvR3BlpLTEQLiG4w8u3/zFbL2zwcdHhcxeqzq/Ux5qG6PpzkbRtT0ZBoWtf0u
Xhx3bOJ6
=D1hk
-----END PGP SIGNATURE-----
--- End Message ---