Your message dated Sun, 06 Oct 2024 15:10:17 +0000
with message-id <e1sxstl-00cjgn...@fasolo.debian.org>
and subject line Bug#1075434: fixed in randtype 1.13-11.2
has caused the Debian Bug report #1075434,
regarding randtype: 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.)
--
1075434: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075434
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:randtype
Version: 1.13-11.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/randtype_1.13-11.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
-----------------
Command: dpkg-buildpackage --sanitize-env -us -uc -b -rfakeroot
dpkg-buildpackage: info: source package randtype
dpkg-buildpackage: info: source version 1.13-11.1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Bastian Germann <b...@debian.org>
dpkg-source --before-build .
dpkg-buildpackage: info: host architecture amd64
fakeroot debian/rules clean
dh clean
dh: warning: Compatibility levels before 10 are deprecated (level 9 in use)
dh_auto_clean
dh_auto_clean: warning: Compatibility levels before 10 are deprecated (level 9
in use)
make -j1 realclean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
rm -f randtype randtype.o core
rm -f tags
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
debian/rules override_dh_clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
dh_clean
dh_clean: warning: Compatibility levels before 10 are deprecated (level 9 in
use)
rm -f randtype.1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
debian/rules build
dh build
dh: warning: Compatibility levels before 10 are deprecated (level 9 in use)
dh_update_autotools_config
dh_auto_configure
dh_auto_configure: warning: Compatibility levels before 10 are deprecated
(level 9 in use)
debian/rules override_dh_auto_build
make[1]: Entering directory '/<<PKGBUILDDIR>>'
dh_auto_build -- CFLAGS="-g -O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection"
LIBS="-lz -Wl,-z,relro"
dh_auto_build: warning: Compatibility levels before 10 are deprecated (level 9
in use)
make -j1 "CFLAGS=-g -O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection"
"LIBS=-lz -Wl,-z,relro"
make[2]: Entering directory '/<<PKGBUILDDIR>>'
gcc -g -O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection
-DDEF_MS=18 -DDEF_MULT=20000 -DHAVE_RANDOM -D_GNU_SOURCE -DHAVE_ZLIB -c
randtype.c -o randtype.o
randtype.c: In function ‘splitter’:
randtype.c:353:17: error: assignment to ‘struct gzFile_s **’ from incompatible
pointer type ‘gzFile’ {aka ‘struct gzFile_s *’} [-Wincompatible-pointer-types]
353 | if ((fp = gzdopen(0, "rb")) == NULL) {
| ^
randtype.c:363:17: error: assignment to ‘struct gzFile_s **’ from incompatible
pointer type ‘gzFile’ {aka ‘struct gzFile_s *’} [-Wincompatible-pointer-types]
363 | if ((fp = gzopen(filename, "rb")) == NULL) {
| ^
randtype.c:373:24: error: passing argument 1 of ‘gzgets’ from incompatible
pointer type [-Wincompatible-pointer-types]
373 | while ((s = gzgets(fp, s, LINE_MAX)) != NULL) {
| ^~
| |
| struct gzFile_s **
In file included from randtype.c:28:
/usr/include/zlib.h:1494:38: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’}
but argument is of type ‘struct gzFile_s **’
1494 | ZEXTERN char * ZEXPORT gzgets(gzFile file, char *buf, int len);
| ~~~~~~~^~~~
randtype.c:448:13: error: passing argument 1 of ‘gzclose’ from incompatible
pointer type [-Wincompatible-pointer-types]
448 | gzclose(fp);
| ^~
| |
| struct gzFile_s **
/usr/include/zlib.h:1634:39: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’}
but argument is of type ‘struct gzFile_s **’
1634 | ZEXTERN int ZEXPORT gzclose(gzFile file);
| ~~~~~~~^~~~
make[2]: *** [Makefile:23: randtype.o] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j1 "CFLAGS=-g -O2
-Werror=implicit-function-declaration -ffile-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -fstack-clash-protection -Wformat
-Werror=format-security -fcf-protection" "LIBS=-lz -Wl,-z,relro" returned exit
code 2
make[1]: *** [debian/rules:13: override_dh_auto_build] Error 255
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:6: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: randtype
Source-Version: 1.13-11.2
Done: Chris Hofstaedtler <z...@debian.org>
We believe that the bug you reported is fixed in the latest version of
randtype, 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.
Chris Hofstaedtler <z...@debian.org> (supplier of updated randtype 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: SHA256
Format: 1.8
Date: Sun, 06 Oct 2024 16:50:30 +0200
Source: randtype
Architecture: source
Version: 1.13-11.2
Distribution: unstable
Urgency: medium
Maintainer: Eugene V. Lyubimkin <jac...@debian.org>
Changed-By: Chris Hofstaedtler <z...@debian.org>
Closes: 1075434
Changes:
randtype (1.13-11.2) unstable; urgency=medium
.
* Non-maintainer upload.
* Fix FTBFS with gcc-14 (Closes: #1075434)
Checksums-Sha1:
48c587767ba8f9786590189f41548bc01e959e3d 1729 randtype_1.13-11.2.dsc
07c4d31979f8332e9324e146603504008522cbea 3112 randtype_1.13-11.2.debian.tar.xz
6b163291e3d726dbbe6b8f0addd926304632c6e5 5689
randtype_1.13-11.2_arm64.buildinfo
Checksums-Sha256:
3f51340f1a29b0b30260b3a34ab6129743db7f5f66152a48c91557a01851f4f0 1729
randtype_1.13-11.2.dsc
958d96d52a774ffd4adbf97f3e64e718f1b1310cba79f188e784b61fc8422c91 3112
randtype_1.13-11.2.debian.tar.xz
fc68a91da94795eab179d43fc02a15c21ff4e1d4e640492637e48a744a3c7390 5689
randtype_1.13-11.2_arm64.buildinfo
Files:
be0ae0de23aaa64b11fef416aa44221d 1729 games optional randtype_1.13-11.2.dsc
829f5094070f4ff03a49c1234e0546e9 3112 games optional
randtype_1.13-11.2.debian.tar.xz
8b3aa59884211dd93c87cf6783e5af80 5689 games optional
randtype_1.13-11.2_arm64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEfRrP+tnggGycTNOSXBPW25MFLgMFAmcCpCQACgkQXBPW25MF
LgPkgBAApKwgoKZr9DUhrQvUGCBHnTX4jLJQHxdK7vN6R2F3JoPoBbsnjC2fSOgN
KRpZ3atfL5NW6R1Dke3sZP9l0fEdz9Bkq1hFccfrlGgQdiQaYeXiQlvYUHIrptG5
E2GAPIcyYgdIjLE01vZJlpL5WECB5EVJlB7S7J7H9qWh730eCPETzk1cWW60Tzu9
weRLtsQbyCikUcDn2534NJ+lTTo2gUBhLDicRnzDvHnNyMhKbpenz9Rlty4QqqNP
xOiB7UbweVhw8DSVBIbWep/n2eT6DPbTHtxC5J8wR/EfmoJjqb3naAoQcE3JZP0B
MxniwwepCKpv/NID55JCPsMFRjAAdp+bDV/fESr1t/k1M+XjxjFkwkgnMa5vJHEA
VCFCdtBxgbHPEnM2XaG7/t2Wc1SwgapNRjK2llFwjzqjEdk4Bx8C/LalPu7s9SHO
CxnumtHEaejTC2glhO6vh4QHBtKcOB8KqTt6ANFBYgQBMyJWjqaf/qbHa+1FZLQj
IedKdoOPXFO+16VjFKDRxrZsH+TY4pDWq4LPRoICoKqcNlMa/6xX+4r7yQnFAqzC
bj9amjAp0+mn/uTqudHYttBAu2ZiCDcTNnDwtUJa6aah+AkEZ45ENtcBlO+909M8
8OVO2YdfpcUrT4ltlOSQPqcRUO1zEiTQd8id42HWYSm+PU1EIwY=
=V/AP
-----END PGP SIGNATURE-----
pgpedgepB5TmM.pgp
Description: PGP signature
--- End Message ---