Your message dated Sun, 06 Oct 2024 07:51:27 +0000 with message-id <E1sxM35-009BeL-Kt@fasolo.debian.org> and subject line Bug#1075302: fixed in nam 1.15-8 has caused the Debian Bug report #1075302, regarding nam: 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.) -- 1075302: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075302 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: maintonly@bugs.debian.org
- Subject: nam: ftbfs with GCC-14
- From: Matthias Klose <doko@debian.org>
- Date: Wed, 03 Jul 2024 12:37:29 +0000
- Message-id: <E1sOzEn-0042iT-G2@paradis.debian.org>
Package: src:nam Version: 1.15-7 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/nam_1.15-7_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 [...] | ^~~~~ /<<PKGBUILDDIR>>/netmodel.cc:1180:29: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 1180 | n->set_down("gray"); | ^~~~~~ /<<PKGBUILDDIR>>/netmodel.cc:1196:29: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 1196 | n->set_down("gray"); | ^~~~~~ In file included from /<<PKGBUILDDIR>>/packet.cc:44: /<<PKGBUILDDIR>>/node.h: In member function ‘virtual char* BoxNode::style()’: /<<PKGBUILDDIR>>/node.h:280:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 280 | char *style() {return "box";} | ^~~~~ /<<PKGBUILDDIR>>/node.h: In member function ‘virtual char* CircleNode::style()’: /<<PKGBUILDDIR>>/node.h:291:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 291 | char *style() {return "circle";} | ^~~~~~~~ /<<PKGBUILDDIR>>/node.h: In member function ‘virtual char* HexagonNode::style()’: /<<PKGBUILDDIR>>/node.h:302:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 302 | char *style() {return "hexagon";} | ^~~~~~~~~ /<<PKGBUILDDIR>>/node.h: In member function ‘virtual char* VirtualNode::style()’: /<<PKGBUILDDIR>>/node.h:318:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 318 | char *style() {return "virtual";} | ^~~~~~~~~ /<<PKGBUILDDIR>>/netmodel.cc: In member function ‘int NetModel::add_group(Group*)’: /<<PKGBUILDDIR>>/netmodel.cc:1659:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] 1659 | (const char *)grp->addr(), | ^~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/tcl/tcl.h:2570:62: note: in definition of macro ‘Tcl_CreateHashEntry’ 2570 | (*((tablePtr)->createProc))(tablePtr, (const char *)(key), newPtr) | ^~~ /<<PKGBUILDDIR>>/netmodel.cc: In member function ‘Group* NetModel::lookupGroup(unsigned int)’: /<<PKGBUILDDIR>>/netmodel.cc:1672:57: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] 1672 | Tcl_HashEntry *he = Tcl_FindHashEntry(grpHash_, (const char *)addr); | ^~~~~~~~~~~~~~~~~~ /usr/include/tcl/tcl.h:2567:60: note: in definition of macro ‘Tcl_FindHashEntry’ 2567 | (*((tablePtr)->findProc))(tablePtr, (const char *)(key)) | ^~~ In file included from /<<PKGBUILDDIR>>/node.cc:46: /<<PKGBUILDDIR>>/node.h: In member function ‘virtual char* BoxNode::style()’: /<<PKGBUILDDIR>>/node.h:280:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 280 | char *style() {return "box";} | ^~~~~ /<<PKGBUILDDIR>>/node.h: In member function ‘virtual char* CircleNode::style()’: /<<PKGBUILDDIR>>/node.h:291:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 291 | char *style() {return "circle";} | ^~~~~~~~ /<<PKGBUILDDIR>>/node.h: In member function ‘virtual char* HexagonNode::style()’: /<<PKGBUILDDIR>>/node.h:302:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 302 | char *style() {return "hexagon";} | ^~~~~~~~~ /<<PKGBUILDDIR>>/node.h: In member function ‘virtual char* VirtualNode::style()’: /<<PKGBUILDDIR>>/node.h:318:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 318 | char *style() {return "virtual";} | ^~~~~~~~~ /<<PKGBUILDDIR>>/netmodel.cc: In member function ‘int NetModel::registerObjName(const char*, int)’: /<<PKGBUILDDIR>>/netmodel.cc:2745:38: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] 2745 | Tcl_SetHashValue(he, (ClientData)id); | ^~~~~~~~~~~~~~ /usr/include/tcl/tcl.h:2553:69: note: in definition of macro ‘Tcl_SetHashValue’ 2553 | #define Tcl_SetHashValue(h, value) ((h)->clientData = (ClientData) (value)) | ^~~~~ make[3]: Leaving directory '/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu' make[2]: *** [CMakeFiles/Makefile2:86: CMakeFiles/nam.dir/all] Error 2 make[2]: Leaving directory '/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu' make[1]: *** [Makefile:149: all] Error 2 make[1]: Leaving directory '/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu' dh_auto_build: error: cd obj-x86_64-linux-gnu && make -j8 "INSTALL=install --strip-program=true" VERBOSE=1 returned exit code 2 make: *** [debian/rules:10: build] Error 25 dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
- To: 1075302-close@bugs.debian.org
- Subject: Bug#1075302: fixed in nam 1.15-8
- From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>
- Date: Sun, 06 Oct 2024 07:51:27 +0000
- Message-id: <E1sxM35-009BeL-Kt@fasolo.debian.org>
- Reply-to: Petter Reinholdtsen <pere@debian.org>
Source: nam Source-Version: 1.15-8 Done: Petter Reinholdtsen <pere@debian.org> We believe that the bug you reported is fixed in the latest version of nam, 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 1075302@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Petter Reinholdtsen <pere@debian.org> (supplier of updated nam 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: Sun, 06 Oct 2024 09:28:22 +0200 Source: nam Architecture: source Version: 1.15-8 Distribution: unstable Urgency: medium Maintainer: Debian QA Group <packages@qa.debian.org> Changed-By: Petter Reinholdtsen <pere@debian.org> Closes: 1075302 Changes: nam (1.15-8) unstable; urgency=medium . * QA upload. . * Added 1000-gcc-14.patch to fix missing variable type (Closes: #1075302). Checksums-Sha1: 033352297b2d2b300c7aa7a6a04da5a1bad8d7e5 1985 nam_1.15-8.dsc f96619e39ca72fad4e60993fd4da5ff2ab96fb98 9944 nam_1.15-8.debian.tar.xz f808e855a787136a5b95470744356ed2dd5f9745 9425 nam_1.15-8_source.buildinfo Checksums-Sha256: 81cd13f656157e3a5ecb5202151d57cbde7b318c4f7b71a73805b89365573bd6 1985 nam_1.15-8.dsc e986d51ba489430999a7b30f003b6216a82fff1004f252301a66cd3a38ab9296 9944 nam_1.15-8.debian.tar.xz 3c123a621d545617aa1bd045aaca7f5cc0e5119a5e57efa0a579cc991fbb24e2 9425 nam_1.15-8_source.buildinfo Files: a99dedf0fb9ffc018edd925880176eb2 1985 net optional nam_1.15-8.dsc 7c7d86f3202a5ac7408808893e2e9176 9944 net optional nam_1.15-8.debian.tar.xz b361c6385aa330a0b327202d448dc5bc 9425 net optional nam_1.15-8_source.buildinfo -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEERqLf4owIeylOb9kkgSgKoIe6+w4FAmcCPTkACgkQgSgKoIe6 +w7RwA//ayS+k9qDjYnBtiU/yIP50zWoqfRm47C7l9AC7oNMjShMt/RR36uy4LWt rMgWOCS59d2s6m5X9OvkkG8p0wpYUj5RB/PD6lSkIF65aijne+yp130tpqh5W+Zq cOZ4Gue+23sv60ALamvL9aJ7cg41YpT49gfxxRjGzDZ4zyG7HkhjXftFydB2T2b6 i0moO38Oh5DZXDk+ngNkfXpcQJt2z7EhhRmMLTEblPdC82wMGUHpPMei+X6U/dkp gevlmsgZ/RoFiEHDUQzz4cpbdyzEGLW1tLagmy80+1LauIzVZ2H/ckNSx8P5lFRt yZpgEzUfqpaQ1R96QBQl0rLrwkUrmXm2MuTn+hAgOhExbhTdK6mJ9MaKwIj601pF xNpY2naovv7hBlLqrn++22fhIkokxR8SkD3mGgbMB4nZ3X/mp8sAC7Gkn+Grq+Z4 cO4t4yGXUgNmbBo91t+IzpXT0jdjJww4lefCulngnEscvS1pWbvz+B7Yi9tb9PAo Z/e3hEwFSe4AkofbXNzpk1V7JozMRZ0u4w+MmUJop74O4S/sQzP07Ez/YaH4pR9N 6+FCNkJcmscg142cq6PvUfQMaG/Zevj08v3CTjzmuZoewTZB/4a7mMVZFMiTXagJ Htl3ma4O0rRTJqBPbxUlJIvCIhbfCOub3YrY6p9qkcTnfnSqgH8= =EAnE -----END PGP SIGNATURE-----Attachment: pgp8pQ7VUaPwF.pgp
Description: PGP signature
--- End Message ---