Your message dated Tue, 23 Sep 2025 07:20:13 +0000
with message-id <[email protected]>
and subject line Bug#1096520: fixed in dhex 0.69-4.1
has caused the Debian Bug report #1096520,
regarding dhex: 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.)
--
1096520: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1096520
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:dhex
Version: 0.69-4
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/dhex_0.69-4_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
[...]
dh_clean
debian/rules binary
dh binary
dh_update_autotools_config
dh_autoreconf
dh_auto_configure
dh_auto_build
make -j8 "INSTALL=install --strip-program=true"
make[1]: Entering directory '/build/reproducible-path/dhex-0.69'
gcc buffers.c -c -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include
-I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -g
-O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/dhex-0.69=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g
-Wall
gcc configfile.c -c -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include
-I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -g
-O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/dhex-0.69=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g
-Wall
gcc correlation.c -c -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include
-I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -g
-O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/dhex-0.69=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g
-Wall
gcc gpl.c -c -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include
-I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -g
-O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/dhex-0.69=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g
-Wall
gcc hexcalc.c -c -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include
-I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -g
-O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/dhex-0.69=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g
-Wall
gcc input.c -c -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include
-I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -g
-O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/dhex-0.69=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g
-Wall
gcc machine_type.c -c -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include
-I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -g
-O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/dhex-0.69=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g
-Wall
gcc main.c -c -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include
-I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -g
-O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/dhex-0.69=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g
-Wall
hexcalc.c: In function ‘hexcalc’:
hexcalc.c:85:95: warning: format ‘%i’ expects argument of type ‘int’, but
argument 5 has type ‘tUInt64’ {aka ‘long long unsigned int’} [-Wformat=]
85 | if (x || !j)
mvwprintw(output->win,offsy+18-i,offsx+76-j,"%i",(x&1));
|
~^ ~~~~~
|
| |
|
int tUInt64 {aka long long unsigned int}
|
%lli
hexcalc.c:99:85: warning: format ‘%i’ expects argument of type ‘int’, but
argument 5 has type ‘tUInt64’ {aka ‘long long unsigned int’} [-Wformat=]
99 | if (x || !j)
mvwprintw(output->win,offsy+19,offsx+76-j,"%i",(x&1));
|
~^ ~~~~~
|
| |
|
int tUInt64 {aka long long unsigned int}
|
%lli
correlation.c: In function ‘find_longestmatch’:
correlation.c:30:60: warning: format ‘%lli’ expects argument of type ‘long long
int’, but argument 5 has type ‘int’ [-Wformat=]
30 | if (smallwin) mvwprintw(smallwin,4,1,"%18lli",0);
| ~~~~~^ ~
| | |
| | int
| long long int
| %18i
correlation.c: In function ‘find_bestmatch’:
correlation.c:118:60: warning: format ‘%lli’ expects argument of type ‘long
long int’, but argument 5 has type ‘int’ [-Wformat=]
118 | if (smallwin) mvwprintw(smallwin,4,1,"%18lli",0);
| ~~~~~^ ~
| | |
| | int
| long long int
| %18i
main.c: In function ‘main’:
main.c:412:9: error: too many arguments to function ‘initcolors’; expected 0,
have 1
412 | initcolors(output);
| ^~~~~~~~~~ ~~~~~~
In file included from menu.h:6,
from main.c:9:
output.h:10:6: note: declared here
10 | void initcolors();
| ^~~~~~~~~~
gcc markers.c -c -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include
-I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -g
-O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/dhex-0.69=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g
-Wall
make[1]: *** [Makefile:38: main.o] Error 1
make[1]: *** Waiting for unfinished jobs....
markers.c: In function ‘gotomask’:
markers.c:172:72: warning: format ‘%llx’ expects argument of type ‘long long
unsigned int’, but argument 5 has type ‘int’ [-Wformat=]
172 |
mvwprintw(output->win,offsy+5+i,offsx+42,"%16llx",abs(markers->cursorpos[i]-actcursorpos));
|
~~~~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| |
|
| int
|
long long unsigned int
| %16x
make[1]: Leaving directory '/build/reproducible-path/dhex-0.69'
dh_auto_build: error: make -j8 "INSTALL=install --strip-program=true" returned
exit code 2
make: *** [debian/rules:7: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: dhex
Source-Version: 0.69-4.1
Done: Adrian Bunk <[email protected]>
We believe that the bug you reported is fixed in the latest version of
dhex, 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.
Adrian Bunk <[email protected]> (supplier of updated dhex 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: Mon, 22 Sep 2025 14:22:56 +0300
Source: dhex
Architecture: source
Version: 0.69-4.1
Distribution: unstable
Urgency: medium
Maintainer: Fabio Augusto De Muzio Tobich <[email protected]>
Changed-By: Adrian Bunk <[email protected]>
Closes: 1096520
Changes:
dhex (0.69-4.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Fix FTBFS with GCC 15. (Closes: #1096520)
Checksums-Sha1:
9c1184c56f5532efbb009540056553917fb23a98 1829 dhex_0.69-4.1.dsc
90c0850c634db7497f8e0e52cc515edc1302e09c 7308 dhex_0.69-4.1.debian.tar.xz
Checksums-Sha256:
67d0f60c99cdfbcd007a6ffd3a36a660d86ca0ddb19337c43b411d598473ac59 1829
dhex_0.69-4.1.dsc
fc8dfe4751d98ece68925871e8b7eb14a1d9264bc12821780f1d1a79e28472a1 7308
dhex_0.69-4.1.debian.tar.xz
Files:
70b5e66dfe339b8625b1a86e9d0563e3 1829 editors optional dhex_0.69-4.1.dsc
5d16074c09f30381b6fc22063846d603 7308 editors optional
dhex_0.69-4.1.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEOvp1f6xuoR0v9F3wiNJCh6LYmLEFAmjRMmgACgkQiNJCh6LY
mLGa/xAApp158Gu3I3TYwbXTLPsdghQOlpsq7wZOFFbB19x3JTGey6YgSciNpmMw
VTS+RAKL1lRkBkN8cTTsby6GOeSOT9Xp5894Mt2HOJrt3hcOwJ6kV2qgjIIRUzUo
vY29SUNRKyAsOSNzp/5bJqsGav2un2uRjc0YaA0cN/ge158gKp7WUJyAqoq1QCQ8
VzEgmCE956UJ1rluSfk+1X5OizGGgIAZmNgOvrpty5qkhRL+khtwWLIUWb2X53mv
vD4rhB8AlEhSCm5HA46vsQS1o9MLrKl679xeO2MBk96l4MUZ81dePAkNXXxp/tnD
Q7p9ruRPJreEx5TPFZ0HNnEXOCatD0/tuw9yA6q/T+e6oz6n7B3B3ES263yxzRyw
ZgIoaMV/QKRxOCrqJ9F7AV4E4T3r+tvS1MEKiQu6v+HmBXBPFUFMeX/N9u2UTC4J
/clQOjSj/scO1Kx6qTCnl0UNXrtkCClOWez4gg6rMz+SPOSqx/JtwLTrMBaA3uJL
yju83wpfldkovB7pdgQtk+Geh2Z1lP+9Em07EcHKbKP8jnl/YQFLcr2hHYEGCiv7
PC2o/v+C5ckeo6y6O2ASfvugokfXuHIRr8nRIXovIZz5FJRrUjupkdv3s9zFnvQD
gu9qZWlonGsQBuvb+xhDac8qwHDbc2TpjClrp5kxakiteqxruRU=
=mFLY
-----END PGP SIGNATURE-----
pgpgy5sWx5oxD.pgp
Description: PGP signature
--- End Message ---