Your message dated Thu, 13 Aug 2020 20:34:45 +0000
with message-id <[email protected]>
and subject line Bug#957189: fixed in f-irc 1.36-1.1
has caused the Debian Bug report #957189,
regarding f-irc: ftbfs with GCC-10
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.)
--
957189: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=957189
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:f-irc
Version: 1.36-1
Severity: normal
Tags: sid bullseye
User: [email protected]
Usertags: ftbfs-gcc-10
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-10/g++-10, but succeeds to build with gcc-9/g++-9. The
severity of this report will be raised before the bullseye release,
so nothing has to be done for the buster release.
The full build log can be found at:
http://people.debian.org/~doko/logs/gcc10-20200225/f-irc_1.36-1_unstable_gcc10.log
The last lines of the build log are at the end of this report.
To build with GCC 10, either set CC=gcc-10 CXX=g++-10 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-10/porting_to.html
[...]
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-Wformat -Werror=format-security -DVERSION=\"1.36\"
-DSYSCONFDIR=\"/usr/local/etc\" -O3 -g -Wall -pedantic -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o dictionary.o dictionary.c
cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-Wformat -Werror=format-security -DVERSION=\"1.36\"
-DSYSCONFDIR=\"/usr/local/etc\" -O3 -g -Wall -pedantic -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o lf_buffer.o lf_buffer.c
cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-Wformat -Werror=format-security -DVERSION=\"1.36\"
-DSYSCONFDIR=\"/usr/local/etc\" -O3 -g -Wall -pedantic -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o ctcp.o ctcp.c
ctcp.c: In function ‘exec_and_strip_ctcp’:
ctcp.c:68:105: warning: macro "__DATE__" might prevent reproducible builds
[-Wdate-time]
68 | const char *reply = "f-irc v" VERSION " by [email protected] -
http://www.vanheusden.com/f-irc/ (" __DATE__ " " __TIME__ ")";
|
^~~~~~~~
ctcp.c:68:118: warning: macro "__TIME__" might prevent reproducible builds
[-Wdate-time]
68 | const char *reply = "f-irc v" VERSION " by [email protected] -
http://www.vanheusden.com/f-irc/ (" __DATE__ " " __TIME__ ")";
|
^~~~~~~~
ctcp.c:56:4: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
56 | asprintf(&temp, "* \002%s\002 %s", nick, work);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ctcp.c:125:6: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
125 | asprintf(&str_buffer, "Ping to %s took aproximately %f seconds",
ps -> user_ping, get_ts() - ps -> t_user_ping);
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ctcp.c:183:6: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
183 | asprintf(&reply, "%s (%s)", p -> pw_gecos, p -> pw_name);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ctcp.c:287:3: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
287 | asprintf(&out, "(incoming CTCP request)");
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-Wformat -Werror=format-security -DVERSION=\"1.36\"
-DSYSCONFDIR=\"/usr/local/etc\" -O3 -g -Wall -pedantic -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o headlines.o headlines.c
cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-Wformat -Werror=format-security -DVERSION=\"1.36\"
-DSYSCONFDIR=\"/usr/local/etc\" -O3 -g -Wall -pedantic -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o help.o help.c
help.c: In function ‘main_help’:
help.c:145:68: warning: macro "__DATE__" might prevent reproducible builds
[-Wdate-time]
145 | waddstr(win -> win, " Compiled on " __DATE__ " " __TIME__ "\n\n");
| ^
help.c:145:40: warning: macro "__TIME__" might prevent reproducible builds
[-Wdate-time]
145 | waddstr(win -> win, " Compiled on " __DATE__ " " __TIME__ "\n\n");
| ^~~~~~~~
help.c:147:4: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
147 | asprintf(&res, " Columns/rows: %dx%d\n\n", max_x, max_y);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help.c:151:4: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
151 | asprintf(&nc_vars, " Colors: %d, pairs: %d, pairs defined: %d, can
change colors: %s,\n nick color pairs: %d\n", COLORS, COLOR_PAIRS, n_cpairs,
can_change_color() ? "yes" : "no", n_nick_pairs);
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-Wformat -Werror=format-security -DVERSION=\"1.36\"
-DSYSCONFDIR=\"/usr/local/etc\" -O3 -g -Wall -pedantic -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o scrollback.o scrollback.c
scrollback.c: In function ‘search_in_buffer_popup’:
scrollback.c:42:2: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
42 | asprintf(&title, "Press left cursor key to exit | Searched %s", what);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
scrollback.c: In function ‘search_everywhere’:
scrollback.c:89:2: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
89 | asprintf(&title, "Press left cursor key to exit | Searched for %s",
what);
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
scrollback.c: In function ‘generate_line’:
scrollback.c:119:4: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
119 | asprintf(out, "%s|%s] %s", s_name, c_name, line -> msg);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
scrollback.c:123:4: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
123 | asprintf(out, "%s] %s", c_name, line -> msg);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
scrollback.c: In function ‘global_search’:
scrollback.c:223:2: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
223 | asprintf(&title, "Press left cursor key to exit | Global search for
%s", what);
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
scrollback.c: In function ‘scrollback_new’:
scrollback.c:253:2: warning: ignoring return value of ‘asprintf’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
253 | asprintf(&title, "Press left cursor key to exit | %s", title_in);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc -O3 -g string_array.o main.o theme.o buffer.o channels.o error.o utils.o
loop.o term.o tcp.o irc.o user.o names.o config.o dcc.o utf8.o key_value.o
wordcloud.o grep_filter.o nickcolor.o chistory.o autocomplete.o checkmail.o
servers.o colors.o ansi.o soundex.o ignores.o dictionary.o lf_buffer.o ctcp.o
headlines.o help.o scrollback.o -Wl,-z,relro -lpanelw -lncursesw -pthread -lm
-rdynamic -o f-irc
/usr/bin/ld: loop.o:(.bss+0x20): multiple definition of `theme';
theme.o:(.bss+0x20): first defined here
collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:22: f-irc] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j1 returned exit code 2
make: *** [debian/rules:3: build] Error 25
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: f-irc
Source-Version: 1.36-1.1
Done: Sudip Mukherjee <[email protected]>
We believe that the bug you reported is fixed in the latest version of
f-irc, 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.
Sudip Mukherjee <[email protected]> (supplier of updated f-irc 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: Tue, 11 Aug 2020 20:50:06 +0100
Source: f-irc
Architecture: source
Version: 1.36-1.1
Distribution: unstable
Urgency: medium
Maintainer: Folkert van Heusden <[email protected]>
Changed-By: Sudip Mukherjee <[email protected]>
Closes: 957189
Changes:
f-irc (1.36-1.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Fix ftbfs with GCC-10. (Closes: #957189)
Checksums-Sha1:
1d353856acffa93708338d04771e12447cdf7786 1710 f-irc_1.36-1.1.dsc
9aed8c5b772518e46c9b23487d812dfb010fb714 2180 f-irc_1.36-1.1.debian.tar.xz
190f17bcfe3f53a56d47a2a32534b264076598db 5745 f-irc_1.36-1.1_amd64.buildinfo
Checksums-Sha256:
6703fa1341f6d25e763a9a748ac4fe7f7dff53c2119533ec8beb5f4e339d3dfc 1710
f-irc_1.36-1.1.dsc
174572ccdf3e079c15486b719e24f6685af8f4f7f152b555f8ef4f76908ddbba 2180
f-irc_1.36-1.1.debian.tar.xz
763e21f70ceadf1873e59a44ded03b2d3a6462c69186a3d5dba7c3bc4f2917df 5745
f-irc_1.36-1.1_amd64.buildinfo
Files:
eae38c0babb18c261e49c4111d98f0c8 1710 comm optional f-irc_1.36-1.1.dsc
4095acfce07d589b4c00ff17cd3b5024 2180 comm optional
f-irc_1.36-1.1.debian.tar.xz
56124217c79912f176d3a000a0154e72 5745 comm optional
f-irc_1.36-1.1_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEuDQJkCg9jZvBlJrHR5mjUUbRKzUFAl8y9uoACgkQR5mjUUbR
KzXeOA/+NYeFqthSBHrNpkFzTWSYzmGlCZp3o1VflIlyWV5+u6EKI31MHtoMFyE8
r+EYh+a3i+PMT1g3z7cZLYkxPVaDD02asIPXmaFMtpXZou+HObHIQYAMGgsR1ycY
U9OzNj6mXYr0aM7zxlD+53yTmzJijMe7ERKe47lcWCwJDkEHx1SX0jtWHP1adVzE
15PX4+GaL7csAAc9+JkIlEyZGW7U4Y1VCNA0lhbEtINLsHWYr/jXzIKdIZTyIMK+
C9nH20XZB/C6XmIfs9W+iodU7GEa9T85ZIRERpIHH6GJ/UAWAA5aDOsZR3B1BPf8
0b5u/ikkqt8FUhyKrF8ibx3NNX2LIMUPqH6K4omt54Rl/XgpZqEyKmV9n2N8pU45
aEwsbzH4gWajV5X90gQpydTm/gTnxtmRarxBxWLuDh1PRrqmO14LxmZE4jiGL6MC
LtxXs6aMrXpE4MvH6xEM9Y3Kxkoh/AdaxLelKnVKgfeEN3Jyd7iqYL30/c/AEXwn
gw8hQiFS8/XY3Cz6eZXYDh19q/HWrUXQZ6Wa4kXnk0NIWkGvFeSi62hvA0A7PSdw
hn4U+LcXRNIUws2/r09C791VgwWs9ro3CCLRCC7nlC2yxCWF1zSkzJtQvrCvFvnK
pyCzrxg2GhCP9KXBNjIGdutJo51iS/Oxo0DNFwsvTkcpSSyIeFw=
=S9Fj
-----END PGP SIGNATURE-----
--- End Message ---