Your message dated Tue, 19 Aug 2025 11:19:53 +0000
with message-id <[email protected]>
and subject line Bug#1098204: fixed in zxcvbn-c 2.6+dfsg-1
has caused the Debian Bug report #1098204,
regarding zxcvbn-c: ftbfs with GCC-15
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.)


-- 
1098204: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1098204
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:zxcvbn-c
Version: 2.5+dfsg-2
Severity: important
Tags: sid forky
User: [email protected]
Usertags: ftbfs-gcc-15

[This bug is NOT targeted to the upcoming trixie 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-15/g++-15, but succeeds to build with gcc-14/g++-14. The
severity of this report will be raised before the forky release.

The full build log can be found at:
http://qa-logs.debian.net/2025/02/16/amd64exp/zxcvbn-c_2.5+dfsg-2_unstable_gccexp.log.gz
The last lines of the build log are at the end of this report.

To build with GCC 15, either set CC=gcc-15 CXX=g++-15 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

GCC 15 now defaults to the C23/C++23 standards, exposing many FTBFS.
Other 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-15/porting_to.html

[...]
dict-generate.cpp:1131:20: error: ‘Check_t’ is not a member of ‘TrieCheck’
 1131 |         TrieCheck::Check_t x = h.Result();
      |                    ^~~~~~~
dict-generate.cpp:1133:64: error: ‘x’ was not declared in this scope
 1133 |         f << "static const unsigned char WordCheck[" << sizeof x << "] 
=\n{\n    ";
      |                                                                ^
dict-generate.cpp: In function ‘int OutputCode(std::ostream*, bool, const 
std::string&, StringIntSet_t&, NodeSPtr&, StringOfInts&, Uint64Vect&, 
UintVect&, StringIntVect_t&)’:
dict-generate.cpp:1192:64: error: request for member ‘size’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1192 |             "static const unsigned int DictNodes[" << NodeData.size() 
<< "] =\n{";
      |                                                                ^~~~
dict-generate.cpp:1193:27: error: request for member ‘size’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1193 |     OutputSize = NodeData.size() * sizeof(unsigned int);
      |                           ^~~~
dict-generate.cpp:1196:37: error: request for member ‘size’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1196 |     for(Index = 0; Index < NodeData.size(); ++Index)
      |                                     ^~~~
dict-generate.cpp:1198:9: error: ‘uint64_t’ was not declared in this scope
 1198 |         uint64_t v;
      |         ^~~~~~~~
dict-generate.cpp:1198:9: note: ‘uint64_t’ is defined in header ‘<cstdint>’; 
this is probably fixable by adding ‘#include <cstdint>’
dict-generate.cpp:1205:9: error: ‘v’ was not declared in this scope
 1205 |         v = NodeData[Index];
      |         ^
dict-generate.cpp:1205:21: error: invalid types ‘Uint64Vect {aka int}[unsigned 
int]’ for array subscript
 1205 |         v = NodeData[Index];
      |                     ^
dict-generate.cpp:1209:21: error: expected ‘;’ before ‘i’
 1209 |             uint64_t i;
      |                     ^~
      |                     ;
dict-generate.cpp:1210:13: error: ‘i’ was not declared in this scope
 1210 |             i = (v >> SHIFT_WORD_ENDING_BIT) & 3;
      |             ^
dict-generate.cpp:1220:35: error: request for member ‘size’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1220 |             if (Index < (NodeData.size()-1))
      |                                   ^~~~
dict-generate.cpp:1231:35: error: request for member ‘size’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1231 |             if (Index < (NodeData.size()-1))
      |                                   ^~~~
dict-generate.cpp:1245:54: error: invalid types ‘Uint64Vect {aka int}[unsigned 
int]’ for array subscript
 1245 |         if ((FewEndStart >= 2000000000) && !(NodeData[Index] & 
(uint64_t(1) << SHIFT_LARGE_ENDING_BIT)))
      |                                                      ^
dict-generate.cpp:1249:35: error: request for member ‘size’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1249 |     unsigned int Len = ((NodeData.size() + 7) / 8);
      |                                   ^~~~
dict-generate.cpp:1259:30: error: request for member ‘size’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1259 |         if (Index < NodeData.size())
      |                              ^~~~
dict-generate.cpp:1261:25: error: invalid types ‘Uint64Vect {aka int}[unsigned 
int]’ for array subscript
 1261 |             if (NodeData[Index] & (uint64_t(1) << 
SHIFT_WORD_ENDING_BIT))
      |                         ^
dict-generate.cpp:1261:36: error: ‘uint64_t’ was not declared in this scope
 1261 |             if (NodeData[Index] & (uint64_t(1) << 
SHIFT_WORD_ENDING_BIT))
      |                                    ^~~~~~~~
dict-generate.cpp:1261:36: note: ‘uint64_t’ is defined in header ‘<cstdint>’; 
this is probably fixable by adding ‘#include <cstdint>’
dict-generate.cpp:1287:18: error: request for member ‘size’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1287 |     if (NodeData.size() > numeric_limits<unsigned short>::max())
      |                  ^~~~
dict-generate.cpp: In function ‘int main(int, char**)’:
dict-generate.cpp:1739:18: error: request for member ‘resize’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1739 |         NodeData.resize(NumNodes, 4000000000);
      |                  ^~~~~~
dict-generate.cpp:1744:57: error: request for member ‘size’ in ‘NodeData’, 
which is of non-class type ‘Uint64Vect’ {aka ‘int’}
 1744 |             cout << "Node data array size " << NodeData.size() << endl;
      |                                                         ^~~~
make[1]: *** [makefile:68: dictgen] Error 1
make[1]: Leaving directory '/build/reproducible-path/zxcvbn-c-2.5+dfsg'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:12: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: zxcvbn-c
Source-Version: 2.6+dfsg-1
Done: Sean Whitton <[email protected]>

We believe that the bug you reported is fixed in the latest version of
zxcvbn-c, 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.
Sean Whitton <[email protected]> (supplier of updated zxcvbn-c 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: SHA512

Format: 1.8
Date: Tue, 19 Aug 2025 12:13:30 +0100
Source: zxcvbn-c
Architecture: source
Version: 2.6+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Sean Whitton <[email protected]>
Changed-By: Sean Whitton <[email protected]>
Closes: 1098204
Changes:
 zxcvbn-c (2.6+dfsg-1) unstable; urgency=medium
 .
   * New upstream release (Closes: #1098204).
Checksums-Sha1:
 60fd776d4636431c96d3c78eeb583f5dc93cf454 2036 zxcvbn-c_2.6+dfsg-1.dsc
 7f6cece9429b32c41a4e75cd6907336129c4dd2f 945924 zxcvbn-c_2.6+dfsg.orig.tar.xz
 55aad90c56bbd605780a2b6b79b9f62d82ec308a 432936 
zxcvbn-c_2.6+dfsg-1.debian.tar.xz
Checksums-Sha256:
 40ec1bd6444c19f6190b2079e8318d061e436e239d2329870139805490fd8a90 2036 
zxcvbn-c_2.6+dfsg-1.dsc
 8d430d273c13da623ecb048b06cb4dd585487be54a1fb89a1f1179c36dd02c58 945924 
zxcvbn-c_2.6+dfsg.orig.tar.xz
 baf6a7d7ca0f2ea5ccac3fdb0e1aa82d97fb842253eae6d71e1b6d42c91a3d63 432936 
zxcvbn-c_2.6+dfsg-1.debian.tar.xz
Files:
 266993869acdd1bcaafad3907d3a1b49 2036 libs optional zxcvbn-c_2.6+dfsg-1.dsc
 9c0904aca4d22e4db536bf95504eb91f 945924 libs optional 
zxcvbn-c_2.6+dfsg.orig.tar.xz
 9c6cf89e9b83526f700830640ee124cf 432936 libs optional 
zxcvbn-c_2.6+dfsg-1.debian.tar.xz

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

iQIzBAEBCgAdFiEEm5FwB64DDjbk/CSLaVt65L8GYkAFAmikXKQACgkQaVt65L8G
YkBXtg/8CI0dsKWKTJeWdPTjbEasw3os4P66VlqJQV0HWBbdYx6VIgERKKYFVG5b
mGZXKK03jIaMxTuVsna9ekOTn0OUd78LZlrS1wYwJeTCuU2U6+iRDyCu20Y/fLDP
LtfEbWCou1nNDcx7UyYqoUDgJVCnD1YOp/FwdV/I9h4iW4O6TwJ+PFZLCIDWVFY6
bSTJ9pv0sjRZdCpRpadb6VY4jt7zEWGWWk8ZKOji600rpHc1a45XO2l96GNBR0IY
9/ZYxf4YQBACaBH5sr7cYms25LyNJEl2B8A9LRkXBc44xWX5q6HTbguPkl/NAHFi
XgbMkFO+gx7e4WHIe+K+8PCscL3xWzxBD9kBEhZ7jb7h5OX+AdrlLlWvg1AYNm//
ghSrEGStncYX9cL8YYKMz/YCiICDf3N+2hgJxYlX8W3YC0gJTRzuz4raMHp2CEq8
3ibki9O2I34skrtnEe/58aa5aVecG7DrG1aOQUkMZ8oADJ7SK69FEbdfRB0Ocgul
DR0utVsY+oC/PDjT9awmMhJanZt6reV0t5cqz5vj1u2v+ZyONOf1avtxEzeK2do5
xq0JqgdbgHGTpgtetykC9FNuEXgVwTu5NtSDEI6j5ArecUqMVFTqO0C3Rx8UIV3q
LGMpf6whA/lPu4TACMRNfFonj7TZaJgrNGj9A3Tk+GY1Zz81cl4=
=Gw56
-----END PGP SIGNATURE-----

Attachment: pgpOoI0cxLqD_.pgp
Description: PGP signature


--- End Message ---

Reply via email to