Your message dated Tue, 09 Sep 2025 03:45:32 +0000
with message-id <[email protected]>
and subject line Bug#1097785: fixed in regina-rexx 3.9.5+dfsg1-0.2
has caused the Debian Bug report #1097785,
regarding regina-rexx: 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.)
--
1097785: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097785
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:regina-rexx
Version: 3.9.5+dfsg1-0.1
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/regina-rexx_3.9.5+dfsg1-0.1_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
[...]
./builtin.c:1280:24: warning: ‘%d’ directive writing between 1 and 11 bytes
into a region of size 4 [-Wformat-overflow=]
1280 | answer->len = sprintf( answer->value, "%d", tmdata.tm_yday + 1
);
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./builtin.c:1280:24: note: directive argument in the range [-2147483647,
2147483647]
In function ‘sprintf’,
inlined from ‘__regina_std_date’ at ./builtin.c:1280:24:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note:
‘__builtin___sprintf_chk’ output between 2 and 12 bytes into a destination of
size 4
30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), __fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 | __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
./builtin.c: In function ‘__regina_std_date’:
./builtin.c:1277:24: warning: ‘%d’ directive writing between 1 and 11 bytes
into a region of size 4 [-Wformat-overflow=]
1277 | answer->len = sprintf( answer->value, "%d", length-basedays(
(tmdata.tm_year/100)*100)+1 ); /* bja */
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./builtin.c:1277:24: note: directive argument in the range [-2147483647,
2147483647]
In function ‘sprintf’,
inlined from ‘__regina_std_date’ at ./builtin.c:1277:24:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note:
‘__builtin___sprintf_chk’ output between 2 and 12 bytes into a destination of
size 4
30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), __fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 | __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
x86_64-linux-gnu-gcc -DNDEBUG -g -O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/regina-rexx-3.9.5+dfsg1=.
-fstack-protector-strong -fstack-clash-protection -Wformat
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2
-DREGINA_SHARE_DIRECTORY=\"/usr/share/regina-rexx\" -funsigned-char
-DREGINA_VERSION_DATE=\""25 Jun 2022"\" -DREGINA_VERSION_MAJOR=\"3\"
-DREGINA_VERSION_MINOR=\"9\" -DREGINA_VERSION_RELEASE=\"5\"
-DREGINA_VERSION_SUPP=\"\" -DREGINA_BITS=64 -DHAVE_CONFIG_H -DHAVE_GCI -I./gci
-I. -I. -I./contrib -o error.o -c ./error.c
./error.c: In function ‘get_message_indexes’:
./error.c:994:27: warning: ‘Unsupported native language .’ directive writing 29
bytes into a region of size 4 [-Wformat-overflow=]
994 | Str_len( err ) = sprintf( err->value, "Unsupported native
language \"%.*s\"",
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
995 | len, ptr );
| ~~~~~~~~~~
./error.c:994:27: note: assuming directive output of 1 byte
In file included from /usr/include/stdio.h:970,
from ./rexx.h:222,
from ./error.c:20:
In function ‘sprintf’,
inlined from ‘get_message_indexes’ at ./error.c:994:27:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note:
‘__builtin___sprintf_chk’ output between 31 and 2147483678 bytes into a
destination of size 4
30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), __fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 | __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
./error.c: In function ‘__regina_exiterror’:
./error.c:811:30: warning: ‘%d’ directive writing between 1 and 11 bytes into a
region of size 4 [-Wformat-overflow=]
811 | et->errornum->len = sprintf( et->errornum->value, "%d",
-errorno );
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./error.c:811:30: note: directive argument in the range [-2147483647,
2147483647]
In function ‘sprintf’,
inlined from ‘__regina_exiterror’ at ./error.c:811:30:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note:
‘__builtin___sprintf_chk’ output between 2 and 12 bytes into a destination of
size 4
30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), __fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 | __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
x86_64-linux-gnu-gcc -DNDEBUG -g -O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/regina-rexx-3.9.5+dfsg1=.
-fstack-protector-strong -fstack-clash-protection -Wformat
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2
-DREGINA_SHARE_DIRECTORY=\"/usr/share/regina-rexx\" -funsigned-char
-DREGINA_VERSION_DATE=\""25 Jun 2022"\" -DREGINA_VERSION_MAJOR=\"3\"
-DREGINA_VERSION_MINOR=\"9\" -DREGINA_VERSION_RELEASE=\"5\"
-DREGINA_VERSION_SUPP=\"\" -DREGINA_BITS=64 -DHAVE_CONFIG_H -DHAVE_GCI -I./gci
-I. -I. -I./contrib -o variable.o -c ./variable.c
./variable.c: In function ‘assign_foliage’:
./variable.c:1497:12: error: expected identifier or ‘(’ before ‘nullptr’
1497 | streng *nullptr = NULL; /* allow REPLACE_VALUE macro to pass NULL
value under C++ */
| ^~~~~~~
make[1]: *** [Makefile:423: variable.o] Error 1
make[1]: Leaving directory '/build/reproducible-path/regina-rexx-3.9.5+dfsg1'
make: *** [debian/rules:59: build-stamp] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: regina-rexx
Source-Version: 3.9.5+dfsg1-0.2
Done: Agustin Martin Domingo <[email protected]>
We believe that the bug you reported is fixed in the latest version of
regina-rexx, 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.
Agustin Martin Domingo <[email protected]> (supplier of updated regina-rexx
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, 09 Sep 2025 00:24:02 +0200
Source: regina-rexx
Architecture: source
Version: 3.9.5+dfsg1-0.2
Distribution: unstable
Urgency: medium
Maintainer: Alen Zekulic <[email protected]>
Changed-By: Agustin Martin Domingo <[email protected]>
Closes: 1097785 1106995
Changes:
regina-rexx (3.9.5+dfsg1-0.2) unstable; urgency=medium
.
* Non-maintainer upload with maintainer approval.
* Fix FTBFS with C23 (Closes: #1097785).
- 2301_nullptr-c23-reserved-word.diff: nullptr is a reserved word in
C23. Use mynullptr instead.
- 2302_regutil_check-stdbool_h.diff: Use stdbool.h if available to
work around C23 boolean changes.
- 2303_use-cxx-va-ellipsis.diff: '()' is not allowed for variable
function arguments.
* debian/control: Add libcrypt-dev to Build-Depends (Closes: #1106995).
Thanks Helmut Grohne
* debian/control: Bump Standards-Version. No changes required.
* debian/copyright: Fix lintian old-fsf-address-in-copyright-file for
LGPL-2+ licenses.
Checksums-Sha1:
f38e65c430dac462e85a00210d75b1def6aa43cf 2057 regina-rexx_3.9.5+dfsg1-0.2.dsc
619c3fb03fd28360c1c1bb6948e62010e276a2f6 16264
regina-rexx_3.9.5+dfsg1-0.2.debian.tar.xz
9c3bbdc9ed849026573dafbcd2ce1a80ae099a96 7130
regina-rexx_3.9.5+dfsg1-0.2_amd64.buildinfo
Checksums-Sha256:
d972bd10e479a1f8d51923494bd9fdccf665db03b92c436e54bbb964ae75f0c4 2057
regina-rexx_3.9.5+dfsg1-0.2.dsc
1c0b8b438d36e9ea61ad36cef587d238c4de6a07bdff76c75cf0ec448f2f58a4 16264
regina-rexx_3.9.5+dfsg1-0.2.debian.tar.xz
10d2c599c744cd83852b7aa87bc6ce3c795304c358cfb1fc316fb84d3d86d40f 7130
regina-rexx_3.9.5+dfsg1-0.2_amd64.buildinfo
Files:
c40c848c6f6cefe718eedc033463c148 2057 libs optional
regina-rexx_3.9.5+dfsg1-0.2.dsc
0ecaf6e15b98e92ebc184bf4b6ef012b 16264 libs optional
regina-rexx_3.9.5+dfsg1-0.2.debian.tar.xz
2f233502f6449900c7029a85fd8c6880 7130 libs optional
regina-rexx_3.9.5+dfsg1-0.2_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEEehey7p+gYd346SEFJrCLeiggvwFAmi/W14ACgkQFJrCLeig
gvwRsg//Q6LWoQj1Jbkrpsf838p7Q169qvGTsqu/mtkq/YtcZfmXSy/fSGRYup+g
wOnNpMiMhmaq9s5O4jMBAWN39zNyjJdL4IamTJjUg4FhhmA030M82gkcuFWTWFxK
4mEvn9ku7Ydehf8OYj3xjJCUf8FGAe+WSeHQZkkuYLJodF2NouLOZqYf2QOpi2r6
GIwSGnXv9EZmFxe/WhKtyXbZbIdvX7joUTtzg1HNlBt6DsDSY420nv9jW+oR3rX3
mbdFg9fVf580BpbRqo8dgEaJRLmKqhKaHDHC5OL9uYERetzJxKlvXX25b/UerskW
KMbzY1ctKB9KnoEawRE4oe9ePIE9myXMc/ddS0wVyze/7xMpF4svM935eFssC+Q2
uZypM9CCH+QOFaDLkagnO2Al0zLd0Nfo6cN6D2ChCBhi8mF5pAz/id5N3toXaycz
ybV7a7ytck0Y/vR7ildpOMK/TCzcPZkcOaU+luzQ/B7lY+N7TgJVvkZbcerrs6XS
fBi1fS4h8/LklCnk52saWSapf0whtr0FzCNYgKBNjBRKG5lUV7UvXUS7kp+lStwD
WHbgPlNsL1vX9YSzSCBeg08IU8t8uitQxjRhtMd5I9Dx4t+KYLxhgVloM0Ws2X1B
NAxoxL3ISJjDuPEnngS35/Ltjjq0tYj7XqmYOXDBwJ03BMF3zpY=
=3Y0a
-----END PGP SIGNATURE-----
pgp9mSBh3lpqQ.pgp
Description: PGP signature
--- End Message ---