Your message dated Fri, 26 Jul 2024 19:18:59 +0000
with message-id <e1sxqsx-005hph...@fasolo.debian.org>
and subject line Bug#1075158: fixed in libcli 1.10.7-2
has caused the Debian Bug report #1075158,
regarding libcli: 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 ow...@bugs.debian.org
immediately.)
--
1075158: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075158
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:libcli
Version: 1.10.7-1.1
Severity: important
Tags: sid trixie
User: debian-...@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/libcli_1.10.7-1.1_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
[...]
dpkg-buildpackage: info: host architecture amd64
fakeroot debian/rules clean
dh clean
dh_auto_clean
make -j8 clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
rm -f *.o libcli.so* libcli.a clitest libcli-1.10.7.tar.gz
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_clean
debian/rules build
dh build
dh_update_autotools_config
dh_autoreconf
dh_auto_configure
dh_auto_build
make -j8
make[1]: Entering directory '/<<PKGBUILDDIR>>'
cc -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 -g
-O3 -Wall -std=c99 -pedantic -Wformat-security -Wno-format-zero-length -Werror
-Wwrite-strings -Wformat -fdiagnostics-show-option -Wextra -Wsign-compare
-Wcast-align -Wno-unused-parameter -fPIC -o libcli.o -c libcli.c
cc -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 -g
-O3 -Wall -std=c99 -pedantic -Wformat-security -Wno-format-zero-length -Werror
-Wwrite-strings -Wformat -fdiagnostics-show-option -Wextra -Wsign-compare
-Wcast-align -Wno-unused-parameter -fPIC -o clitest.o -c clitest.c
libcli.c: In function ‘cli_register_command’:
libcli.c:430:27: error: ‘calloc’ sizes specified with ‘sizeof’ in the earlier
argument and not in the later argument [-Werror=calloc-transposed-args]
430 | if (!(c = calloc(sizeof(struct cli_command), 1))) return NULL;
| ^~~~~~
libcli.c:430:27: note: earlier argument should specify number of elements,
later size of each element
libcli.c: In function ‘cli_init’:
libcli.c:600:29: error: ‘calloc’ sizes specified with ‘sizeof’ in the earlier
argument and not in the later argument [-Werror=calloc-transposed-args]
600 | if (!(cli = calloc(sizeof(struct cli_def), 1))) return 0;
| ^~~~~~
libcli.c:600:29: note: earlier argument should specify number of elements,
later size of each element
libcli.c: In function ‘cli_match_filter_init’:
libcli.c:1943:38: error: ‘calloc’ sizes specified with ‘sizeof’ in the earlier
argument and not in the later argument [-Werror=calloc-transposed-args]
1943 | filt->data = state = calloc(sizeof(struct cli_match_filter_state), 1);
| ^~~~~~
libcli.c:1943:38: note: earlier argument should specify number of elements,
later size of each element
libcli.c: In function ‘cli_range_filter_init’:
libcli.c:2036:38: error: ‘calloc’ sizes specified with ‘sizeof’ in the earlier
argument and not in the later argument [-Werror=calloc-transposed-args]
2036 | filt->data = state = calloc(sizeof(struct cli_range_filter_state), 1);
| ^~~~~~
libcli.c:2036:38: note: earlier argument should specify number of elements,
later size of each element
libcli.c: In function ‘cli_count_filter_init’:
libcli.c:2073:36: error: ‘calloc’ sizes specified with ‘sizeof’ in the earlier
argument and not in the later argument [-Werror=calloc-transposed-args]
2073 | if (!(filt->data = calloc(sizeof(int), 1))) return CLI_ERROR;
| ^~~
libcli.c:2073:36: note: earlier argument should specify number of elements,
later size of each element
libcli.c: In function ‘cli_register_filter’:
libcli.c:2130:27: error: ‘calloc’ sizes specified with ‘sizeof’ in the earlier
argument and not in the later argument [-Werror=calloc-transposed-args]
2130 | if (!(c = calloc(sizeof(struct cli_command), 1))) return NULL;
| ^~~~~~
libcli.c:2130:27: note: earlier argument should specify number of elements,
later size of each element
libcli.c: In function ‘cli_register_optarg’:
libcli.c:2242:32: error: ‘calloc’ sizes specified with ‘sizeof’ in the earlier
argument and not in the later argument [-Werror=calloc-transposed-args]
2242 | if (!(optarg = calloc(sizeof(struct cli_optarg), 1))) goto CLEANUP;
| ^~~~~~
libcli.c:2242:32: note: earlier argument should specify number of elements,
later size of each element
libcli.c: In function ‘cli_int_register_buildmode_command’:
libcli.c:2508:27: error: ‘calloc’ sizes specified with ‘sizeof’ in the earlier
argument and not in the later argument [-Werror=calloc-transposed-args]
2508 | if (!(c = calloc(sizeof(struct cli_command), 1))) return NULL;
| ^~~~~~
libcli.c:2508:27: note: earlier argument should specify number of elements,
later size of each element
libcli.c: In function ‘cli_int_execute_pipeline’:
libcli.c:3071:27: error: ‘calloc’ sizes specified with ‘sizeof’ in the earlier
argument and not in the later argument [-Werror=calloc-transposed-args]
3071 | *filt = calloc(sizeof(struct cli_filter), 1);
| ^~~~~~
libcli.c:3071:27: note: earlier argument should specify number of elements,
later size of each element
cc1: all warnings being treated as errors
make[1]: *** [Makefile:53: libcli.o] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:4: build] Error 25
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: libcli
Source-Version: 1.10.7-2
Done: Jonathan McDowell <nood...@earth.li>
We believe that the bug you reported is fixed in the latest version of
libcli, 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 1075...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Jonathan McDowell <nood...@earth.li> (supplier of updated libcli 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 ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Fri, 26 Jul 2024 19:50:26 +0100
Source: libcli
Architecture: source
Version: 1.10.7-2
Distribution: unstable
Urgency: medium
Maintainer: Jonathan McDowell <nood...@earth.li>
Changed-By: Jonathan McDowell <nood...@earth.li>
Closes: 1075158
Changes:
libcli (1.10.7-2) unstable; urgency=medium
.
[ Debian Janitor]
* Remove constraints unnecessary since buster (oldstable):
+ Build-Depends: Drop versioned constraint on dh-exec.
.
[ Jonathan McDowell ]
* Fix compilation with GCC 14. Closes: #1075158
* Switch to debhelper-compat level 13
* Drop dh-exec dependency
* Set Rules-Requires-Root to no
* Bump Standards-Version to 4.7.0
Checksums-Sha1:
2db58db57dc11069b55e53a8688bd5c54588132a 1294 libcli_1.10.7-2.dsc
d6efbff93d0b086fc56ecd3eb78e785b281827aa 4964 libcli_1.10.7-2.debian.tar.xz
9b53e67668df9d8a0aeb286ccff2dc47dd3dc7a4 5982 libcli_1.10.7-2_amd64.buildinfo
Checksums-Sha256:
4fcc10eebade0e8a115cd2c4216dbd7ee181182f5f70631ff6e21308d44efec9 1294
libcli_1.10.7-2.dsc
c3864e04e1b03ee161eb9c5c83e4ba9805dc80cfbba9d19dedb81461b2993131 4964
libcli_1.10.7-2.debian.tar.xz
e64fe2224d24e45b7f803c463c3f86f0d9561d789fa1291630a3577295d75d53 5982
libcli_1.10.7-2_amd64.buildinfo
Files:
e4a02f39d6f321fb46c643eda7fff647 1294 libs optional libcli_1.10.7-2.dsc
048e68b89c71b10f5ba0a6fad7434ef2 4964 libs optional
libcli_1.10.7-2.debian.tar.xz
5b5d63d1a039576b358834d18160999e 5982 libs optional
libcli_1.10.7-2_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iHUEARYKAB0WIQSAYP1ALvrBQa1odmMPwJuF4mk8PAUCZqPyswAKCRAPwJuF4mk8
PDuMAQCs5mQHXTuPUixVQugSi8N5gyEenfm+QHn4A9NQsSbZSAD+OUEaymJo32Ab
CEV6WIUuRBpmM9GCehs0dYdF1d9xIgQ=
=/U/s
-----END PGP SIGNATURE-----
pgpEZPtzgyame.pgp
Description: PGP signature
--- End Message ---