Your message dated Sun, 25 Aug 2024 08:35:24 +0000
with message-id <[email protected]>
and subject line Bug#1074926: fixed in dwgsim 0.1.14-3
has caused the Debian Bug report #1074926,
regarding dwgsim: 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.)
--
1074926: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1074926
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:dwgsim
Version: 0.1.14-2
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/dwgsim_0.1.14-2_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
[...]
| |
| struct gzFile_s **
/usr/include/zlib.h:1471:39: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’}
but argument is of type ‘struct gzFile_s **’
1471 | ZEXTERN int ZEXPORTVA gzprintf(gzFile file, const char *format, ...);
| ~~~~~~~^~~~
src/dwgsim.c:1029:43: error: passing argument 1 of ‘gzputc’ from incompatible
pointer type [-Wincompatible-pointer-types]
1029 | gzputc(opt->fp_bfast, qstr[i]);
| ~~~^~~~~~~~~~
| |
| struct gzFile_s **
/usr/include/zlib.h:1508:35: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’}
but argument is of type ‘struct gzFile_s **’
1508 | ZEXTERN int ZEXPORT gzputc(gzFile file, int c);
| ~~~~~~~^~~~
src/dwgsim.c:1030:43: error: passing argument 1 of ‘gzprintf’ from incompatible
pointer type [-Wincompatible-pointer-types]
1030 | gzprintf(opt->fp_bfast, "\n");
| ~~~^~~~~~~~~~
| |
| struct gzFile_s **
/usr/include/zlib.h:1471:39: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’}
but argument is of type ‘struct gzFile_s **’
1471 | ZEXTERN int ZEXPORTVA gzprintf(gzFile file, const char *format, ...);
| ~~~~~~~^~~~
src/dwgsim.c: In function ‘main’:
src/dwgsim.c:1088:25: error: assignment to ‘struct gzFile_s **’ from
incompatible pointer type ‘gzFile’ {aka ‘struct gzFile_s *’}
[-Wincompatible-pointer-types]
1088 | opt->fp_bfast = gzopen(fn_tmp, "w");
| ^
src/dwgsim.c:1092:24: error: assignment to ‘struct gzFile_s **’ from
incompatible pointer type ‘gzFile’ {aka ‘struct gzFile_s *’}
[-Wincompatible-pointer-types]
1092 | opt->fp_bwa1 = gzopen(fn_tmp, "w");
| ^
src/dwgsim.c:1094:24: error: assignment to ‘struct gzFile_s **’ from
incompatible pointer type ‘gzFile’ {aka ‘struct gzFile_s *’}
[-Wincompatible-pointer-types]
1094 | opt->fp_bwa2 = gzopen(fn_tmp, "w");
| ^
src/dwgsim.c:1104:22: error: passing argument 1 of ‘gzclose’ from incompatible
pointer type [-Wincompatible-pointer-types]
1104 | gzclose(opt->fp_bfast);
| ~~~^~~~~~~~~~
| |
| 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);
| ~~~~~~~^~~~
src/dwgsim.c:1107:22: error: passing argument 1 of ‘gzclose’ from incompatible
pointer type [-Wincompatible-pointer-types]
1107 | gzclose(opt->fp_bwa1); gzclose(opt->fp_bwa2);
| ~~~^~~~~~~~~
| |
| 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);
| ~~~~~~~^~~~
src/dwgsim.c:1107:45: error: passing argument 1 of ‘gzclose’ from incompatible
pointer type [-Wincompatible-pointer-types]
1107 | gzclose(opt->fp_bwa1); gzclose(opt->fp_bwa2);
| ~~~^~~~~~~~~
| |
| 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);
| ~~~~~~~^~~~
In file included from src/dwgsim.c:46:
src/mut.h: At top level:
src/mut.h:62:1: warning: inline function ‘mut_get_ins_long_n’ declared but
never defined
62 | mut_get_ins_long_n(uint8_t *ins, uint32_t *n);
| ^~~~~~~~~~~~~~~~~~
src/mut.h:59:1: warning: inline function ‘mut_get_ins_bytes’ declared but never
defined
59 | mut_get_ins_bytes(int32_t n);
| ^~~~~~~~~~~~~~~~~
make[2]: *** [Makefile:21: src/dwgsim.o] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j8 "INSTALL=install --strip-program=true" returned
exit code 2
make[1]: *** [debian/rules:15: override_dh_auto_build] Error 25
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:10: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: dwgsim
Source-Version: 0.1.14-3
Done: Étienne Mollier <[email protected]>
We believe that the bug you reported is fixed in the latest version of
dwgsim, 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 dwgsim 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: Sun, 25 Aug 2024 09:38:11 +0200
Source: dwgsim
Architecture: source
Version: 0.1.14-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team
<[email protected]>
Changed-By: Étienne Mollier <[email protected]>
Closes: 1044706 1049717 1074926
Changes:
dwgsim (0.1.14-3) unstable; urgency=medium
.
* Team upload.
* d/rules: workaround build failure with gcc 14. (Closes: #1074926)
* remove-travis-ci-link.patch: remove unused patch.
* d/clean: properly cleanup multiple build artifacts.
(Closes: #1044706, #1049717)
* d/control: declare compliance to standards version 4.7.0.
Checksums-Sha1:
6206d3366439d6a033d106271c7f900346ee468a 2114 dwgsim_0.1.14-3.dsc
5846d1935eaba7867a1bc9d112a0c4037aa9ad69 7704 dwgsim_0.1.14-3.debian.tar.xz
Checksums-Sha256:
5a247c2302339ede067f0d2006f9aa8d7a034e41020db8001bd3bd91a4780d48 2114
dwgsim_0.1.14-3.dsc
1d159801db359cadf25ddf361f872b398ef536795fa26a9e7e2f055ff1d43761 7704
dwgsim_0.1.14-3.debian.tar.xz
Files:
6f1423151bda797bbad80e758ae9fad0 2114 science optional dwgsim_0.1.14-3.dsc
356b48f44bcf7ad2bcdefbb86f23b1cb 7704 science optional
dwgsim_0.1.14-3.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
iQJIBAEBCgAyFiEEj5GyJ8fW8rGUjII2eTz2fo8NEdoFAmbK5pUUHGVtb2xsaWVy
QGRlYmlhbi5vcmcACgkQeTz2fo8NEdrzIA/7B1PNOGvJ/rb7IQvITWlDz8HuEibt
+eWDQHngfFm+S2FsaLYERI2SZXZ4UIxjLosDlzpmOI/E9PuO5SMiXU+HHiWzHvGb
vhRJl/RZP/4QSyyRpX1N/FICDueIAPwUdY1JLXhqobVJVAM9A9G50Cs5rxsd7ne8
TNzpvbPFL5mlDS05y18xZoxj2F8cog6l2qh3+4P+XfXGwjXVI8U9bv3Pg99nGdYN
6Uf1QO2L2yBDwVC1iIa+Lo+mnt99J0V1AzphDzQISALoVua/Pqe1Z0TN+6f3BSYo
zfP4KsFC6AJwknLMtmDDD8Mbp2YrG59MnzVmFFJa/zXzazcA1hzh5X3W0UxofKI1
0UZ4LprgrrtKuh1aJbBdj44bEnM28InD+reKmXppDHNxQq+aYLpFrwxvZLMK657X
74ACmcAhZ5WnosCAXsQs5+A7WlxqQLqN5yuKisDyOO4CvfMJticRkwHb0uLqprNm
TjDYgOKDO1rjEflYucWatDmwDj3ixV5OahOoEA2rwsx4fjmSpPW8Mm2Tl0yJI9hU
tVgrrtJxLaxiF1ySTX9rEbtjUprtHtnj10OQeiJH0+Y+WazxM22IdHjEejvUS9T8
Q0uk6HuszvVoujUSm7OsogwmmvBwzDxsxfCo390gMKK7r6mclktLdYfIhNO+3dL4
PDaHLQWpM/+qUso=
=ggHI
-----END PGP SIGNATURE-----
pgpg7IOsjQ2oE.pgp
Description: PGP signature
--- End Message ---