Your message dated Sun, 15 Sep 2024 22:51:05 +0000 with message-id <E1spy5B-00CUYz-IW@fasolo.debian.org> and subject line Bug#1075240: fixed in lua-svn 0.4.0-12 has caused the Debian Bug report #1075240, regarding lua-svn: 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.) -- 1075240: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075240 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: maintonly@bugs.debian.org
- Subject: lua-svn: ftbfs with GCC-14
- From: Matthias Klose <doko@debian.org>
- Date: Wed, 03 Jul 2024 12:35:24 +0000
- Message-id: <E1sOzCm-0042Sb-Vf@paradis.debian.org>
Package: src:lua-svn Version: 0.4.0-11 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/lua-svn_0.4.0-11_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 [...] src/luasvn.c: In function ‘l_revprop_set’: src/luasvn.c:1409:9: warning: ‘svn_path_canonicalize’ is deprecated [-Wdeprecated-declarations] 1409 | url = svn_path_canonicalize (url, pool); | ^~~ /usr/include/subversion-1/svn_path.h:284:1: note: declared here 284 | svn_path_canonicalize(const char *path, apr_pool_t *pool); | ^~~~~~~~~~~~~~~~~~~~~ src/luasvn.c:1418:25: warning: ‘svn_subst_translate_string’ is deprecated [-Wdeprecated-declarations] 1418 | err = svn_subst_translate_string (&sstring, sstring, APR_LOCALE_CHARSET, pool); | ^~~ /usr/include/subversion-1/svn_subst.h:687:14: note: declared here 687 | svn_error_t *svn_subst_translate_string(svn_string_t **new_value, | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/luasvn.c:1422:17: warning: ‘svn_client_revprop_set’ is deprecated [-Wdeprecated-declarations] 1422 | err = svn_client_revprop_set (propname_utf8, sstring, url, &revision, &rev, force, ctx, pool); | ^~~ /usr/include/subversion-1/svn_client.h:6183:1: note: declared here 6183 | svn_client_revprop_set(const char *propname, | ^~~~~~~~~~~~~~~~~~~~~~ src/luasvn.c:1424:17: warning: ‘svn_client_revprop_set’ is deprecated [-Wdeprecated-declarations] 1424 | err = svn_client_revprop_set (propname_utf8, NULL, url, &revision, &rev, force, ctx, pool); | ^~~ /usr/include/subversion-1/svn_client.h:6183:1: note: declared here 6183 | svn_client_revprop_set(const char *propname, | ^~~~~~~~~~~~~~~~~~~~~~ src/luasvn.c: In function ‘status_func’: src/luasvn.c:1609:9: warning: ‘svn_path_local_style’ is deprecated [-Wdeprecated-declarations] 1609 | print_status (svn_path_local_style (path, pool), | ^~~~~~~~~~~~ /usr/include/subversion-1/svn_path.h:82:1: note: declared here 82 | svn_path_local_style(const char *path, apr_pool_t *pool); | ^~~~~~~~~~~~~~~~~~~~ src/luasvn.c: In function ‘l_status’: src/luasvn.c:1669:9: warning: ‘svn_path_canonicalize’ is deprecated [-Wdeprecated-declarations] 1669 | path = svn_path_canonicalize (path, pool); | ^~~~ /usr/include/subversion-1/svn_path.h:284:1: note: declared here 284 | svn_path_canonicalize(const char *path, apr_pool_t *pool); | ^~~~~~~~~~~~~~~~~~~~~ src/luasvn.c:1679:9: warning: ‘svn_client_status2’ is deprecated [-Wdeprecated-declarations] 1679 | err = svn_client_status2 (&rev, path, &revision, status_func, &baton, | ^~~ /usr/include/subversion-1/svn_client.h:2724:1: note: declared here 2724 | svn_client_status2(svn_revnum_t *result_rev, | ^~~~~~~~~~~~~~~~~~ src/luasvn.c: In function ‘l_update’: src/luasvn.c:1725:9: warning: ‘svn_path_canonicalize’ is deprecated [-Wdeprecated-declarations] 1725 | path = svn_path_canonicalize (path, pool); | ^~~~ /usr/include/subversion-1/svn_path.h:284:1: note: declared here 284 | svn_path_canonicalize(const char *path, apr_pool_t *pool); | ^~~~~~~~~~~~~~~~~~~~~ src/luasvn.c:1730:9: warning: ‘svn_client_update2’ is deprecated [-Wdeprecated-declarations] 1730 | err = svn_client_update2 (&result_revs, array, &revision, recursive, ignore_externals, ctx, pool); | ^~~ /usr/include/subversion-1/svn_client.h:1436:1: note: declared here 1436 | svn_client_update2(apr_array_header_t **result_revs, | ^~~~~~~~~~~~~~~~~~ src/luasvn.c:1736:27: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] 1736 | int rev = (int) ((int **) (result_revs->elts))[0]; | ^ src/luasvn.c: At top level: src/luasvn.c:1775:1: error: return type defaults to ‘int’ [-Wimplicit-int] 1775 | luaopen_svn (lua_State *L) { | ^~~~~~~~~~~ make[2]: *** [/usr/share/dh-lua/make/dh-lua.Makefile.single:446: /<<PKGBUILDDIR>>/5.1-svn/src/luasvn.lo] Error 1 make[1]: *** [/usr/share/dh-lua/make/dh-lua.Makefile.multiple:12: build] Error 1 dh_auto_build: error: make --no-print-directory -f /usr/share/dh-lua/make/dh-lua.Makefile.multiple build returned exit code 2 make: *** [debian/rules:4: binary] Error 255 dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
- To: 1075240-close@bugs.debian.org
- Subject: Bug#1075240: fixed in lua-svn 0.4.0-12
- From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>
- Date: Sun, 15 Sep 2024 22:51:05 +0000
- Message-id: <E1spy5B-00CUYz-IW@fasolo.debian.org>
- Reply-to: Andreas Beckmann <anbe@debian.org>
Source: lua-svn Source-Version: 0.4.0-12 Done: Andreas Beckmann <anbe@debian.org> We believe that the bug you reported is fixed in the latest version of lua-svn, 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 1075240@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 lua-svn 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: Mon, 16 Sep 2024 00:36:05 +0200 Source: lua-svn Architecture: source Version: 0.4.0-12 Distribution: unstable Urgency: medium Maintainer: Debian QA Group <packages@qa.debian.org> Changed-By: Andreas Beckmann <anbe@debian.org> Closes: 1075240 Changes: lua-svn (0.4.0-12) unstable; urgency=medium . * QA upload. * Fix building with -Werror=implicit-int. (Closes: #1075240) Checksums-Sha1: 2dfb5b18d26a375996287199a1e509c7019134e7 1981 lua-svn_0.4.0-12.dsc f05f1a6ea36a9053f745c49683b7374854971ef1 4424 lua-svn_0.4.0-12.debian.tar.xz 51b40bceef2fbf2755556dd3a8bf6b3cd7c583ee 8405 lua-svn_0.4.0-12_source.buildinfo Checksums-Sha256: e168a3c84fa1cce6eff1d537d1c8d4b262c78ac1ca5c8c03ee5ab841e93c7270 1981 lua-svn_0.4.0-12.dsc 66dfac61e64ec6bc72e2441aef954194d025ec719759a7148644c00fd381bc60 4424 lua-svn_0.4.0-12.debian.tar.xz 6c803df609190af5710b4aa2a663ec4b161ea3d5770c6b7ec5e72374993d54d7 8405 lua-svn_0.4.0-12_source.buildinfo Files: f72d350e209b8712489db3aa8ee22fc3 1981 interpreters optional lua-svn_0.4.0-12.dsc 1739a15d1d2d598deb63841fa4dbac8c 4424 interpreters optional lua-svn_0.4.0-12.debian.tar.xz 9e4bd797e9aa1f8373306891e4a02456 8405 interpreters optional lua-svn_0.4.0-12_source.buildinfo -----BEGIN PGP SIGNATURE----- iQJEBAEBCAAuFiEE6/MKMKjZxjvaRMaUX7M/k1np7QgFAmbnYcQQHGFuYmVAZGVi aWFuLm9yZwAKCRBfsz+TWentCNz/EACuteF7jUHlAiEgYHQ3eRh8TQIpWVfv5I24 A149QUlfiXJq1TK+3HYnkp9NbWQ9E8dxC5Am19uV7yjdRH5HDDYXd+AVXfdsD7M2 5fuNFZ9gsqh7vGdKNwEkQTMt+wihkBvL7aD/Qc26Lcp+Jp8Upvd12717Or/I03tn cd/e+zdPIcZHeVwJ/MhaGVZw4eLSKq40sbeDwpw55RsBxa8SooJQKxNIBwzik3Q1 Sw+xtyYWlzGRIPkY+DhmE4XkJCLN4b8l01xKKXLeVfVCg+T35rJQc4E47mXrchBZ zGYTRtyh3oAaPr3TmCJxoiNH8QOwDTbp2B+qdGi3alMOePAr83xocAwPyeMC0YtG grVkDIJaiDz1IIQuG4TM3sMe+jvs9J0jpYF5JwhqAILkGGOQoPFI2IqYJhU7sxd5 QvPLBFHs4ilvjjdrg2g4KlBwCLpgo+/iW8W+N/tKsFtaWfpwRkB7xawe3R3BXtCR cHMpo9LLe215wU56gIuF1lv7teRszppI98f0PDP0tl/L1Vk+JbIcNHMhxzSF/X6c hPf5quU/A7/Q+tx1kYigPc7SHy25Of+MMrQTr08MUReX7fQosVZbXGkUr6Jg+D8W K/kAkhgFA7fbwiyuEmeMRMQ3nvxIDVt4bP2IUKb06r40Y0k7+C93UuMx8OOOlcID 26UBvrjihQ== =b2P7 -----END PGP SIGNATURE-----Attachment: pgpXPhOKGsiRz.pgp
Description: PGP signature
--- End Message ---