Your message dated Thu, 03 Apr 2025 20:51:23 +0000
with message-id <e1u0rx1-00h7e8...@fasolo.debian.org>
and subject line Bug#1075243: fixed in lxpanel 0.10.1-4.1
has caused the Debian Bug report #1075243,
regarding lxpanel: 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.)
--
1075243: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075243
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:lxpanel
Version: 0.10.1-4
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/lxpanel_0.10.1-4_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
[...]
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:76:12: note: declared
here
76 | GType gtk_image_menu_item_get_type (void) G_GNUC_CONST;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
menu.c:533:17: warning: ‘gtk_image_menu_item_get_image’ is deprecated
[-Wdeprecated-declarations]
533 | img =
GTK_IMAGE(gtk_image_menu_item_get_image(GTK_IMAGE_MENU_ITEM(item)));
| ^~~
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:95:12: note: declared
here
95 | GtkWidget* gtk_image_menu_item_get_image (GtkImageMenuItem
*image_menu_item);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
menu.c: In function ‘show_menu’:
menu.c:631:5: warning: ‘gtk_menu_popup’ is deprecated: Use
'(gtk_menu_popup_at_widget, gtk_menu_popup_at_pointer, gtk_menu_popup_at_rect)'
instead [-Wdeprecated-declarations]
631 | gtk_menu_popup(GTK_MENU(m->menu),
| ^~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gtk/gtklabel.h:34,
from /usr/include/gtk-3.0/gtk/gtkaccellabel.h:35,
from /usr/include/gtk-3.0/gtk/gtk.h:33:
/usr/include/gtk-3.0/gtk/gtkmenu.h:138:12: note: declared here
138 | void gtk_menu_popup (GtkMenu *menu,
| ^~~~~~~~~~~~~~
menu.c: In function ‘read_item’:
menu.c:752:9: warning: ‘gtk_image_menu_item_new_with_label’ is deprecated: Use
'gtk_menu_item_new_with_label' instead [-Wdeprecated-declarations]
752 | item = gtk_image_menu_item_new_with_label(
_(cmd_entry->disp_name) );
| ^~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:80:12: note: declared
here
80 | GtkWidget* gtk_image_menu_item_new_with_label (const gchar
*label);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
menu.c:757:9: warning: ‘gtk_image_menu_item_new_with_label’ is deprecated: Use
'gtk_menu_item_new_with_label' instead [-Wdeprecated-declarations]
757 | item = gtk_image_menu_item_new_with_label(name ? name : "");
| ^~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:80:12: note: declared
here
80 | GtkWidget* gtk_image_menu_item_new_with_label (const gchar
*label);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
menu.c:771:9: warning: ‘gtk_image_menu_item_set_image’ is deprecated
[-Wdeprecated-declarations]
771 | gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:92:12: note: declared
here
92 | void gtk_image_menu_item_set_image (GtkImageMenuItem
*image_menu_item,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
menu.c: In function ‘read_submenu’:
menu.c:870:9: warning: ‘gdk_color_parse’ is deprecated: Use 'gdk_rgba_parse'
instead [-Wdeprecated-declarations]
870 | gdk_color_parse(str, &color);
| ^~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gdk/gdkcairo.h:26,
from /usr/include/gtk-3.0/gdk/gdk.h:33,
from /usr/include/gtk-3.0/gtk/gtk.h:30:
/usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h:79:11: note: declared here
79 | gboolean gdk_color_parse (const gchar *spec,
| ^~~~~~~~~~~~~~~
menu.c:901:9: warning: ‘gtk_image_menu_item_new_with_label’ is deprecated: Use
'gtk_menu_item_new_with_label' instead [-Wdeprecated-declarations]
901 | mi = gtk_image_menu_item_new_with_label(name);
| ^~
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:80:12: note: declared
here
80 | GtkWidget* gtk_image_menu_item_new_with_label (const gchar
*label);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
menu.c:907:13: warning: ‘gtk_image_menu_item_set_image’ is deprecated
[-Wdeprecated-declarations]
907 | gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(mi), img);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:92:12: note: declared
here
92 | void gtk_image_menu_item_set_image (GtkImageMenuItem
*image_menu_item,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make[4]: Leaving directory '/<<PKGBUILDDIR>>/plugins'
make[3]: *** [Makefile:1109: builtin-plugins-hook] Error 2
make[3]: Leaving directory '/<<PKGBUILDDIR>>/src'
make[2]: *** [Makefile:523: all-recursive] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
make[1]: *** [Makefile:426: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:9: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: lxpanel
Source-Version: 0.10.1-4.1
Done: Bastian Germann <b...@barriere.debian.org>
We believe that the bug you reported is fixed in the latest version of
lxpanel, 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 1075...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Bastian Germann <b...@barriere.debian.org> (supplier of updated lxpanel 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: Thu, 03 Apr 2025 20:00:17 +0000
Source: lxpanel
Architecture: source
Version: 0.10.1-4.1
Distribution: unstable
Urgency: medium
Maintainer: Debian LXDE Maintainers <team+l...@tracker.debian.org>
Changed-By: Bastian Germann <b...@barriere.debian.org>
Closes: 1075243
Changes:
lxpanel (0.10.1-4.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Build with gcc-14 (Closes: #1075243).
Checksums-Sha1:
6a540b351e0c9568dae7e233ed8c44bcd5d80f23 2210 lxpanel_0.10.1-4.1.dsc
f8daa5a3ed21256a65e0be7460e4e7744ab6c5b2 15744 lxpanel_0.10.1-4.1.debian.tar.xz
bb3ccbb646a6ef43e881328fe00ca0479f46e2dd 16662
lxpanel_0.10.1-4.1_source.buildinfo
Checksums-Sha256:
fe27941856030ec88ebeac181f5e95c8559ed995630406184530c8842b758c62 2210
lxpanel_0.10.1-4.1.dsc
19751f22f9072c44f62e3a1543ffabca57c83496971d0bac59611cce5d7b3602 15744
lxpanel_0.10.1-4.1.debian.tar.xz
98466c4d602a9deb68326367ee320acbf5efaba938df15498b21e0ed24b29f33 16662
lxpanel_0.10.1-4.1_source.buildinfo
Files:
612994f0003d54b6ee6458154da0f9e2 2210 x11 optional lxpanel_0.10.1-4.1.dsc
cf98398b27e04d6431cba46b173b5429 15744 x11 optional
lxpanel_0.10.1-4.1.debian.tar.xz
b4c55eefe1b5d609b4c1f7f1d251c0d3 16662 x11 optional
lxpanel_0.10.1-4.1_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQHEBAEBCgAuFiEEQGIgyLhVKAI3jM5BH1x6i0VWQxQFAmfu6nAQHGJhZ2VAZGVi
aWFuLm9yZwAKCRAfXHqLRVZDFEsYDACDj9+I+b9kdmIY0x6yxTQLdQc6ofHd8hb9
gvCoVsZv93bnNhgeRr7NN16iJgHdBHphUtxSAPztbxzpnGN9W2yIp6z71EMLjrnN
UMAWOfl4rg41w4RCFcw43gQEzRcXxorfv9USKCVcjkahaRsf8wYV6ZhpELa/TvSt
xClY/cz20/sCaY3qXCpTNP/QyfWUat7V9BYm64MrrtZ2YfZCj8F648ATvpWbG+is
w50m/GQziVMgEfMXpHonXR7My1MRq/6pHA3sy1aQtoLxvhlWMDbMZTBF9hmbSpp9
2ZyvYdLVQF7OXrc9cmB10LTwMUCGwGbi8zowdX+lUVUDW8jis++167je9s/QM3wH
yWOL3e/GGTkzRR+gMD7HJrEL9AAyu9yO3ykdRFjmJCKIhJR1Nbn74jurNNSiGTky
M8O7kenZF0s++/oYGlL9BsZi/4zTXHZlJYT9btX+Xthz1GO+ugo8k3BQsbTR3bF+
tYf71DcTpZF9/qS10LPGM+5/kIv0JWE=
=GlTV
-----END PGP SIGNATURE-----
pgpLC_bNqMzKN.pgp
Description: PGP signature
--- End Message ---