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

Bug#957434: marked as done (libept: ftbfs with GCC-10)



Your message dated Sun, 03 Jan 2021 09:48:19 +0000
with message-id <E1kvzzn-0004UT-F9@fasolo.debian.org>
and subject line Bug#957434: fixed in libept 1.2.1
has caused the Debian Bug report #957434,
regarding libept: 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 owner@bugs.debian.org
immediately.)


-- 
957434: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=957434
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: src:libept
Version: 1.1+nmu3
Severity: normal
Tags: sid bullseye
User: debian-gcc@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/libept_1.1+nmu3_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

[...]
      |                   ^~
      |                   int
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:94:24: error: ‘in’ was not declared in this scope; did you mean ‘int’?
   94 |             if (ferror(in))
      |                        ^~
      |                        int
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:95:94: error: ‘pathname’ was not declared in this scope; did you mean ‘ptsname’?
   95 |                 throw std::system_error(errno, std::system_category(), "cannot read from " + pathname);
      |                                                                                              ^~~~~~~~
      |                                                                                              ptsname
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc: At global scope:
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:105:6: error: no declaration matches ‘void ept::debtags::DebDBParser::appendFieldBody(std::string&)’
  105 | void DebDBParser::appendFieldBody(std::string& body)
      |      ^~~~~~~~~~~
In file included from /<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:21:
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.h:63:7: note: candidate is: ‘void ept::debtags::DebDBParser::appendFieldBody(int&)’
   63 |  void appendFieldBody(std::string& body);
      |       ^~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.h:43:7: note: ‘class ept::debtags::DebDBParser’ defined here
   43 | class DebDBParser
      |       ^~~~~~~~~~~
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:136:1: error: no declaration matches ‘ept::debtags::DebDBParser::DebDBParser(FILE*, const string&)’
  136 | DebDBParser::DebDBParser(FILE* input, const std::string& pathname)
      | ^~~~~~~~~~~
In file included from /<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:21:
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.h:43:7: note: candidates are: ‘constexpr ept::debtags::DebDBParser::DebDBParser(ept::debtags::DebDBParser&&)’
   43 | class DebDBParser
      |       ^~~~~~~~~~~
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.h:43:7: note:                 ‘constexpr ept::debtags::DebDBParser::DebDBParser(const ept::debtags::DebDBParser&)’
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.h:43:7: note:                 ‘ept::debtags::DebDBParser::DebDBParser()’
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.h:43:7: note: ‘class ept::debtags::DebDBParser’ defined here
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc: In member function ‘bool ept::debtags::DebDBParser::nextRecord(ept::debtags::DebDBParser::Record&)’:
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:151:6: error: request for member ‘clear’ in ‘rec’, which is of non-class type ‘ept::debtags::DebDBParser::Record’ {aka ‘int’}
  151 |  rec.clear();
      |      ^~~~~
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:156:29: error: ‘getFieldName’ was not declared in this scope
  156 |         std::string field = getFieldName();
      |                             ^~~~~~~~~~~~
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:165:19: error: cannot convert ‘std::string’ {aka ‘std::__cxx11::basic_string<char>’} to ‘int&’
  165 |   appendFieldBody(body);
      |                   ^~~~
      |                   |
      |                   std::string {aka std::__cxx11::basic_string<char>}
In file included from /<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:21:
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.h:63:36: note:   initializing argument 1 of ‘void ept::debtags::DebDBParser::appendFieldBody(int&)’
   63 |  void appendFieldBody(std::string& body);
      |                       ~~~~~~~~~~~~~^~~~
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:175:20: error: cannot convert ‘std::string’ {aka ‘std::__cxx11::basic_string<char>’} to ‘int&’
  175 |    appendFieldBody(body);
      |                    ^~~~
      |                    |
      |                    std::string {aka std::__cxx11::basic_string<char>}
In file included from /<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:21:
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.h:63:36: note:   initializing argument 1 of ‘void ept::debtags::DebDBParser::appendFieldBody(int&)’
   63 |  void appendFieldBody(std::string& body);
      |                       ~~~~~~~~~~~~~^~~~
/<<PKGBUILDDIR>>/ept/debtags/maint/debdbparser.cc:186:7: error: request for member ‘insert’ in ‘rec’, which is of non-class type ‘ept::debtags::DebDBParser::Record’ {aka ‘int’}
  186 |   rec.insert(std::pair<std::string,std::string>(field, body));
      |       ^~~~~~
make[4]: *** [ept/CMakeFiles/ept-static.dir/build.make:170: ept/CMakeFiles/ept-static.dir/debtags/maint/debdbparser.cc.o] Error 1
make[4]: Leaving directory '/<<PKGBUILDDIR>>/debian/build'
make[3]: *** [CMakeFiles/Makefile2:199: ept/CMakeFiles/ept-static.dir/all] Error 2
make[3]: Leaving directory '/<<PKGBUILDDIR>>/debian/build'
make[2]: *** [Makefile:133: all] Error 2
make[2]: Leaving directory '/<<PKGBUILDDIR>>/debian/build'
dh_auto_build: error: cd debian/build && make -j1 returned exit code 2
make[1]: *** [debian/rules:13: 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: libept
Source-Version: 1.2.1
Done: Julian Andres Klode <jak@debian.org>

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

Debian distribution maintenance software
pp.
Julian Andres Klode <jak@debian.org> (supplier of updated libept 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: Sun, 03 Jan 2021 10:26:08 +0100
Source: libept
Architecture: source
Version: 1.2.1
Distribution: unstable
Urgency: medium
Maintainer: APT Development Team <deity@lists.debian.org>
Changed-By: Julian Andres Klode <jak@debian.org>
Closes: 957434
Changes:
 libept (1.2.1) unstable; urgency=medium
 .
   * Fix FTBFS with GCC 10 (Closes: #957434)
   * Bump Standards-Version to 4.5.1
   * Bump debhelper-compat 13
Checksums-Sha1:
 280ce72b728c9c605376b48b1889a2c200a29ded 1764 libept_1.2.1.dsc
 67cd3b290f925ab456751b50c84d25b706d4ed98 615948 libept_1.2.1.tar.xz
 c911d9b277286ad971110ad79e37ac103c3c1255 6670 libept_1.2.1_source.buildinfo
Checksums-Sha256:
 d4a02d98cc67fc4aae4903ff4b3a86f66c257c44c574ddd2b229699babbbf93d 1764 libept_1.2.1.dsc
 72d10504a1939dbe611e818ee287c164184586a82f8f659daf5dc0fa9933bcfc 615948 libept_1.2.1.tar.xz
 434ba34ada66888c3204722c50db0db9b592cacf1879e172f582750b0d87a98e 6670 libept_1.2.1_source.buildinfo
Files:
 1e56855bf6985db377e6ff00cb62b745 1764 libdevel optional libept_1.2.1.dsc
 b4709a32eba3f4cb2be410dde8515bcc 615948 libdevel optional libept_1.2.1.tar.xz
 89bdd820f484948cdf6de5c4e6de295e 6670 libdevel optional libept_1.2.1_source.buildinfo

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

iQJDBAEBCgAtFiEET7WIqEwt3nmnTHeHb6RY3R2wP3EFAl/xjoQPHGpha0BkZWJp
YW4ub3JnAAoJEG+kWN0dsD9x+jwP/in9ON10nnZIxyQNET9m6VzC2RVLFzIR/C67
hichdlRfFhkYr1YBwMIA5eKr+mjoWfQVgVUWJ66m85E/Hq4ZTXwjAZ57Mxb3RCvg
w/hcLvx6BX63Qi3oBcL1CSLODo8e8gqiBB0grFEQ5n7WAlcA6Q2dwQrm/7bqEn/F
GlNC1y4FfRmexIMPGJk3AvY1YKccVptkTzldXTUpNtjkzXMxBTQxoB+JYsGPEQ3Y
47FHZE/cBgLDBVyCWSsFW3nuH/eZBjff5YBpmMbNMPUetb5e/+etvg5l/JlWwOzs
RzoX1wtoKVt3EH8sjDUdw6KM8ycuFUDyl5SZBl2ODpobVjRbUThMOAMy0QN4ItkA
b1SPczwoEiYxMdJLkaPvZz7QDLRbW1ikMfZuNaVRtY7rAKhdAtTSemfaZb1v4srE
JNpbP+g86RFEMy7vV+ziyJgZoxNdmZw3MtAjZew5oDdVkXJb4YTRxBETCUx0YslS
DIarFXcV447dARmw8W8bg7GcifBJ/Z7RudyfWfFv3I9NkIDX0CAcS4hBL9FYdrdr
4qOYVpPZL4bIUfJC/sY0DErL7Zkc3PfQ5CaIAWl6NCCejGAhI2p75miS41XNt+G6
BeoQgp336pVckUpKygQR8kaxYTQbrnd/yJ8F9akV4Hw7rPRdV1dGtp7JZJK+yREE
G+eGiWnJ
=jo19
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: