[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#984211: marked as done (libwibble: ftbfs with GCC-11)



Your message dated Sat, 07 Jan 2023 19:29:23 +0000
with message-id <E1pEEsd-002BcS-4V@fasolo.debian.org>
and subject line Bug#984211: fixed in libwibble 1.1-3
has caused the Debian Bug report #984211,
regarding libwibble: 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 owner@bugs.debian.org
immediately.)


-- 
984211: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=984211
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: src:libwibble
Version: 1.1-2
Severity: normal
Tags: sid bookworm
User: debian-gcc@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/libwibble_1.1-2_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.

[...]
make  -f wibble/CMakeFiles/wibble.dir/build.make wibble/CMakeFiles/wibble.dir/build
make[4]: Entering directory '/<<PKGBUILDDIR>>/debian/build'
[  1%] Building CXX object wibble/CMakeFiles/wibble.dir/exception.o
[  2%] Building CXX object wibble/CMakeFiles/wibble.dir/string.o
[  3%] Building CXX object wibble/CMakeFiles/wibble.dir/regexp.o
cd /<<PKGBUILDDIR>>/debian/build/wibble && /usr/bin/c++ -DHAVE_CONFIG_H -DPOSIX -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I/<<PKGBUILDDIR>>/wibble/.. -I/<<PKGBUILDDIR>>/debian/build/wibble/.. -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -o CMakeFiles/wibble.dir/exception.o -c /<<PKGBUILDDIR>>/wibble/exception.cpp
cd /<<PKGBUILDDIR>>/debian/build/wibble && /usr/bin/c++ -DHAVE_CONFIG_H -DPOSIX -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I/<<PKGBUILDDIR>>/wibble/.. -I/<<PKGBUILDDIR>>/debian/build/wibble/.. -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -o CMakeFiles/wibble.dir/string.o -c /<<PKGBUILDDIR>>/wibble/string.cpp
cd /<<PKGBUILDDIR>>/debian/build/wibble && /usr/bin/c++ -DHAVE_CONFIG_H -DPOSIX -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I/<<PKGBUILDDIR>>/wibble/.. -I/<<PKGBUILDDIR>>/debian/build/wibble/.. -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -o CMakeFiles/wibble.dir/regexp.o -c /<<PKGBUILDDIR>>/wibble/regexp.cpp
[  4%] Building CXX object wibble/CMakeFiles/wibble.dir/test.o
cd /<<PKGBUILDDIR>>/debian/build/wibble && /usr/bin/c++ -DHAVE_CONFIG_H -DPOSIX -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I/<<PKGBUILDDIR>>/wibble/.. -I/<<PKGBUILDDIR>>/debian/build/wibble/.. -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -o CMakeFiles/wibble.dir/test.o -c /<<PKGBUILDDIR>>/wibble/test.cpp
In file included from /<<PKGBUILDDIR>>/wibble/regexp.cpp:21:
/<<PKGBUILDDIR>>/wibble/../wibble/regexp.h:66:77: error: ISO C++17 does not allow dynamic exception specifications
   66 |         Regexp(const std::string& expr, int match_count = 0, int flags = 0) throw (wibble::exception::Regexp);
      |                                                                             ^~~~~
/<<PKGBUILDDIR>>/wibble/../wibble/regexp.h:69:59: error: ISO C++17 does not allow dynamic exception specifications
   69 |         bool match(const std::string& str, int flags = 0) throw (wibble::exception::Regexp);
      |                                                           ^~~~~
/<<PKGBUILDDIR>>/wibble/../wibble/regexp.h:75:41: error: ISO C++17 does not allow dynamic exception specifications
   75 |         std::string operator[](int idx) throw (wibble::exception::OutOfRange);
      |                                         ^~~~~
/<<PKGBUILDDIR>>/wibble/../wibble/regexp.h:77:36: error: ISO C++17 does not allow dynamic exception specifications
   77 |         size_t matchStart(int idx) throw (wibble::exception::OutOfRange);
      |                                    ^~~~~
/<<PKGBUILDDIR>>/wibble/../wibble/regexp.h:78:34: error: ISO C++17 does not allow dynamic exception specifications
   78 |         size_t matchEnd(int idx) throw (wibble::exception::OutOfRange);
      |                                  ^~~~~
/<<PKGBUILDDIR>>/wibble/../wibble/regexp.h:79:37: error: ISO C++17 does not allow dynamic exception specifications
   79 |         size_t matchLength(int idx) throw (wibble::exception::OutOfRange);
      |                                     ^~~~~
/<<PKGBUILDDIR>>/wibble/../wibble/regexp.h:85:78: error: ISO C++17 does not allow dynamic exception specifications
   85 |         ERegexp(const std::string& expr, int match_count = 0, int flags = 0) throw (wibble::exception::Regexp)
      |                                                                              ^~~~~
/<<PKGBUILDDIR>>/wibble/regexp.cpp:53:9: error: ISO C++17 does not allow dynamic exception specifications
   53 |         throw (wibble::exception::Regexp) : pmatch(0), nmatch(match_count)
      |         ^~~~~
/<<PKGBUILDDIR>>/wibble/regexp.cpp:75:9: error: ISO C++17 does not allow dynamic exception specifications
   75 |         throw(wibble::exception::Regexp)
      |         ^~~~~
/<<PKGBUILDDIR>>/wibble/regexp.cpp:95:36: error: ISO C++17 does not allow dynamic exception specifications
   95 | string Regexp::operator[](int idx) throw (wibble::exception::OutOfRange)
      |                                    ^~~~~
/<<PKGBUILDDIR>>/wibble/regexp.cpp:106:36: error: ISO C++17 does not allow dynamic exception specifications
  106 | size_t Regexp::matchStart(int idx) throw (wibble::exception::OutOfRange)
      |                                    ^~~~~
/<<PKGBUILDDIR>>/wibble/regexp.cpp:113:34: error: ISO C++17 does not allow dynamic exception specifications
  113 | size_t Regexp::matchEnd(int idx) throw (wibble::exception::OutOfRange)
      |                                  ^~~~~
/<<PKGBUILDDIR>>/wibble/regexp.cpp:120:37: error: ISO C++17 does not allow dynamic exception specifications
  120 | size_t Regexp::matchLength(int idx) throw (wibble::exception::OutOfRange)
      |                                     ^~~~~
make[4]: *** [wibble/CMakeFiles/wibble.dir/build.make:98: wibble/CMakeFiles/wibble.dir/regexp.o] Error 1
make[4]: *** Waiting for unfinished jobs....
/<<PKGBUILDDIR>>/wibble/string.cpp: In function ‘std::string wibble::str::fmtf(const char*, ...)’:
/<<PKGBUILDDIR>>/wibble/string.cpp:117:14: warning: ignoring return value of ‘int vasprintf(char**, const char*, __va_list_tag*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  117 |     vasprintf( &c, f, ap );
      |     ~~~~~~~~~^~~~~~~~~~~~~
/<<PKGBUILDDIR>>/wibble/string.cpp: In function ‘std::string wibble::str::fmt(const char*, ...)’:
/<<PKGBUILDDIR>>/wibble/string.cpp:127:14: warning: ignoring return value of ‘int vasprintf(char**, const char*, __va_list_tag*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  127 |     vasprintf( &c, f, ap );
      |     ~~~~~~~~~^~~~~~~~~~~~~
make[4]: Leaving directory '/<<PKGBUILDDIR>>/debian/build'
make[3]: *** [CMakeFiles/Makefile2:222: wibble/CMakeFiles/wibble.dir/all] Error 2
make[3]: Leaving directory '/<<PKGBUILDDIR>>/debian/build'
make[2]: *** [Makefile:152: all] Error 2
make[2]: Leaving directory '/<<PKGBUILDDIR>>/debian/build'
dh_auto_build: error: cd debian/build && make -j4 VERBOSE=1 returned exit code 2
make[1]: *** [debian/rules:9: override_dh_auto_build] Error 25
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:6: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: libwibble
Source-Version: 1.1-3
Done: Marcos Talau <talau@debian.org>

We believe that the bug you reported is fixed in the latest version of
libwibble, 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 984211@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Marcos Talau <talau@debian.org> (supplier of updated libwibble 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 ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sat, 07 Jan 2023 15:20:39 -0300
Source: libwibble
Architecture: source
Version: 1.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <packages@qa.debian.org>
Changed-By: Marcos Talau <talau@debian.org>
Closes: 984211
Changes:
 libwibble (1.1-3) unstable; urgency=medium
 .
   * QA upload.
   * debian/patches/ftbfs-gcc11.patch: New. Remove dynamic exception
     specifications (Closes: #984211).
Checksums-Sha1:
 a38a20c81de775657f39f5eefe9bce2d135eb55b 1692 libwibble_1.1-3.dsc
 ecc12b0e31af439ab5564e387b041cd0137cdffb 9072 libwibble_1.1-3.debian.tar.xz
 841949b00108384adc70de064b93f8c3ad175377 7118 libwibble_1.1-3_source.buildinfo
Checksums-Sha256:
 5c47ca7c691ea46fb13019573e2fb0adf0c70a4a2a0988de0c2bc20faf3f7fbc 1692 libwibble_1.1-3.dsc
 135d9b5b5e6b49fa297224b809838810f66957ae716b2b7a20a9ca5ad09e009c 9072 libwibble_1.1-3.debian.tar.xz
 a555baabf369680e88a25b9234ed13de74a3e13649ea1649bef3ae15f86e7b6b 7118 libwibble_1.1-3_source.buildinfo
Files:
 4611acab544b96a69238b93a85aec01f 1692 libdevel optional libwibble_1.1-3.dsc
 0d0ccda9a1fce830be0947508c2df0ca 9072 libdevel optional libwibble_1.1-3.debian.tar.xz
 5c09b9c966df2280bf2fad4751c13eda 7118 libdevel optional libwibble_1.1-3_source.buildinfo

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

iQIzBAEBCgAdFiEEtSLzkVnaB9053AsR9LqqgNsoukwFAmO5ucEACgkQ9LqqgNso
ukyZGA/9HDOLVgZ5W7SOsq4kSYl1TzdiTFWa/R/53Y3kZYnh+t8iYmmMDiKA7eap
J0vQAuq9CQ+IJhmAqo4oWhUTgD0ZpT23HDboD1/WFSY/ptIWrw6FuWEP6gH4w1hE
v6VEY4DrJ3lYdPspC/0dL5+pm3vogCKtmN20fryk6LJJRJ/Uy99hegcMBLvSdpFt
fqlB4nxWDhs99qJ+AG+3TW1q5/+bhHSqNmmM3RsnkHDBY/f3bL9W4Ihb9OMK0Nqj
EWX+5vAIamSjTkiFyGBCSxTpqqIOUC/a5v3ngg7tbe5xYe0YCA8fT8/HKXzvbowZ
XP6IYNZ+uGsFDdhoozzLlpe1DOXL8+m0IAgTetouf2J3KBOtprBDxdnwfgXAwipM
90MtGOUWSWb0HVMiwspfBr1N60E/MfSusvyZKNXUx8iOj6WdIDLVycBbAXCI26eW
ZAD9v83u0r40bFOMptCr9hxxAhZsVY5UU4yVt1JJy/0w2y6D2g4D1/PifyAb8Mm9
5yH0SIsUCsXWZKYuf6JsW2SDZ3dwLaKMXmYztJ1Dxpc0kLo/ZxTIRLrWKoJ1U+zk
yNA2sRX6s47zTiXOnhOvd4skYk1Q3m6281w0/hzETwQl7k4rqyEQeCLKQAHQuYP0
xVf+rwGFeOsb1T0+7K6LR+CCEaxj4tvt6FcmVYwtMzMjMWETEWY=
=gsEU
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: