Your message dated Sun, 07 Sep 2025 12:19:04 +0000
with message-id <[email protected]>
and subject line Bug#1096680: fixed in gbdfed 1.6-6
has caused the Debian Bug report #1096680,
regarding gbdfed: 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.)


-- 
1096680: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1096680
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:gbdfed
Version: 1.6-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/gbdfed_1.6-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

[...]
      |                            ^~~~~
bdf.c: In function ‘_bdf_eight_to_four’:
bdf.c:4809:28: warning: variable ‘masks’ set but not used 
[-Wunused-but-set-variable]
 4809 |     unsigned char *nbmap, *masks;
      |                            ^~~~~
bdfgrid.c: In function ‘bdf_grid_shear’:
bdfgrid.c:1871:15: warning: variable ‘cy’ set but not used 
[-Wunused-but-set-variable]
 1871 |     short cx, cy, wd, ht, gx, gy, x, y;
      |               ^~
bdfgrid.c:1871:11: warning: variable ‘cx’ set but not used 
[-Wunused-but-set-variable]
 1871 |     short cx, cy, wd, ht, gx, gy, x, y;
      |           ^~
bdf.c: In function ‘_bdf_parse_hbf_header’:
bdf.c:921:16: warning: ‘FONT_ASCENT property missing...’ directive writing 50 
bytes into a region of size 24 [-Wformat-overflow=]
  921 | #define ACMSG1 "FONT_ASCENT property missing.  Added \"FONT_ASCENT 
%hd\"."
      |                
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bdf.c:2228:31: note: in expansion of macro ‘ACMSG1’
 2228 |                 sprintf(nbuf, ACMSG1, p->font->bbx.ascent);
      |                               ^~~~~~
bdf.c:921:41: note: format string is defined here
  921 | #define ACMSG1 "FONT_ASCENT property missing.  Added \"FONT_ASCENT 
%hd\"."
      |                 ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
bdf.c:921:16: note: using the range [-32768, 32767] for directive argument
  921 | #define ACMSG1 "FONT_ASCENT property missing.  Added \"FONT_ASCENT 
%hd\"."
      |                
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bdf.c:2228:31: note: in expansion of macro ‘ACMSG1’
 2228 |                 sprintf(nbuf, ACMSG1, p->font->bbx.ascent);
      |                               ^~~~~~
In file included from /usr/include/stdio.h:970,
                 from bdf.h:25,
                 from bdfP.h:25,
                 from bdf.c:22:
In function ‘sprintf’,
    inlined from ‘_bdf_parse_hbf_header’ at bdf.c:2228:17:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note: 
‘__builtin___sprintf_chk’ output between 54 and 59 bytes into a destination of 
size 24
   30 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   31 |                                   __glibc_objsize (__s), __fmt,
      |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   32 |                                   __va_arg_pack ());
      |                                   ~~~~~~~~~~~~~~~~~
bdf.c: In function ‘_bdf_parse_hbf_header’:
bdf.c:922:16: warning: ‘FONT_DESCENT property missin...’ directive writing 52 
bytes into a region of size 24 [-Wformat-overflow=]
  922 | #define ACMSG2 "FONT_DESCENT property missing.  Added \"FONT_DESCENT 
%hd\"."
      |                
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bdf.c:2236:31: note: in expansion of macro ‘ACMSG2’
 2236 |                 sprintf(nbuf, ACMSG2, p->font->bbx.descent);
      |                               ^~~~~~
bdf.c:922:41: note: format string is defined here
  922 | #define ACMSG2 "FONT_DESCENT property missing.  Added \"FONT_DESCENT 
%hd\"."
      |                 ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bdf.c:922:16: note: using the range [-32768, 32767] for directive argument
  922 | #define ACMSG2 "FONT_DESCENT property missing.  Added \"FONT_DESCENT 
%hd\"."
      |                
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bdf.c:2236:31: note: in expansion of macro ‘ACMSG2’
 2236 |                 sprintf(nbuf, ACMSG2, p->font->bbx.descent);
      |                               ^~~~~~
In function ‘sprintf’,
    inlined from ‘_bdf_parse_hbf_header’ at bdf.c:2236:17:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note: 
‘__builtin___sprintf_chk’ output between 56 and 61 bytes into a destination of 
size 24
   30 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   31 |                                   __glibc_objsize (__s), __fmt,
      |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   32 |                                   __va_arg_pack ());
      |                                   ~~~~~~~~~~~~~~~~~
make[1]: Leaving directory '/build/reproducible-path/gbdfed-1.6'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:4: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: gbdfed
Source-Version: 1.6-6
Done: Andrej Shadura <[email protected]>

We believe that the bug you reported is fixed in the latest version of
gbdfed, 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.
Andrej Shadura <[email protected]> (supplier of updated gbdfed 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: Sun, 07 Sep 2025 14:09:41 +0200
Source: gbdfed
Architecture: source
Version: 1.6-6
Distribution: unstable
Urgency: medium
Maintainer: Andrej Shadura <[email protected]>
Changed-By: Andrej Shadura <[email protected]>
Closes: 1096680
Changes:
 gbdfed (1.6-6) unstable; urgency=medium
 .
   * Add patches for GCC 15/C23 compatibility (Closes: #1096680).
Checksums-Sha1:
 790763e62d73c4574efb0d8a5241aa01e8d51f87 1333 gbdfed_1.6-6.dsc
 0c20cd6fb7cba8fc8d10dab0add93a8107894c75 6832 gbdfed_1.6-6.debian.tar.xz
Checksums-Sha256:
 4ee1a58dbfdad15148496808a4d6dae600365141d6bdd18c7ca638e33b17887d 1333 
gbdfed_1.6-6.dsc
 f9ce92a83944a3c4382d7fac8d6616e6a38fd0ff1c42f25f7744f49d78d76b38 6832 
gbdfed_1.6-6.debian.tar.xz
Files:
 7c1c95ca3b1d2162d5b06cf22e4c165a 1333 x11 optional gbdfed_1.6-6.dsc
 ad20928f85cc5ddbcde011f4cfba3365 6832 x11 optional gbdfed_1.6-6.debian.tar.xz

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

iHUEARYKAB0WIQSD3NF/RLIsyDZW7aHoRGtKyMdyYQUCaL12WgAKCRDoRGtKyMdy
Yca8AQCRTL350YZuSIgEj++WHBFEJ+F/VO2Ftin+cTkeWdu0oQEAtn5y4I7BYp0C
OF3va1LA7MGMR+oFKe+mTvWS7aED3w0=
=dHCq
-----END PGP SIGNATURE-----

Attachment: pgp7cqDAVNNBu.pgp
Description: PGP signature


--- End Message ---

Reply via email to