Your message dated Thu, 04 Mar 2021 19:36:39 +0000
with message-id <[email protected]>
and subject line Bug#984412: fixed in xc3sprog 0+svn795+dfsg-4
has caused the Debian Bug report #984412,
regarding xc3sprog: 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.)


-- 
984412: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=984412
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:xc3sprog
Version: 0+svn795+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/xc3sprog_0+svn795+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.

[...]
      |                                             ^
/<<PKGBUILDDIR>>/bitfile.cpp: In member function ‘void 
BitFile::readField(std::string&, FILE*)’:
/<<PKGBUILDDIR>>/bitfile.cpp:619:3: error: reference to ‘byte’ is ambiguous
  619 |   byte t[2];
      |   ^~~~
In file included from /usr/include/c++/11/bits/stl_algobase.h:61,
                 from /usr/include/c++/11/bits/char_traits.h:39,
                 from /usr/include/c++/11/string:40,
                 from /<<PKGBUILDDIR>>/bitfile.h:25,
                 from /<<PKGBUILDDIR>>/bitfile.cpp:26:
/usr/include/c++/11/bits/cpp_type_traits.h:404:30: note: candidates are: ‘enum 
class std::byte’
  404 |   enum class byte : unsigned char;
      |                              ^~~~
In file included from /<<PKGBUILDDIR>>/bitfile.cpp:26:
/<<PKGBUILDDIR>>/bitfile.h:73:23: note:                 ‘typedef unsigned char 
byte’
   73 | typedef unsigned char byte;
      |                       ^~~~
/<<PKGBUILDDIR>>/bitfile.cpp:620:9: error: ‘t’ was not declared in this scope; 
did you mean ‘tm’?
  620 |   fread(t,1,2,fp);
      |         ^
      |         tm
/<<PKGBUILDDIR>>/bitfile.cpp:623:5: error: reference to ‘byte’ is ambiguous
  623 |     byte b;
      |     ^~~~
In file included from /usr/include/c++/11/bits/stl_algobase.h:61,
                 from /usr/include/c++/11/bits/char_traits.h:39,
                 from /usr/include/c++/11/string:40,
                 from /<<PKGBUILDDIR>>/bitfile.h:25,
                 from /<<PKGBUILDDIR>>/bitfile.cpp:26:
/usr/include/c++/11/bits/cpp_type_traits.h:404:30: note: candidates are: ‘enum 
class std::byte’
  404 |   enum class byte : unsigned char;
      |                              ^~~~
In file included from /<<PKGBUILDDIR>>/bitfile.cpp:26:
/<<PKGBUILDDIR>>/bitfile.h:73:23: note:                 ‘typedef unsigned char 
byte’
   73 | typedef unsigned char byte;
      |                       ^~~~
/<<PKGBUILDDIR>>/bitfile.cpp:624:12: error: ‘b’ was not declared in this scope
  624 |     fread(&b,1,1,fp);
      |            ^
/<<PKGBUILDDIR>>/bitfile.cpp: In member function ‘int 
BitFile::readBitfile(FILE*)’:
/<<PKGBUILDDIR>>/bitfile.cpp:55:12: warning: ignoring return value of ‘size_t 
fread(void*, size_t, size_t, FILE*)’ declared with attribute 
‘warn_unused_result’ [-Wunused-result]
   55 |       fread(hdr, 1, 13, fp); // 13 byte header
      |       ~~~~~^~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/bitfile.cpp:63:12: warning: ignoring return value of ‘size_t 
fread(void*, size_t, size_t, FILE*)’ declared with attribute 
‘warn_unused_result’ [-Wunused-result]
   63 |       fread(&key, 1, 1, fp);
      |       ~~~~~^~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/bitfile.cpp: In member function ‘int BitFile::readBIN(FILE*, 
bool)’:
/<<PKGBUILDDIR>>/bitfile.cpp:102:10: warning: ignoring return value of ‘size_t 
fread(void*, size_t, size_t, FILE*)’ declared with attribute 
‘warn_unused_result’ [-Wunused-result]
  102 |     fread(buffer,1, length, fp);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~
make[3]: *** [CMakeFiles/xc3sproglib.dir/build.make:158: 
CMakeFiles/xc3sproglib.dir/bitfile.cpp.o] Error 1
make[3]: *** Waiting for unfinished jobs....
In file included from /<<PKGBUILDDIR>>/iobase.cpp:33:
/<<PKGBUILDDIR>>/utilities.h:14:16: warning: ‘template<class> class 
std::auto_ptr’ is deprecated: use 'std::unique_ptr' instead 
[-Wdeprecated-declarations]
   14 | int getIO(std::auto_ptr<IOBase> *io, struct cable_t*,
      |                ^~~~~~~~
In file included from /usr/include/c++/11/memory:76,
                 from /<<PKGBUILDDIR>>/utilities.h:2,
                 from /<<PKGBUILDDIR>>/iobase.cpp:33:
/usr/include/c++/11/bits/unique_ptr.h:57:28: note: declared here
   57 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
make[3]: Leaving directory '/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu'
make[2]: *** [CMakeFiles/Makefile2:236: CMakeFiles/xc3sproglib.dir/all] Error 2
make[2]: Leaving directory '/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu'
make[1]: *** [Makefile:174: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu'
dh_auto_build: error: cd obj-x86_64-linux-gnu && make -j4 "INSTALL=install 
--strip-program=true" VERBOSE=1 returned exit code 2
make: *** [debian/rules:6: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: xc3sprog
Source-Version: 0+svn795+dfsg-4
Done: Ricardo Ribalda Delgado <[email protected]>

We believe that the bug you reported is fixed in the latest version of
xc3sprog, 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.
Ricardo Ribalda Delgado <[email protected]> (supplier of updated xc3sprog 
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: SHA256

Format: 1.8
Date: Thu, 04 Mar 2021 19:48:47 +0100
Source: xc3sprog
Architecture: source
Version: 0+svn795+dfsg-4
Distribution: unstable
Urgency: medium
Maintainer: Ricardo Ribalda Delgado <[email protected]>
Changed-By: Ricardo Ribalda Delgado <[email protected]>
Closes: 984412
Changes:
 xc3sprog (0+svn795+dfsg-4) unstable; urgency=medium
 .
   * Fix build with gcc-11 (Closes: #984412)
Checksums-Sha1:
 ba30a595d4c30cc97a0b65219845839bf533d22c 1982 xc3sprog_0+svn795+dfsg-4.dsc
 748fbe3b43440bbbfc40f8f8a9f5f6ac8ec91491 5048 
xc3sprog_0+svn795+dfsg-4.debian.tar.xz
 a5603109fdde5bfa3b0dbd7e42a75bd8e9cd934f 8010 
xc3sprog_0+svn795+dfsg-4_amd64.buildinfo
Checksums-Sha256:
 0d228ec8852b4af76ca2671ade6c67ee76fcd072ca77fece94ae33a008947571 1982 
xc3sprog_0+svn795+dfsg-4.dsc
 3a533c669f26a5796acbed6e6f7e1e4c28f0d76cb4f362c17f56ab6860ced36c 5048 
xc3sprog_0+svn795+dfsg-4.debian.tar.xz
 c5419fb62af35120f781fb85178fccab0705ec8040185f17a0545dc88586535b 8010 
xc3sprog_0+svn795+dfsg-4_amd64.buildinfo
Files:
 57cea09053645020093956caa5ed3969 1982 electronics optional 
xc3sprog_0+svn795+dfsg-4.dsc
 0fa57287c167b7a4972652029329fcb7 5048 electronics optional 
xc3sprog_0+svn795+dfsg-4.debian.tar.xz
 a12978d5785167a45dca0d7aac3d5428 8010 electronics optional 
xc3sprog_0+svn795+dfsg-4_amd64.buildinfo

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

iQJIBAEBCAAyFiEERA846/v+KAgy0rMe0TfRPs86xIgFAmBBMwsUHHJpY2FyZG9A
cmliYWxkYS5jb20ACgkQ0TfRPs86xIiuVBAAp14lQwseIABwKUKIdv3VznjGcnlT
E4YrGaIpD1cJRUMrGBRrCN4UG/Zloby1XZoscq7szoLOm/rrkLeC0NLo1KilnjEJ
z4thKd60kLNhufrY2Js7LIIBq36jGYnJO42O8gwerxdCypH4hBOliLrR+aV/8fhU
/wrw3W5XT2DkNVZMQYoO/oxSdex/PJ6z07m9GzZ2eem5ibZcfeRYHWf3B7Tqzazg
aJ8SWrXeg7MKvpjnXx3qa0NM5wt6SNnf08AqxHMCaqw3VecGcmi2xviSmQxBL6zW
7g5lML1FyCSZLBQCd/Fr8aZHrkyN7vaijLgSY0zEmH1uRMDsRu5iCNI+PMOMOU8B
jdA+o6Hn2TL/RazyiPq+HdySBkymT4yQx2A/OfOWKdPtNK+B7488LyCdeRSuTsGV
jzjR/5JDrQ5oIZsmdZUTfAQD6YA8HU/njDOOSK8t1f9olyPBvaUWA7frBrz1n4Al
utjMfeHQvVQDg9IPlqZ4RrGDl/CjUlGtlZ1wcKpLHw6BFmLIHWb4qkL/y29gh1/A
mY1Lprj8eY/p0+6VjXaZVYIC8UBdRgLEaUz+lgwEaZoEN6a5c8iKM8QydbzF3Ybe
45XlThQr22mGQPKNMM4NNYYkXEfD6jNrXzQSrCqdHAtzQ1AHqZo87sn+yZzcjdBb
etsHcB7w/4VyYWY=
=Evub
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to