Your message dated Sat, 24 Aug 2024 22:07:04 +0000
with message-id <e1shyuw-00elri...@fasolo.debian.org>
and subject line Bug#1079001: Removed package(s) from unstable
has caused the Debian Bug report #1075268,
regarding mgt: 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.)
--
1075268: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075268
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:mgt
Version: 2.31-9
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/mgt_2.31-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
[...]
make -j8 clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
removing extra files...
done.
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_clean
debian/rules build
dh build
dh_update_autotools_config
dh_autoreconf
dh_auto_configure
debian/rules override_dh_auto_build
make[1]: Entering directory '/<<PKGBUILDDIR>>'
dh_auto_build -- 'LD=$(CC)'
make -j8 "INSTALL=install --strip-program=true" LD=\$\(CC\)
make[2]: Entering directory '/<<PKGBUILDDIR>>'
cc -O -Wdate-time -D_FORTIFY_SOURCE=2 -DMGT_UNIX
-DMGT_LIB=\"/usr/lib/games/mgt/\" -c -o help.o help.c
cc -O -Wdate-time -D_FORTIFY_SOURCE=2 -DMGT_UNIX
-DMGT_LIB=\"/usr/lib/games/mgt/\" -c -o build.o build.c
cc -O -Wdate-time -D_FORTIFY_SOURCE=2 -DMGT_UNIX
-DMGT_LIB=\"/usr/lib/games/mgt/\" -c -o comment.o comment.c
Begin...
cc -O -Wdate-time -D_FORTIFY_SOURCE=2 -DMGT_UNIX
-DMGT_LIB=\"/usr/lib/games/mgt/\" -c -o doit.o doit.c
cc -O -Wdate-time -D_FORTIFY_SOURCE=2 -DMGT_UNIX
-DMGT_LIB=\"/usr/lib/games/mgt/\" -c -o edit.o edit.c
cc -O -Wdate-time -D_FORTIFY_SOURCE=2 -DMGT_UNIX
-DMGT_LIB=\"/usr/lib/games/mgt/\" -c -o mgt.o mgt.c
cc -O -Wdate-time -D_FORTIFY_SOURCE=2 -DMGT_UNIX
-DMGT_LIB=\"/usr/lib/games/mgt/\" -c -o parse.o parse.c
cc -O -Wdate-time -D_FORTIFY_SOURCE=2 -DMGT_UNIX
-DMGT_LIB=\"/usr/lib/games/mgt/\" -c -o play.o play.c
cc -O -Wdate-time -D_FORTIFY_SOURCE=2 -DMGT_UNIX
-DMGT_LIB=\"/usr/lib/games/mgt/\" -c -o tree.o tree.c
play.c: In function ‘inRange’:
play.c:75:18: error: type of ‘i’ defaults to ‘int’ [-Wimplicit-int]
75 | FUNCTION boolean inRange(i, j)
| ^~~~~~~
play.c:75:18: error: type of ‘j’ defaults to ‘int’ [-Wimplicit-int]
make[2]: *** [Makefile:96: play.o] Error 1
make[2]: *** Waiting for unfinished jobs....
mgt.c: In function ‘myexit’:
mgt.c:84:4: error: implicit declaration of function ‘exit’
[-Wimplicit-function-declaration]
84 | exit(retVal);
| ^~~~
mgt.c:7:1: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
6 | #include "mgt.h"
+++ |+#include <stdlib.h>
7 |
mgt.c:84:4: warning: incompatible implicit declaration of built-in function
‘exit’ [-Wbuiltin-declaration-mismatch]
84 | exit(retVal);
| ^~~~
mgt.c:84:4: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
mgt.c: In function ‘barf’:
mgt.c:116:4: warning: incompatible implicit declaration of built-in function
‘exit’ [-Wbuiltin-declaration-mismatch]
116 | exit(1);
| ^~~~
mgt.c:116:4: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
mgt.c: In function ‘helpCommandLine’:
mgt.c:159:4: warning: incompatible implicit declaration of built-in function
‘exit’ [-Wbuiltin-declaration-mismatch]
159 | exit(2);
| ^~~~
mgt.c:159:4: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
make[2]: *** [Makefile:96: mgt.o] Error 1
parse.c: In function ‘readChar’:
parse.c:128:4: warning: ignoring return value of ‘fgets’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
128 | fgets(&buf[0], 1023, input);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
parse.c: In function ‘getCoordStr’:
parse.c:142:7: warning: ignoring return value of ‘fgets’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
142 | fgets(dest, 1023, input);
| ^~~~~~~~~~~~~~~~~~~~~~~~
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j8 "INSTALL=install --strip-program=true"
LD=\$\(CC\) returned exit code 2
make[1]: *** [debian/rules:7: override_dh_auto_build] Error 25
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:4: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Version: 2.31-9+rm
Dear submitter,
as the package mgt has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/1079001
The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.
Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.
Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---