Your message dated Thu, 11 Dec 2025 08:23:27 +0000 with message-id <E1vTbxP-00CZ16-0y@fasolo.debian.org> and subject line Bug#1096706: fixed in giftrans 1.12.2-21 has caused the Debian Bug report #1096706, regarding giftrans: 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 owner@bugs.debian.org immediately.) -- 1096706: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1096706 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: maintonly@bugs.debian.org
- Subject: giftrans: ftbfs with GCC-15
- From: Matthias Klose <doko@debian.org>
- Date: Mon, 17 Feb 2025 17:15:43 +0000
- Message-id: <E1tk4id-009JPA-7C@paradis.debian.org>
Package: src:giftrans Version: 1.12.2-20 Severity: important Tags: sid forky User: debian-gcc@lists.debian.org 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/giftrans_1.12.2-20_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 [...] giftrans.c: In function ‘main’: giftrans.c:793:5: warning: old-style function definition [-Wold-style-definition] 793 | int main(argc,argv) | ^~~~ giftrans.c: In function ‘skipdata’: giftrans.c:293:23: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 293 | (void)fread((void *)&size,1,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:298:31: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 298 | (void)fread((void *)buffer,(size_t)size,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c: In function ‘transblock’: giftrans.c:314:15: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 314 | (void)fread((void *)&size,1,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:320:15: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 320 | (void)fread((void *)buffer,(size_t)size,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c: In function ‘dumpcomment’: giftrans.c:335:15: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 335 | (void)fread((void *)&size,1,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:338:15: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 338 | (void)fread((void *)buffer,(size_t)size,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c: In function ‘transdata’: giftrans.c:366:23: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 366 | (void)fread((void *)&size,1,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:372:23: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 372 | (void)fread((void *)buffer,(size_t)size,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c: In function ‘giftrans’: giftrans.c:392:15: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 392 | (void)fread((void *)buffer,6,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:411:15: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 411 | (void)fread((void *)lsd,7,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:434:23: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 434 | (void)fread((void *)gct,gct_size,3,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:492:23: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 492 | (void)fread((void *)buffer,1,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:497:31: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 497 | (void)fread((void *)(buffer+1),9,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:553:39: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 553 | (void)fread((void *)buffer,size,3,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:571:31: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 571 | (void)fread((void *)buffer,1,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:596:31: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 596 | (void)fread((void *)(buffer+1),1,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:617:39: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 617 | (void)fread((void *)(buffer+2),1,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:622:39: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 622 | (void)fread((void *)gce,size,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ giftrans.c:652:39: warning: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 652 | (void)fread((void *)buffer,1,1,src); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ make[1]: *** [debian/rules:11: override_dh_auto_build] Error 1 make[1]: Leaving directory '/build/reproducible-path/giftrans-1.12.2' make: *** [debian/rules:8: binary] Error 2 dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
- To: 1096706-close@bugs.debian.org
- Subject: Bug#1096706: fixed in giftrans 1.12.2-21
- From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>
- Date: Thu, 11 Dec 2025 08:23:27 +0000
- Message-id: <E1vTbxP-00CZ16-0y@fasolo.debian.org>
- Reply-to: Syed Shahrukh Hussain <syed.shahrukh@ossrevival.org>
Source: giftrans Source-Version: 1.12.2-21 Done: Syed Shahrukh Hussain <syed.shahrukh@ossrevival.org> We believe that the bug you reported is fixed in the latest version of giftrans, 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 1096706@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Syed Shahrukh Hussain <syed.shahrukh@ossrevival.org> (supplier of updated giftrans 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 ftpmaster@ftp-master.debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Wed, 10 Dec 2025 21:03:34 +0500 Source: giftrans Built-For-Profiles: noudeb Architecture: source Version: 1.12.2-21 Distribution: unstable Urgency: medium Maintainer: Debian QA Group <packages@qa.debian.org> Changed-By: Syed Shahrukh Hussain <syed.shahrukh@ossrevival.org> Closes: 1096706 Changes: giftrans (1.12.2-21) unstable; urgency=medium . * QA upload. * Added patch 33_fix_boolean_type.patch to fix build failure (Closes: #1096706). Checksums-Sha1: f35e54f1092cfb0a8f73115bd6d2f3a17e2346c6 1921 giftrans_1.12.2-21.dsc c7cb86439f5ed4bd41a35240bcd3c8ec8d8fbc93 8352 giftrans_1.12.2-21.debian.tar.xz 14f38e0bdb762e6402b8985c3457d90e3680579e 14915 giftrans_1.12.2-21_source.buildinfo Checksums-Sha256: 5b7acaea7bb7633cb2dd99b1d71b5d9b3e7bfac2ea66930aab38dbb6c5704695 1921 giftrans_1.12.2-21.dsc a705002b0020a6f02f79395d587a5508e10ec353108b8b93bc497eba79e01cae 8352 giftrans_1.12.2-21.debian.tar.xz 32a4241f26a1a126b040bb1bee22b6881812623aa5663fa3b934ef9afdf316b0 14915 giftrans_1.12.2-21_source.buildinfo Files: 2a3967d6f96776dbec940237a01f37ec 1921 graphics optional giftrans_1.12.2-21.dsc 4498800aaa78abd966434670156a7ed6 8352 graphics optional giftrans_1.12.2-21.debian.tar.xz f064e453215338a254479e938f7dc887 14915 graphics optional giftrans_1.12.2-21_source.buildinfo -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEd8lhnEnWos3N8v+qQoMEoXSNzHoFAmk6eP8ACgkQQoMEoXSN zHpECw/9GkZUfVOtkae3XW4Bb1xr8iOvXzkO/k5JIko23B/iOZJF5d35Ty2EESR4 2Jr9vDfKtTwmbP8TFnhs6U5AfRtst3u+57uAQQxMIqFBjixL3QdcmXCT6UoCuI3r HMxVrWY48Yqgl5+UkKKeR0JFb+Dj9RTGioqPYPz0L6BJOsk4/1T+sDIFCcGfrCWD Ut5pcouHYAp3FuKM7svJXlPLjJol//N+jiiV/03mPu9bvs01t7+mDfvG3Ky41M48 4DkXfjk28QGb6+URRZS8Ei6BnIfi/kv0laE19siF14hCXVWIbP80iK2kLUsAj1OO D14VAgvRRzFPm29p5Vp+aOlc+fkH0oDTTRQtSSeTX6iiGdYl2A7WYKvGQPVgsAih 04IdYXK36oiE9V1Q1dvHojsqKsD47fgUmIiPhMr5dN0jqmxI7DWXc3ba+0t08iPh 78xtWieY2//wigkCrnp3FseI5kn/qBzVLlP2dFVD+nP9WcJXKK+0ZYaxHmuEMfuR Yeow/eALl3e17oK4SxyGrmTcwyNRWVCGGq/Igz6nM46YwIYPP3bY+QriPlB/YBuF 6ZedYGbNIxoZ02jP95vOknMGg2984MnhatE0rF1cW5Nzq1jhkRzmoWBpwSOB+m8Q Y/TFfWq5lMyA26Vg5/0Y6JR9Ek49R1zpYJlqYqlnA91dpvTYxNk= =8Nyv -----END PGP SIGNATURE-----Attachment: pgphb0ufe3s8n.pgp
Description: PGP signature
--- End Message ---