Your message dated Mon, 05 Aug 2024 21:20:33 +0000
with message-id <[email protected]>
and subject line Bug#1075253: fixed in maq 0.7.1-10
has caused the Debian Bug report #1075253,
regarding maq: 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 [email protected]
immediately.)
--
1075253: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075253
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:maq
Version: 0.7.1-9
Severity: important
Tags: sid trixie
User: [email protected]
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/maq_0.7.1-9_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
[...]
bfa.c:46:17: warning: ignoring return value of ‘fread’ declared with attribute
‘warn_unused_result’ [-Wunused-result]
46 | fread(&len, sizeof(int), 1, fp);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bfa.c:48:17: warning: ignoring return value of ‘fread’ declared with attribute
‘warn_unused_result’ [-Wunused-result]
48 | fread(&len, sizeof(int), 1, fp);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fastq2bfq.c: In function ‘fastq2bfq’:
fastq2bfq.c:30:12: error: assignment to ‘struct gzFile_s **’ from incompatible
pointer type ‘gzFile’ {aka ‘struct gzFile_s *’} [-Wincompatible-pointer-types]
30 | fp = gzopen(str, "w");
| ^
fastq2bfq.c:36:28: error: assignment to ‘struct gzFile_s **’ from incompatible
pointer type ‘gzFile’ {aka ‘struct gzFile_s *’} [-Wincompatible-pointer-types]
36 | fp = gzopen(str, "w");
| ^
fastq2bfq.c:47:25: error: passing argument 1 of ‘gzwrite’ from incompatible
pointer type [-Wincompatible-pointer-types]
47 | gzwrite(fp, &i, sizeof(int));
| ^~
| |
| struct gzFile_s **
In file included from fastq2bfq.c:1:
/usr/include/zlib.h:1451:36: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’}
but argument is of type ‘struct gzFile_s **’
1451 | ZEXTERN int ZEXPORT gzwrite(gzFile file, voidpc buf, unsigned len);
| ~~~~~~~^~~~
fastq2bfq.c:48:25: error: passing argument 1 of ‘gzwrite’ from incompatible
pointer type [-Wincompatible-pointer-types]
48 | gzwrite(fp, name, sizeof(char) * i);
| ^~
| |
| struct gzFile_s **
/usr/include/zlib.h:1451:36: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’}
but argument is of type ‘struct gzFile_s **’
1451 | ZEXTERN int ZEXPORT gzwrite(gzFile file, voidpc buf, unsigned len);
| ~~~~~~~^~~~
fastq2bfq.c:49:25: error: passing argument 1 of ‘gzwrite’ from incompatible
pointer type [-Wincompatible-pointer-types]
49 | gzwrite(fp, &l, sizeof(int));
| ^~
| |
| struct gzFile_s **
/usr/include/zlib.h:1451:36: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’}
but argument is of type ‘struct gzFile_s **’
1451 | ZEXTERN int ZEXPORT gzwrite(gzFile file, voidpc buf, unsigned len);
| ~~~~~~~^~~~
fastq2bfq.c:50:25: error: passing argument 1 of ‘gzwrite’ from incompatible
pointer type [-Wincompatible-pointer-types]
50 | gzwrite(fp, seq.s, sizeof(char) * l);
| ^~
| |
| struct gzFile_s **
/usr/include/zlib.h:1451:36: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’}
but argument is of type ‘struct gzFile_s **’
1451 | ZEXTERN int ZEXPORT gzwrite(gzFile file, voidpc buf, unsigned len);
| ~~~~~~~^~~~
fastq2bfq.c:53:33: error: passing argument 1 of ‘gzclose’ from incompatible
pointer type [-Wincompatible-pointer-types]
53 | 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);
| ~~~~~~~^~~~
fastq2bfq.c:62:25: error: passing argument 1 of ‘gzclose’ from incompatible
pointer type [-Wincompatible-pointer-types]
62 | 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:485: fastq2bfq.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
make[1]: *** [Makefile:344: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:13: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: maq
Source-Version: 0.7.1-10
Done: Étienne Mollier <[email protected]>
We believe that the bug you reported is fixed in the latest version of
maq, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Étienne Mollier <[email protected]> (supplier of updated maq 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 [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Mon, 05 Aug 2024 22:48:54 +0200
Source: maq
Architecture: source
Version: 0.7.1-10
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team
<[email protected]>
Changed-By: Étienne Mollier <[email protected]>
Closes: 1075253
Changes:
maq (0.7.1-10) unstable; urgency=medium
.
* gcc-14.patch: new: fix improper uses of gzFile pointers. (Closes: #1075253)
* d/*lintian-overrides: update mismatched overrides.
* d/control: declare compliance to standards version 4.7.0.
* d/control: add myself to uploaders.
Checksums-Sha1:
261b3a65146369608399178d1a2e6ec4e0d8fb1c 2106 maq_0.7.1-10.dsc
ff153c28700c3b1fa262898be4e76e143cc1a677 12128 maq_0.7.1-10.debian.tar.xz
Checksums-Sha256:
77a88a4a1eecc74d0b8f6849ddf75b4e30bb1c3cfc74766103aec1120ddcad89 2106
maq_0.7.1-10.dsc
16c2235085a36655c550b291a7188364c11243844f50756863b286f85c1ebc2b 12128
maq_0.7.1-10.debian.tar.xz
Files:
9b4eb9efb7309cdf3072a61da54988d7 2106 science optional maq_0.7.1-10.dsc
0755cf2ead65c79f61f093064a94bf28 12128 science optional
maq_0.7.1-10.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
iQJIBAEBCgAyFiEEj5GyJ8fW8rGUjII2eTz2fo8NEdoFAmaxPfkUHGVtb2xsaWVy
QGRlYmlhbi5vcmcACgkQeTz2fo8NEdr4Xw//WDepYckplG9TMUQFX/x4qJ193XSh
sPhtvrKAZ9abLZACqT0dEFQgJkUqSkuk/iRlUWj+VTJLWZh6haKSARTLuw8ToesB
w5QTd1KCiwBTukRSZjGBGedFw8PyMwwFYhr0cAe5UBdxCB956DPbV2Pghr4F6Ych
s4ogSlHlb3Ltx3+wZNVVRcJxi9dHfeDSnXa8q2IGHmNaL3WttCH/0nBZR7tTrHkH
mzFcZNhzu55sVv4mSMDTDzZTKoqNelGEpmc1rBIea5VSrAYrgzy7gORS2LbpA4IS
p+7ahSM3ys3I2f55mhqYV33TDgRI5gSNH4h1YGyTsyknqlxnusxQNxzUe6xx8eP0
xKvTMAEB80XwaKI8BWRwcHnDj/WPuuf8L5pRBFCnBgS2lxtXyz7WNRZ0BcRBMHSb
mlLL7Po0TTaPsT0jxArM3Vq921qs0TUxoIorzhEh0yueJpNnW3Nsc5FOnG16k3Ik
F5foKOwpeK1MB7sdzeRmQ63BZWSTZSzCWSYdApTz/WDfs01p3ppw/s+oqBCgnsXQ
WoqRFXvN/JE4QMttYaN95ytvHFvarfgpEFw7YL29Y33rUTBgSjp+97qOUASagkEG
9F+sX1WRMIUU+Fx6dld2QkjMoy5bS4BOa3w6mhpLvdLlx+R06gp8sjvpzn0GWoiq
jBLRrk4DM+v74Lg=
=oyv4
-----END PGP SIGNATURE-----
pgpGz15LD3eO9.pgp
Description: PGP signature
--- End Message ---