Your message dated Tue, 20 Aug 2024 15:03:19 +0000 with message-id <E1sgQOF-007P4e-I0@fasolo.debian.org> and subject line Bug#1075220: fixed in liece 2.0+0.20030527cvs-15 has caused the Debian Bug report #1075220, regarding liece: ftbfs with GCC-14 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.) -- 1075220: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075220 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: maintonly@bugs.debian.org
- Subject: liece: ftbfs with GCC-14
- From: Matthias Klose <doko@debian.org>
- Date: Wed, 03 Jul 2024 12:34:50 +0000
- Message-id: <E1sOzCE-0042Nw-BI@paradis.debian.org>
Package: src:liece Version: 2.0+0.20030527cvs-14 Severity: important Tags: sid trixie User: debian-gcc@lists.debian.org Usertags: ftbfs-gcc-14 [This bug is 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-14/g++-14, but succeeds to build with gcc-13/g++-13. The severity of this report will be raised before the trixie release. The full build log can be found at: http://qa-logs.debian.net/2024/07/01/liece_2.0+0.20030527cvs-14_unstable_gccexp.log The last lines of the build log are at the end of this report. To build with GCC 14, either set CC=gcc-14 CXX=g++-14 explicitly, or install the gcc, g++, gfortran, ... packages from experimental. apt-get -t=experimental install g++ 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-14/porting_to.html [...] config.status: creating lisp/Makefile config.status: creating dcc/Makefile config.status: creating etc/Makefile config.status: creating etc/icons/Makefile config.status: creating etc/po/Makefile config.status: creating etc/styles/Makefile config.status: executing depfiles commands debian/rules override_dh_auto_build-arch make[1]: Entering directory '/<<PKGBUILDDIR>>' /usr/bin/make -C dcc make[2]: Entering directory '/<<PKGBUILDDIR>>/dcc' gcc -I. -I.. -g -O2 -Werror=implicit-function-declaration -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"liece\" -DVERSION=\"2.0.0\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_LIBGEN_H=1 -DHAVE_STRTOUL=1 -DHAVE_MEMMOVE=1 -DHAVE_GETADDRINFO=1 -DHAVE_BASENAME=1 -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c -o dcc.o dcc.c dcc.c: In function ‘send_file’: dcc.c:207:34: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 4 has type ‘u_long’ {aka ‘long unsigned int’} [-Wformat=] 207 | printf ("DCC send %s %d %u %d\n", ifile, port, addr, statbuf.st_size); | ~^ ~~~~ | | | | unsigned int u_long {aka long unsigned int} | %lu dcc.c:207:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘__off_t’ {aka ‘long int’} [-Wformat=] 207 | printf ("DCC send %s %d %u %d\n", ifile, port, addr, statbuf.st_size); | ~^ ~~~~~~~~~~~~~~~ | | | | int __off_t {aka long int} | %ld dcc.c: In function ‘chat_listen’: dcc.c:372:27: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 2 has type ‘u_long’ {aka ‘long unsigned int’} [-Wformat=] 372 | printf("DCC chat %u %d\n", addr, port); | ~^ ~~~~ | | | | | u_long {aka long unsigned int} | unsigned int | %lu dcc.c: In function ‘main’: dcc.c:444:20: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 2 has type ‘u_long’ {aka ‘long unsigned int’} [-Wformat=] 444 | printf("%u\n", addr); | ~^ ~~~~ | | | | | u_long {aka long unsigned int} | unsigned int | %lu dcc.c: In function ‘send_file’: dcc.c:212:5: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 212 | write (ofd, buf, len); | ^~~~~~~~~~~~~~~~~~~~~ dcc.c: In function ‘receive_file’: dcc.c:244:5: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 244 | write (ofd, buf, len); | ^~~~~~~~~~~~~~~~~~~~~ dcc.c:248:5: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 248 | write (ifd, &netsize, 4); | ^~~~~~~~~~~~~~~~~~~~~~~~ dcc.c: In function ‘select_loop’: dcc.c:290:7: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 290 | write (1, buf, len); | ^~~~~~~~~~~~~~~~~~~ dcc.c:298:7: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 298 | write(sfd, buf, len); | ^~~~~~~~~~~~~~~~~~~~ gcc -g -O2 -Werror=implicit-function-declaration -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wl,-z,relro -Wl,-z,now -o ldcc dcc.o gcc -I. -I.. -g -O2 -Werror=implicit-function-declaration -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"liece\" -DVERSION=\"2.0.0\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_LIBGEN_H=1 -DHAVE_STRTOUL=1 -DHAVE_MEMMOVE=1 -DHAVE_GETADDRINFO=1 -DHAVE_BASENAME=1 -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c -o tcp.o tcp.c tcp.c:71:1: error: return type defaults to ‘int’ [-Wimplicit-int] 71 | main (argc, argv) | ^~~~ make[2]: *** [Makefile:372: tcp.o] Error 1 make[2]: Leaving directory '/<<PKGBUILDDIR>>/dcc' make[1]: *** [debian/rules:10: override_dh_auto_build-arch] Error 2 make[1]: Leaving directory '/<<PKGBUILDDIR>>' make: *** [debian/rules:7: binary] Error 2 dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
- To: 1075220-close@bugs.debian.org
- Subject: Bug#1075220: fixed in liece 2.0+0.20030527cvs-15
- From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>
- Date: Tue, 20 Aug 2024 15:03:19 +0000
- Message-id: <E1sgQOF-007P4e-I0@fasolo.debian.org>
- Reply-to: Andreas Beckmann <anbe@debian.org>
Source: liece Source-Version: 2.0+0.20030527cvs-15 Done: Andreas Beckmann <anbe@debian.org> We believe that the bug you reported is fixed in the latest version of liece, 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 1075220@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Andreas Beckmann <anbe@debian.org> (supplier of updated liece 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: SHA256 Format: 1.8 Date: Tue, 20 Aug 2024 16:26:01 +0200 Source: liece Architecture: source Version: 2.0+0.20030527cvs-15 Distribution: unstable Urgency: medium Maintainer: Debian QA Group <packages@qa.debian.org> Changed-By: Andreas Beckmann <anbe@debian.org> Closes: 1075220 Changes: liece (2.0+0.20030527cvs-15) unstable; urgency=medium . * QA upload. * Fix FTBFS with GCC 14. (Closes: #1075220) * Bump Standards-Version to 4.7.0. Checksums-Sha1: 24cab4ff9e1c5778ce43c950abd259435e5b30da 1934 liece_2.0+0.20030527cvs-15.dsc 11d515a142423fe49fd8e514afb390212b63b8be 14004 liece_2.0+0.20030527cvs-15.debian.tar.xz fb30e63c7793c7d0770bfb9e79f7c54f89a40d50 9806 liece_2.0+0.20030527cvs-15_source.buildinfo Checksums-Sha256: 621752344d22204158e1a363b119be30e4828776e95f7b79e40ccc047e1b4090 1934 liece_2.0+0.20030527cvs-15.dsc 61efd615cdf2b842f15cbc2efd3dd590a1a5259fa63053a09f48c586734a9617 14004 liece_2.0+0.20030527cvs-15.debian.tar.xz 19338da0aec99d1a9d8945bea7c863f2a617bccf6d6b96ee58c8e2d84b25feb9 9806 liece_2.0+0.20030527cvs-15_source.buildinfo Files: acc2900c7e3990d369a6dee2186871e1 1934 net optional liece_2.0+0.20030527cvs-15.dsc e5d3f25c29b6279b0989b1a04dcd2832 14004 net optional liece_2.0+0.20030527cvs-15.debian.tar.xz f871db3b022ca71f255e9147559051d6 9806 net optional liece_2.0+0.20030527cvs-15_source.buildinfo -----BEGIN PGP SIGNATURE----- iQJEBAEBCAAuFiEE6/MKMKjZxjvaRMaUX7M/k1np7QgFAmbEp+QQHGFuYmVAZGVi aWFuLm9yZwAKCRBfsz+TWentCGi/D/9ZKah9ePGS3VYxJTypVusqfsZnAqTPy4Gp kxSNxI5lmWsWEsG381UXeUbcFXcx4lgD6MPkUOT/fzjPSLWPtg/51Z9NWmTf4jYg 6O59yNb5YBnrEUVvdaa7fFBDSNG1W/CVNLW1UeL7gcrBvF0XU1ij6OewCeL1ThOy N4Wg8Afrz5VgbYdmBDH/CX3+slVAK2bHhq1IbGT+vtfDzDlscHSwj5Jna6Cdej0M cYL6twY6MR2xzOF1NLBKC15fQQEP6gSPa5wGbHXg65qqIzTjnKYsXaYdsutykV4e 2rPafeJO64ZlrEkUi8jpgejwSPx2QWikgbaqLcJnDE4sDuQFw+ARu4NH2e8Lv4h2 wAIpX60+bbQrKeNsGAJjwci2hvT7Gb9i7i9ByZIkRpDaW4RMHjEOkv+qXJLgsxk7 2IzI9M5STEbe4QIIW3ntsF4p64ZZxeEJfzRbx15R0TdbJxDTrCBs233jX0tr16tM QuizMWCV1Hf43M6jFs0BgK4IeGZ0bBnkdqnFgyWPUWVC0UN+y02o33FCtuFysC9P OBx4fBIHN4x6D1TRkaXQsgEZN8HvDPph4X6hgT1/yammmLDDKUYgnuiUh037gDF5 XRzdn72u4UMCqTeujwuBbKB7Xkko2Fsga+rra5JOtS3SDi6TuyKcTCYM5qFLPbJs CUVBWhMNMg== =ru6Q -----END PGP SIGNATURE-----Attachment: pgp6jXFI8iMMM.pgp
Description: PGP signature
--- End Message ---