Your message dated Thu, 21 Oct 2021 21:50:26 +0000
with message-id <e1mdfxc-00023g...@fasolo.debian.org>
and subject line Bug#984254: fixed in netpanzer 0.8.7+ds-4
has caused the Debian Bug report #984254,
regarding netpanzer: 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 ow...@bugs.debian.org
immediately.)


-- 
984254: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=984254
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:netpanzer
Version: 0.8.7+ds-3
Severity: normal
Tags: sid bookworm
User: debian-...@lists.debian.org
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/netpanzer_0.8.7+ds-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.

[...]
                 from src/NetPanzer/Network/ClientSocket.hpp:24,
                 from src/NetPanzer/Classes/Network/NetworkClient.hpp:25,
                 from src/NetPanzer/Bot/Bot.cpp:28:
src/Lib/Network/SocketBase.hpp:48:46: error: ISO C++17 does not allow dynamic 
exception specifications
   48 |     SocketBase(const Address &a, bool isTcp) throw(NetworkException);
      |                                              ^~~~~
src/Lib/Network/SocketBase.hpp:49:45: error: ISO C++17 does not allow dynamic 
exception specifications
   49 |     SocketBase(SOCKET fd, const Address &a) throw(NetworkException);
      |                                             ^~~~~
src/Lib/Network/SocketBase.hpp:60:25: error: ISO C++17 does not allow dynamic 
exception specifications
   60 |     void setReuseAddr() throw(NetworkException);
      |                         ^~~~~
src/Lib/Network/SocketBase.hpp:61:23: error: ISO C++17 does not allow dynamic 
exception specifications
   61 |     void setNoDelay() throw(NetworkException);
      |                       ^~~~~
src/Lib/Network/SocketBase.hpp:64:46: error: ISO C++17 does not allow dynamic 
exception specifications
   64 |     void bindSocketTo(const Address& toaddr) throw(NetworkException);
      |                                              ^~~~~
src/Lib/Network/SocketBase.hpp:65:23: error: ISO C++17 does not allow dynamic 
exception specifications
   65 |     void bindSocket() throw(NetworkException) { bindSocketTo(addr); };
      |                       ^~~~~
src/Lib/Network/SocketBase.hpp:66:21: error: ISO C++17 does not allow dynamic 
exception specifications
   66 |     void doListen() throw(NetworkException);
      |                     ^~~~~
src/Lib/Network/SocketBase.hpp:67:22: error: ISO C++17 does not allow dynamic 
exception specifications
   67 |     void doConnect() throw(NetworkException);
      |                      ^~~~~
src/Lib/Network/SocketBase.hpp:68:47: error: ISO C++17 does not allow dynamic 
exception specifications
   68 |     int  doSend(const void* data, size_t len) throw(NetworkException);
      |                                               ^~~~~
src/Lib/Network/SocketBase.hpp:69:46: error: ISO C++17 does not allow dynamic 
exception specifications
   69 |     int  doReceive(void* buffer, size_t len) throw(NetworkException);
      |                                              ^~~~~
src/Lib/Network/SocketBase.hpp:70:72: error: ISO C++17 does not allow dynamic 
exception specifications
   70 |     int  doSendTo(const Address& toaddr, const void* data, size_t len) 
throw(NetworkException);
      |                                                                        
^~~~~
src/Lib/Network/SocketBase.hpp:71:72: error: ISO C++17 does not allow dynamic 
exception specifications
   71 |     size_t  doReceiveFrom(Address& fromaddr, void* buffer, size_t len) 
throw(NetworkException);
      |                                                                        
^~~~~
src/Lib/Network/SocketBase.hpp:72:40: error: ISO C++17 does not allow dynamic 
exception specifications
   72 |     SOCKET doAccept(Address& fromaddr) throw(NetworkException);
      |                                        ^~~~~
src/Lib/Network/SocketBase.hpp:76:19: error: ISO C++17 does not allow dynamic 
exception specifications
   76 |     void create() throw(NetworkException);
      |                   ^~~~~
src/Lib/Network/SocketBase.hpp:77:27: error: ISO C++17 does not allow dynamic 
exception specifications
   77 |     void setNonBlocking() throw(NetworkException);
      |                           ^~~~~
In file included from src/NetPanzer/Network/ProxyServer.hpp:24,
                 from src/NetPanzer/Network/ClientSocket.hpp:24,
                 from src/NetPanzer/Classes/Network/NetworkClient.hpp:25,
                 from src/NetPanzer/Bot/Bot.cpp:28:
src/Lib/Network/TCPSocket.hpp:49:61: error: ISO C++17 does not allow dynamic 
exception specifications
   49 |     TCPSocket(const Address& address, TCPSocketObserver *o) 
throw(NetworkException);
      |                                                             ^~~~~
src/Lib/Network/TCPSocket.hpp:50:86: error: ISO C++17 does not allow dynamic 
exception specifications
   50 |     TCPSocket(const std::string& host,const std::string& port, 
TCPSocketObserver *o) throw(NetworkException);
      |                                                                         
             ^~~~~
src/Lib/Network/TCPSocket.hpp:54:52: error: ISO C++17 does not allow dynamic 
exception specifications
   54 |     size_t send(const void* data, size_t datasize) 
throw(NetworkException);
      |                                                    ^~~~~
src/Lib/Network/TCPSocket.hpp:67:69: error: ISO C++17 does not allow dynamic 
exception specifications
   67 |     TCPSocket(SOCKET fd, const Address& addr, TCPSocketObserver *o) 
throw(NetworkException);
      |                                                                     
^~~~~
scons: *** [build/release/src/NetPanzer/Bot/Bot.o] Error 1
scons: building terminated because of errors.
make[1]: *** [debian/rules:10: override_dh_auto_build] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:6: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: netpanzer
Source-Version: 0.8.7+ds-4
Done: Markus Koschany <a...@debian.org>

We believe that the bug you reported is fixed in the latest version of
netpanzer, 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 984...@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 netpanzer 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: Thu, 21 Oct 2021 23:16:42 +0200
Source: netpanzer
Architecture: source
Version: 0.8.7+ds-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team <pkg-games-de...@lists.alioth.debian.org>
Changed-By: Markus Koschany <a...@debian.org>
Closes: 984254
Changes:
 netpanzer (0.8.7+ds-4) unstable; urgency=medium
 .
   * Team upload.
   * Fix FTBFS with GCC 11. (Closes: #984254)
   * Switch to debhelper-compat = 13.
   * Declare compliance with Debian Policy 4.6.0.
Checksums-Sha1:
 f653caf79028ec95246aa4b0bfb31a8af5cb4f5a 2284 netpanzer_0.8.7+ds-4.dsc
 7aba1eb32f370ce3e7719af0988d48bc913b5b10 11660 
netpanzer_0.8.7+ds-4.debian.tar.xz
 6f0d13aacee926eec025ec7ab94ea3ec8750b3e1 11570 
netpanzer_0.8.7+ds-4_amd64.buildinfo
Checksums-Sha256:
 0b38cfba947c23df34259a6c8e7b521cdbe9d6bd5eeba5221b3ebc4ecd8fb770 2284 
netpanzer_0.8.7+ds-4.dsc
 65bf270787b56e599adf04a9816243db57f9f619951dc95a22efe8c7a25e364e 11660 
netpanzer_0.8.7+ds-4.debian.tar.xz
 99a2d722f6ae9f0094fd9c9a686aec03f6654c67cb2480a18913c35edb3108fd 11570 
netpanzer_0.8.7+ds-4_amd64.buildinfo
Files:
 586e55ac53e3c11506173ec59819db26 2284 games optional netpanzer_0.8.7+ds-4.dsc
 a4105d4b5dce21f780134eac8fac8faa 11660 games optional 
netpanzer_0.8.7+ds-4.debian.tar.xz
 2866fe61adacd40ad116710a31950e53 11570 games optional 
netpanzer_0.8.7+ds-4_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQKjBAEBCgCNFiEErPPQiO8y7e9qGoNf2a0UuVE7UeQFAmFx3OpfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEFD
RjNEMDg4RUYzMkVERUY2QTFBODM1RkQ5QUQxNEI5NTEzQjUxRTQPHGFwb0BkZWJp
YW4ub3JnAAoJENmtFLlRO1HkuLkQAKxcx7bcKU6chC9Sd20RnjPnx4aVkimc7UYF
oiYf0As4jJUE49YShkV62K/phD6Y5cJta/h0c4PVYrd1NEfNW3W7KqQRPU7z4Ahc
mDFzA+It6DSwQawoao6FIwN8ZduNtATScqrUK6WItzi2hK82NEkg0EkOEZVpamWc
6uDcPMtisJWbnHXT0kD2d/8uZcMS7Vdh6Ojl6vSaMUyIilttz6CsUxisUpy6N3Gp
x/MTJnj6KcChXuFWvpaKoBFGOEwGLsANgKKTr+zV3HmZQCvshJgWkqK/Tf6mEgFG
+sV0wQelmuFK+gc3R3vPX9q72d7d94orp8odUENOYdiVmKUboNj6tINCHZRU7bYD
iAPTKT2WoiWWKt5hL955CUHrmueT1s/bVWJme6gOKgoY+9j17qxYZndzn++2ItlU
WGgyo8pSg48VR3qIqOKWKKxjS1P91N9uKCATDtoDocoOcenioCOWWiUQ3TNmmMbP
V0xdXIYuBNiRAeUZ/kA1B5BpPwKOzEDxrx326eSQ87hBsd4fmnRJauCSevnSPGhD
ufN4W4NgFJ/pT41WXAMaB3fQzoQFrBct8+W2Zvo8AtePI876+6TBNqJckP60qBww
k4pquBUrvsEb4mGjj//jehcsAjjJz/uk/NTsxb5rR2+gNLkyXo6w+GWC7z1VMZea
s9pivjQv
=Y+a8
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to