Your message dated Sun, 01 Dec 2024 20:36:37 +0000
with message-id <e1thqgh-00fbvk...@fasolo.debian.org>
and subject line Bug#1081126: fixed in gfpoken 1-5
has caused the Debian Bug report #1081126,
regarding gfpoken: FTBFS: ‘return’ with no value in function returning int
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.)
--
1081126: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1081126
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:gfpoken
Version: 1-4
Severity: serious
Tags: ftbfs
Dear maintainer:
During a rebuild of all packages in unstable, your package failed to build:
--------------------------------------------------------------------------------
[...]
main.c: In function ‘leveldraw_drag_end’:
main.c:681:17: error: ‘return’ with no value, in function returning non-void
[-Wreturn-mismatch]
681 | return;
| ^~~~~~
main.c:678:10: note: declared here
678 | gboolean leveldraw_drag_end ()
| ^~~~~~~~~~~~~~~~~~
main.c:684:17: error: ‘return’ with no value, in function returning non-void
[-Wreturn-mismatch]
684 | return;
| ^~~~~~
main.c:678:10: note: declared here
678 | gboolean leveldraw_drag_end ()
| ^~~~~~~~~~~~~~~~~~
make[2]: *** [Makefile:636: gfpoken-main.o] Error 1
make[2]: *** Waiting for unfinished jobs....
In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
from /usr/include/gtk-2.0/gtk/gtk.h:33,
from gfp.h:21,
from multi.c:36:
/usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: ‘GTypeDebugFlags’ is
deprecated [-Wdeprecated-declarations]
236 | void gtk_type_init (GTypeDebugFlags debug_flags);
| ^~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
from /usr/include/glib-2.0/gobject/gbinding.h:31,
from /usr/include/glib-2.0/glib-object.h:24,
from /usr/include/glib-2.0/gio/gioenums.h:30,
from /usr/include/glib-2.0/gio/giotypes.h:30,
from /usr/include/glib-2.0/gio/gio.h:28,
from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
from /usr/include/gtk-2.0/gdk/gdk.h:32,
from /usr/include/gtk-2.0/gtk/gtk.h:32:
/usr/include/glib-2.0/gobject/gtype.h:725:1: note: declared here
725 | {
| ^
In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
from /usr/include/gtk-2.0/gtk/gtk.h:126:
/usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: ‘GTimeVal’ is deprecated:
Use 'GDateTime' instead [-Wdeprecated-declarations]
73 | GTimeVal last_popdown;
| ^~~~~~~~
In file included from /usr/include/glib-2.0/glib/galloca.h:34,
from /usr/include/glib-2.0/glib.h:32,
from /usr/include/glib-2.0/gobject/gbinding.h:30:
/usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
580 | struct _GTimeVal
| ^~~~~~~~~
multi.c: In function ‘netsend’:
multi.c:314:3: warning: ignoring return value of ‘write’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
314 | write(remotesock, transdata, strlen(transdata));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
multi.c: In function ‘clientmonitor’:
multi.c:486:7: warning: ignoring return value of ‘write’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
486 | write(remotesock, newin, strlen(newin));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
multi.c: In function ‘servermonitor’:
multi.c:616:7: warning: ignoring return value of ‘write’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
616 | write(remotesock, newin, strlen(newin));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
multi.c:679:7: warning: ignoring return value of ‘write’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
679 | write(remotesock, newin, strlen(newin));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
multi.c: In function ‘accept_loop_timeout’:
multi.c:711:3: warning: ignoring return value of ‘write’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
711 | write(remotesock, "GFingerPoken\n", 13);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
multi.c: In function ‘clientmonitor’:
multi.c:490:69: warning: ‘%s’ directive writing up to 77 bytes into a region of
size 32 [-Wformat-overflow=]
490 | sprintf(newin, "Client: Server running an incompatible version,
%s", netin+2);
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
In file included from /usr/include/stdio.h:970,
from multi.c:29:
In function ‘sprintf’,
inlined from ‘clientmonitor’ at multi.c:490:5:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note:
‘__builtin___sprintf_chk’ output between 49 and 126 bytes into a destination of
size 80
30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), __fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 | __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
multi.c: In function ‘servermonitor’:
multi.c:613:59: warning: ‘%s’ directive writing up to 77 bytes into a region of
size 44 [-Wformat-overflow=]
613 | sprintf(newin, "Server: Incompatible client version %s",netin+2);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
In function ‘sprintf’,
inlined from ‘servermonitor’ at multi.c:613:7:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note:
‘__builtin___sprintf_chk’ output between 37 and 114 bytes into a destination of
size 80
30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), __fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 | __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j2 returned exit code 2
make[1]: *** [debian/rules:12: override_dh_auto_build] Error 25
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:6: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--------------------------------------------------------------------------------
The above is just how the build ends and not necessarily the most relevant part.
If required, the full build log is available here:
https://people.debian.org/~sanvila/build-logs/202409/
About the archive rebuild: The build was made on virtual machines
of type m6a.large and r6a.large from AWS, using sbuild and a
reduced chroot with only build-essential packages.
If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.
If this is really a bug in one of the build-depends, please use
reassign and affects, so that this is still visible in the BTS web
page for this package.
[ Note: This is my third try at sending this bug. Apologies if you receive
it by duplicate, there must be some aggressive spam filter in the BTS ]
Thanks.
--- End Message ---
--- Begin Message ---
Source: gfpoken
Source-Version: 1-5
Done: Alexandre Detiste <tc...@debian.org>
We believe that the bug you reported is fixed in the latest version of
gfpoken, 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 1081...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Alexandre Detiste <tc...@debian.org> (supplier of updated gfpoken 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: Sun, 01 Dec 2024 20:46:26 +0100
Source: gfpoken
Architecture: source
Version: 1-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team <pkg-games-de...@lists.alioth.debian.org>
Changed-By: Alexandre Detiste <tc...@debian.org>
Closes: 1081126
Changes:
gfpoken (1-5) unstable; urgency=medium
.
* Team upload.
* Fix FTBFS with GCC-14 (Closes: #1081126)
* Set Rules-Requires-Root: no
.
[ Debian Janitor ]
* Set upstream metadata fields: Name (from ./configure), Repository-Browse.
* Fix day-of-week for changelog entries 0.27-2, 0.26-1.
Checksums-Sha1:
2a76a924098afd04a9c5c7b078ba6a8ea5154dc9 1987 gfpoken_1-5.dsc
cadc86e144d83794d41744b1b69e7a4e78aeb2a1 5428 gfpoken_1-5.debian.tar.xz
3885bd9dd235fa9d1646cc053e1b23278fa54879 25051 gfpoken_1-5_source.buildinfo
Checksums-Sha256:
d002c815c984fc0cff6bbbdaed46c05206b011f81a3a48ed25a4911270707d65 1987
gfpoken_1-5.dsc
7ac2832e8abb9d6614326bcdb5f7572d8194c14da03405f32043aa60fa427b24 5428
gfpoken_1-5.debian.tar.xz
ec6f5585899f0f03830230d685acaf3e0deec5fb5b780020ced8fc9b24696d93 25051
gfpoken_1-5_source.buildinfo
Files:
fa188a71e752f41c5d0bd208a1b06120 1987 games optional gfpoken_1-5.dsc
2399316ffaee072cedc86dce5099797c 5428 games optional gfpoken_1-5.debian.tar.xz
79e5c4117f15918f43e4c9fb2030b4d6 25051 games optional
gfpoken_1-5_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJFBAEBCgAvFiEEj23hBDd/OxHnQXSHMfMURUShdBoFAmdMwoIRHHRjaGV0QGRl
Ymlhbi5vcmcACgkQMfMURUShdBpbng/9GTfEmfeSeszfPplpSvcwjQrPAGQYK7en
LvGQ+r4lG/ybmvnE2RavkP/k+RGVXXsR6R6h457BNlY2z8nRS4cn/ojCTqIm288E
MYSY4d3TBA0yMGdJbOajckXtRlce1WXmPcTgEN6DqAPYRE5972sbh1d25oyxjpNz
Q5zgsN2VFZ+iUaXTSytlGCIHEQavRdTYYBD0l7YofyYHQdB/zIAOdRfiJJOLmAWc
lUT7hvhNyVJtl3iqF3rJKVe9sy0zD9HieOMkmVZG1RFDIPGYQS4+kooFk8eCJk5K
rMmaUZCjASGfai1+PRYJJkCM4HMrKRfyuOjTjA6of+4gA8kvfxNeUdE6Rr2ZZ/4O
mJc5pxj6CtzVHQAcbyMFGFST6KT6YoTcxKrYfocyV0YjUbVRSCGOwcTvGd3TQ8zZ
F9m9oO7lpiLDAkt8o80y0FHc/DHHHMDYDv3gw8HTh2QCVxO56CefL1H89g22HaFi
RtHNLWwu2ZLyOgUGn4bAxVsY5BEqCok8DBEpFTA3yPYLgUR9CjXHVf16iqKtHTGV
oM6fDwquafZUG0yyOSR81RiC/Or4yJyp25g010mdpNeWHVJO0/fFiooVEpG1a7Cj
MQtlIjDx63LXJg3AiRZE50gX9QPsvMuZVlbU0eEV8M6JVDWpCZujWlvH8rLzxN1t
22GgqWXDFQQ=
=tj7D
-----END PGP SIGNATURE-----
pgpfucP_oGYQj.pgp
Description: PGP signature
--- End Message ---