Your message dated Mon, 06 Sep 2021 14:33:52 +0000
with message-id <[email protected]>
and subject line Bug#983994: fixed in bloboats 1.0.2+dfsg-4
has caused the Debian Bug report #983994,
regarding bloboats: ftbfs with GCC-11
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.)
--
983994: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=983994
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:bloboats
Version: 1.0.2+dfsg-3
Severity: normal
Tags: sid bookworm
User: [email protected]
Usertags: ftbfs-gcc-11
[This bug is not targeted to the upcoming bullseye release]
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-11/g++-11, but succeeds to build with gcc-10/g++-10. The
severity of this report will be raised before the bookworm release,
so nothing has to be done for the bullseye release.
The full build log can be found at:
http://people.debian.org/~doko/logs/20210228/filtered/gcc11/bloboats_1.0.2+dfsg-3_unstable_gcc11.log
The last lines of the build log are at the end of this report.
To build with GCC 11, either set CC=gcc-11 CXX=g++-11 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-11/porting_to.html
GCC 11 defaults to the GNU++17 standard. If your package installs
header files in /usr/include, please don't work around C++17 issues
by choosing a lower C++ standard for the package build, but fix these
issues to build with the C++17 standard.
[...]
src/menu.cpp:3333:84: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3333 | menutext("C-CWISE"), menutext("CWISE"),
menutext("JUMP"), menutext("TURN"),
|
^~~~~~
src/menu.cpp:3334:26: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3334 | menutext("ZOOM IN"), menutext("ZOOM OUT"),
menutext("PAUSE"), menutext("BACK") };
| ^~~~~~~~~
src/menu.cpp:3334:47: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3334 | menutext("ZOOM IN"), menutext("ZOOM OUT"),
menutext("PAUSE"), menutext("BACK") };
| ^~~~~~~~~~
src/menu.cpp:3334:69: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3334 | menutext("ZOOM IN"), menutext("ZOOM OUT"),
menutext("PAUSE"), menutext("BACK") };
|
^~~~~~~
src/menu.cpp:3334:88: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3334 | menutext("ZOOM IN"), menutext("ZOOM OUT"),
menutext("PAUSE"), menutext("BACK") };
|
^~~~~~
src/menu.cpp:3378:69: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3378 | setkey( KEY_THRUST,
"*THRUST KEY?" );
|
^~~~~~~~~~~~~~
src/menu.cpp:3381:70: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3381 | setkey( KEY_REVERSE,
"*REVERSE KEY?" );
|
^~~~~~~~~~~~~~~
src/menu.cpp:3384:66: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3384 | setkey( KEY_CCW,
"*C-CWISE KEY?" );
|
^~~~~~~~~~~~~~~
src/menu.cpp:3387:65: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3387 | setkey( KEY_CW, "*CWISE
KEY?" );
|
^~~~~~~~~~~~~
src/menu.cpp:3390:67: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3390 | setkey( KEY_JUMP,
"*JUMP KEY?" );
|
^~~~~~~~~~~~
src/menu.cpp:3393:67: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3393 | setkey( KEY_TURN,
"*TURN KEY?" );
|
^~~~~~~~~~~~
src/menu.cpp:3396:69: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3396 | setkey( KEY_ZOOMIN,
"*ZOOM IN KEY?" );
|
^~~~~~~~~~~~~~~
src/menu.cpp:3399:70: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3399 | setkey( KEY_ZOOMOUT,
"*ZOOM OUT KEY?" );
|
^~~~~~~~~~~~~~~~
src/menu.cpp:3402:68: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3402 | setkey( KEY_PAUSE,
"*PAUSE KEY?" );
|
^~~~~~~~~~~~~
src/menu.cpp: In member function ‘void menu::soundoptions()’:
src/menu.cpp:3623:41: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3623 | menutext item[items]={ menutext("*SOUND OPTIONS:"),
menutext(""), menutext(""), menutext("BACK") };
| ^~~~~~~~~~~~~~~~~
src/menu.cpp:3623:70: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3623 | menutext item[items]={ menutext("*SOUND OPTIONS:"),
menutext(""), menutext(""), menutext("BACK") };
| ^~
src/menu.cpp:3623:84: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3623 | menutext item[items]={ menutext("*SOUND OPTIONS:"),
menutext(""), menutext(""), menutext("BACK") };
|
^~
src/menu.cpp:3623:98: warning: ISO C++ forbids converting a string constant to
‘char*’ [-Wwrite-strings]
3623 | menutext item[items]={ menutext("*SOUND OPTIONS:"),
menutext(""), menutext(""), menutext("BACK") };
|
^~~~~~
make[2]: *** [<builtin>: src/menu.o] Error 1
make[2]: *** Waiting for unfinished jobs....
src/models/paatti.cpp: In constructor ‘paatti::paatti(double, double, double,
double, char*)’:
src/models/paatti.cpp:53:25: warning: ISO C++ forbids converting a string
constant to ‘char*’ [-Wwrite-strings]
53 | if (!loadmodel( "models/paatti.mdl" , cx, cy, angle, scale,
hardness, -400.0) ) {
| ^~~~~~~~~~~~~~~~~~~
src/models/paatti.cpp:54:87: warning: ISO C++ forbids converting a string
constant to ‘char*’ [-Wwrite-strings]
54 | fprintf (stderr, "Couldn't interpret \"%s\"!
Critical!\n", Path->data("models/paatti.mdl") );
|
^~~~~~~~~~~~~~~~~~~
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j4 DATADIR=/usr/share/games/bloboats returned exit
code 2
make[1]: *** [debian/rules:8: override_dh_auto_build] Error 25
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:4: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: bloboats
Source-Version: 1.0.2+dfsg-4
Done: Nilesh Patra <[email protected]>
We believe that the bug you reported is fixed in the latest version of
bloboats, 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.
Nilesh Patra <[email protected]> (supplier of updated bloboats 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: Mon, 06 Sep 2021 19:28:22 +0530
Source: bloboats
Architecture: source
Version: 1.0.2+dfsg-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team <[email protected]>
Changed-By: Nilesh Patra <[email protected]>
Closes: 983994
Changes:
bloboats (1.0.2+dfsg-4) unstable; urgency=medium
.
* Team Upload.
* d/p/gcc11.patch: Fix gcc11 FTBFS (Closes: #983994)
* Add d/salsa-ci.yml
* d/p/hardening.patch: Do not override CXXFLAGS
(Fixes blhc and makes build reproducible)
* d/control: Update VCS URLs
Checksums-Sha1:
e2640fcff5abfebc46d5462cc4906b9e8ae234c9 2004 bloboats_1.0.2+dfsg-4.dsc
805b88b8b19999474e8a2c27176e6d0f68fa7a30 35976
bloboats_1.0.2+dfsg-4.debian.tar.xz
f0a9906aef967eaef37983e4b0d082a4b28f36a2 9907
bloboats_1.0.2+dfsg-4_amd64.buildinfo
Checksums-Sha256:
f7cedad81dbb377b046b4645e04770bbdf1c6f84dd606efaa121d370de73ecd2 2004
bloboats_1.0.2+dfsg-4.dsc
22762eb163553fd68ac3d3d4239d30f11ec641999c9ff48549f3a736d5be5b70 35976
bloboats_1.0.2+dfsg-4.debian.tar.xz
f15078bb3382272d03361758d572df8ad157e48fc96ccf608fcf1e45206886e8 9907
bloboats_1.0.2+dfsg-4_amd64.buildinfo
Files:
c296b986b9b768a471f47783c08be99a 2004 games optional bloboats_1.0.2+dfsg-4.dsc
60fa82402e770dfac01374fd14bbda80 35976 games optional
bloboats_1.0.2+dfsg-4.debian.tar.xz
81d0740157261c187ab6dfae485b8a65 9907 games optional
bloboats_1.0.2+dfsg-4_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJIBAEBCgAyFiEEPpmlJvXcwMu/HO6mALrnSzQzafEFAmE2HxwUHG5wYXRyYTk3
NEBnbWFpbC5jb20ACgkQALrnSzQzafFeaxAAi51a+r4PJD4fc+0N/bf41zkH0zJb
pqFxzYJgXz2lkRObckQ9+7zQhx67CnV+hLFD09jtvvF4UteGIgnEcfmwS2rAzBKa
f1S+nAfkv33DfoDHGfhLF30ZPmDg1wIH4gnr1eT5LgMeV6pKpo+AVfrqxjl+GEdN
U0dHhHrd0LWfGCNfEf1YyeojpxM2pDoxT2kHcPGBUv5G4jbCkYTBbW5UIySoez3o
fp9R0N+UVXVq9RLXLqjjQeDD2SslBmUJaVA27ZzBjLzhavz91V8UinI9pMqjhKzy
hadyIB2Rrw4ApmhlT1n6oTXRsCZ6hu8NEjxq5TMzhtZXUhlY1FWdd/UbAYiUTOao
BClVqhWcMJKvi646Ee9OS03P+TGRHJrA+bIto30TflUkd3zumgJHvt4ROL+aRlTv
mNFaRpiS+gZzgVXvKvPqI2TVeKbDHJr3dKYnTY00/b2pus1GT0nhHLO4tnzlv9V8
2DI/fi86XHGrn7TJSmycJ2KIteOprwsQ61vvrSe7gqL7M/BYq5XQNzqLIBXnbt3T
5OPmiACYZ97rGBoMI9NE4MglrEgX83OjnRJxhvp7FxyVn5gaw2VMzsBOAI9JtLh4
LjtsYBQ4uk/l84p5GYKTCpRdmnLat7FfOkk2MeU/LmauoZBPxYWTRzPIPbQlvU02
qC0P7JMjT1XdpMs=
=aTLg
-----END PGP SIGNATURE-----
--- End Message ---