Your message dated Sat, 06 Nov 2021 18:03:53 +0000
with message-id <e1mjq2j-000a7k...@fasolo.debian.org>
and subject line Bug#984260: fixed in nut 2.7.4-14
has caused the Debian Bug report #984260,
regarding nut: 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.)


-- 
984260: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=984260
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:nut
Version: 2.7.4-13
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/nut_2.7.4-13_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.

[...]
nutclient.cpp:974:49: error: ISO C++17 does not allow dynamic exception 
specifications
  974 | std::set<std::string> Device::getVariableNames()throw(NutException)
      |                                                 ^~~~~
nutclient.cpp:979:51: error: ISO C++17 does not allow dynamic exception 
specifications
  979 | std::set<std::string> Device::getRWVariableNames()throw(NutException)
      |                                                   ^~~~~
nutclient.cpp:984:76: error: ISO C++17 does not allow dynamic exception 
specifications
  984 | void Device::setVariable(const std::string& name, const std::string& 
value)throw(NutException)
      |                                                                         
   ^~~~~
nutclient.cpp:990:9: error: ISO C++17 does not allow dynamic exception 
specifications
  990 |         throw(NutException)
      |         ^~~~~
nutclient.cpp:997:54: error: ISO C++17 does not allow dynamic exception 
specifications
  997 | Variable Device::getVariable(const std::string& name)throw(NutException)
      |                                                      ^~~~~
nutclient.cpp:1005:42: error: ISO C++17 does not allow dynamic exception 
specifications
 1005 | std::set<Variable> Device::getVariables()throw(NutException)
      |                                          ^~~~~
nutclient.cpp:1018:44: error: ISO C++17 does not allow dynamic exception 
specifications
 1018 | std::set<Variable> Device::getRWVariables()throw(NutException)
      |                                            ^~~~~
nutclient.cpp:1031:48: error: ISO C++17 does not allow dynamic exception 
specifications
 1031 | std::set<std::string> Device::getCommandNames()throw(NutException)
      |                                                ^~~~~
nutclient.cpp:1036:40: error: ISO C++17 does not allow dynamic exception 
specifications
 1036 | std::set<Command> Device::getCommands()throw(NutException)
      |                                        ^~~~~
nutclient.cpp:1049:52: error: ISO C++17 does not allow dynamic exception 
specifications
 1049 | Command Device::getCommand(const std::string& name)throw(NutException)
      |                                                    ^~~~~
nutclient.cpp:1057:53: error: ISO C++17 does not allow dynamic exception 
specifications
 1057 | void Device::executeCommand(const std::string& name)throw(NutException)
      |                                                     ^~~~~
nutclient.cpp:1062:21: error: ISO C++17 does not allow dynamic exception 
specifications
 1062 | void Device::login()throw(NutException)
      |                     ^~~~~
nutclient.cpp:1067:22: error: ISO C++17 does not allow dynamic exception 
specifications
 1067 | void Device::master()throw(NutException)
      |                      ^~~~~
nutclient.cpp:1072:30: error: ISO C++17 does not allow dynamic exception 
specifications
 1072 | void Device::forcedShutdown()throw(NutException)
      |                              ^~~~~
nutclient.cpp:1076:27: error: ISO C++17 does not allow dynamic exception 
specifications
 1076 | int Device::getNumLogins()throw(NutException)
      |                           ^~~~~
nutclient.cpp:1144:46: error: ISO C++17 does not allow dynamic exception 
specifications
 1144 | std::vector<std::string> Variable::getValue()throw(NutException)
      |                                              ^~~~~
nutclient.cpp:1149:39: error: ISO C++17 does not allow dynamic exception 
specifications
 1149 | std::string Variable::getDescription()throw(NutException)
      |                                       ^~~~~
nutclient.cpp:1154:50: error: ISO C++17 does not allow dynamic exception 
specifications
 1154 | void Variable::setValue(const std::string& value)throw(NutException)
      |                                                  ^~~~~
nutclient.cpp:1159:65: error: ISO C++17 does not allow dynamic exception 
specifications
 1159 | void Variable::setValues(const std::vector<std::string>& 
values)throw(NutException)
      |                                                                 ^~~~~
nutclient.cpp:1228:38: error: ISO C++17 does not allow dynamic exception 
specifications
 1228 | std::string Command::getDescription()throw(NutException)
      |                                      ^~~~~
nutclient.cpp:1233:24: error: ISO C++17 does not allow dynamic exception 
specifications
 1233 | void Command::execute()throw(NutException)
      |                        ^~~~~
make[2]: *** [Makefile:921: nutclient.lo] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>/clients'
make[1]: *** [Makefile:529: all-recursive] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j1 returned exit code 2
make: *** [debian/rules:36: build] Error 25
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: nut
Source-Version: 2.7.4-14
Done: Laurent Bigonville <bi...@debian.org>

We believe that the bug you reported is fixed in the latest version of
nut, 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.
Laurent Bigonville <bi...@debian.org> (supplier of updated nut 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: Sat, 06 Nov 2021 18:41:33 +0100
Source: nut
Architecture: source
Version: 2.7.4-14
Distribution: unstable
Urgency: medium
Maintainer: Laurent Bigonville <bi...@debian.org>
Changed-By: Laurent Bigonville <bi...@debian.org>
Closes: 984260
Changes:
 nut (2.7.4-14) unstable; urgency=medium
 .
   [ Jeremy Sowden ]
   * d/patches: add patch to fix FTBFS with g++-11 (closes: #984260)
 .
   [ Laurent Bigonville ]
   * debian/control: Bump Standards-Version to 4.6.0 (no further changes)
   * debian/source_nut.py: Change the shebang to python3
Checksums-Sha1:
 80cb26336708cb2f03aea9d2146497497367767a 2874 nut_2.7.4-14.dsc
 e5979ad15d3f2b04d595a3d795ec4897342bc172 80948 nut_2.7.4-14.debian.tar.xz
 353abd6ad9dba8640fb62978940916139e863bd9 6431 nut_2.7.4-14_source.buildinfo
Checksums-Sha256:
 91ac0bd9084881b239f4c306997379cdaa84e361c834a522b34b66572d49e853 2874 
nut_2.7.4-14.dsc
 80b50f0600fc8ad7a49bda08f9f65daf82e7a142252f0dd2248df31bcec9d5a3 80948 
nut_2.7.4-14.debian.tar.xz
 cccb553299693b0b96541605e0e0d6eec62e43cf0e16fd4f80966ca9d2caa9a7 6431 
nut_2.7.4-14_source.buildinfo
Files:
 672a2d865bfc3f22ab5ca2ef6e3b9cc6 2874 admin optional nut_2.7.4-14.dsc
 b3e54caf3f32f9b70929f62daee1ced9 80948 admin optional 
nut_2.7.4-14.debian.tar.xz
 428052f4da0ad10a009d94923769d7a2 6431 admin optional 
nut_2.7.4-14_source.buildinfo

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

iQFFBAEBCAAvFiEEmRrdqQAhuF2x31DwH8WJHrqwQ9UFAmGGvwkRHGJpZ29uQGRl
Ymlhbi5vcmcACgkQH8WJHrqwQ9U+jQgAo771vhtQU77cYqXjVEQKPRPCbbKPXADZ
0ll2izUwk8EoD9oFrKNM9xh+UdD/Earv6+orbEkt4eC7z7UJwBZ2gyUlmD4BZtlb
3BV3btSpA5IyulrZD9ZaSRtwDB4myZtW/MA7fV0j9z+/LdFvPrkU3rnRtgCdk0XZ
MB75UFGRYZE1cHJ5Lpga0i1TVtaqlpbtXqNKV0fw/jFS7xmHqHPoLIOu/LhmgpTT
aSaCxtMZEeSl/92O3UqM9WW/EZVfOkYnNVCzdxn8xQqi6cU5G4IBdmdr1K+dkXmJ
c++0XsgoG9kz0MwBBXV/WIMCVhGXzyuMati8TV8gPhAxjM2lg3G9Fg==
=7ZFG
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to