Your message dated Fri, 13 Sep 2024 18:44:11 +0000 with message-id <E1spBH9-0015tz-BI@fasolo.debian.org> and subject line Bug#1074980: fixed in gcin 2.9.0+dfsg1-3.1 has caused the Debian Bug report #1074980, regarding gcin: 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 owner@bugs.debian.org immediately.) -- 1074980: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1074980 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: maintonly@bugs.debian.org
- Subject: gcin: ftbfs with GCC-14
- From: Matthias Klose <doko@debian.org>
- Date: Wed, 03 Jul 2024 12:27:13 +0000
- Message-id: <E1sOz4r-0041AB-Qw@paradis.debian.org>
Package: src:gcin Version: 2.9.0+dfsg1-3 Severity: important Tags: sid trixie User: debian-gcc@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/gcin_2.9.0+dfsg1-3_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/gtkwidget.h:1144:14: note: declared here 1144 | void gtk_widget_override_color (GtkWidget *widget, | ^~~~~~~~~~~~~~~~~~~~~~~~~ win-gtab.cpp: In function ‘set_key_codes_label’: win-gtab.cpp:285:5: warning: ‘gtk_widget_override_color’ is deprecated [-Wdeprecated-declarations] 285 | gtk_widget_override_color(label_key_codes, GTK_STATE_FLAG_NORMAL, &better_color); | ^~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/gtk-3.0/gtk/gtkwidget.h:1144:14: note: declared here 1144 | void gtk_widget_override_color (GtkWidget *widget, | ^~~~~~~~~~~~~~~~~~~~~~~~~ win-gtab.cpp:291:5: warning: ‘gtk_widget_override_color’ is deprecated [-Wdeprecated-declarations] 291 | gtk_widget_override_color(label_key_codes, GTK_STATE_FLAG_NORMAL, NULL); | ^~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/gtk-3.0/gtk/gtkwidget.h:1144:14: note: declared here 1144 | void gtk_widget_override_color (GtkWidget *widget, | ^~~~~~~~~~~~~~~~~~~~~~~~~ win-gtab.cpp: In function ‘create_win_gtab_gui_simple’: win-gtab.cpp:486:3: warning: ‘gtk_vbox_new’ is deprecated: Use 'gtk_box_new' instead [-Wdeprecated-declarations] 486 | GtkWidget *vbox_top = gtk_vbox_new (FALSE, 0); | ^~~~~~~~~ In file included from gcin.h:29: gcin-gtk-compatible.h:96:21: note: declared here 96 | GtkWidget * gtk_vbox_new (gboolean homogeneous, | ^~~~~~~~~~~~ win-gtab.cpp:520:5: warning: ‘gtk_hbox_new’ is deprecated: Use 'gtk_box_new' instead [-Wdeprecated-declarations] 520 | hbox_edit = gtk_hbox_new (FALSE, 0); | ^~~~~~~~~ gcin-gtk-compatible.h:94:21: note: declared here 94 | GtkWidget * gtk_hbox_new (gboolean homogeneous, | ^~~~~~~~~~~~ win-gtab.cpp:522:5: warning: ‘gtk_alignment_new’ is deprecated [-Wdeprecated-declarations] 522 | GtkWidget *align_edit = gtk_alignment_new (0, 0.0, 0, 0); | ^~~~~~~~~ In file included from /usr/include/gtk-3.0/gtk/gtk.h:255: /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h:79:12: note: declared here 79 | GtkWidget* gtk_alignment_new (gfloat xalign, | ^~~~~~~~~~~~~~~~~ win-gtab.cpp:528:3: warning: ‘gtk_alignment_new’ is deprecated [-Wdeprecated-declarations] 528 | GtkWidget *align = gtk_alignment_new (0, 0.0, 0, 0); | ^~~~~~~~~ /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h:79:12: note: declared here 79 | GtkWidget* gtk_alignment_new (gfloat xalign, | ^~~~~~~~~~~~~~~~~ win-gtab.cpp:537:5: warning: ‘gtk_hbox_new’ is deprecated: Use 'gtk_box_new' instead [-Wdeprecated-declarations] 537 | GtkWidget *hbox_row1 = gtk_hbox_new (FALSE, 0); | ^~~~~~~~~ gcin-gtk-compatible.h:94:21: note: declared here 94 | GtkWidget * gtk_hbox_new (gboolean homogeneous, | ^~~~~~~~~~~~ win-gtab.cpp:558:3: warning: ‘gtk_hbox_new’ is deprecated: Use 'gtk_box_new' instead [-Wdeprecated-declarations] 558 | hbox_row2 = gtk_hbox_new (FALSE, 0); | ^~~~~~~~~ gcin-gtk-compatible.h:94:21: note: declared here 94 | GtkWidget * gtk_hbox_new (gboolean homogeneous, | ^~~~~~~~~~~~ win-gtab.cpp:643:22: error: passing argument 1 of ‘gtk_label_set_text’ from incompatible pointer type [-Wincompatible-pointer-types] 643 | gtk_label_set_text(label_key_codes, str_key_codes); | ^~~~~~~~~~~~~~~ | | | GtkWidget * {aka struct _GtkWidget *} In file included 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/gtklabel.h:95:67: note: expected ‘GtkLabel *’ {aka ‘struct _GtkLabel *’} but argument is of type ‘GtkWidget *’ {aka ‘struct _GtkWidget *’} 95 | void gtk_label_set_text (GtkLabel *label, | ~~~~~~~~~~~~~~~^~~~~ make[1]: *** [suffixes-rule:4: win-gtab.o] Error 1 make[1]: Leaving directory '/<<PKGBUILDDIR>>' dh_auto_build: error: make -j1 returned exit code 2 make: *** [debian/rules:18: binary] Error 25 dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
- To: 1074980-close@bugs.debian.org
- Subject: Bug#1074980: fixed in gcin 2.9.0+dfsg1-3.1
- From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>
- Date: Fri, 13 Sep 2024 18:44:11 +0000
- Message-id: <E1spBH9-0015tz-BI@fasolo.debian.org>
- Reply-to: Dmitry Shachnev <mitya57@debian.org>
Source: gcin Source-Version: 2.9.0+dfsg1-3.1 Done: Dmitry Shachnev <mitya57@debian.org> We believe that the bug you reported is fixed in the latest version of gcin, 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 1074980@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Dmitry Shachnev <mitya57@debian.org> (supplier of updated gcin 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 ftpmaster@ftp-master.debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 13 Sep 2024 20:51:54 +0300 Source: gcin Architecture: source Version: 2.9.0+dfsg1-3.1 Distribution: unstable Urgency: medium Maintainer: Debian Input Method Team <debian-input-method@lists.debian.org> Changed-By: Dmitry Shachnev <mitya57@debian.org> Closes: 1074980 Changes: gcin (2.9.0+dfsg1-3.1) unstable; urgency=medium . * Non-maintainer upload. * Add a patch to fix build with GCC 14. (Closes: #1074980) Checksums-Sha1: 716838ebc1f86198d9b9997adf224d10032dad75 2640 gcin_2.9.0+dfsg1-3.1.dsc deea251226927237110c1d78ad66b51be245c323 24348 gcin_2.9.0+dfsg1-3.1.debian.tar.xz 06ce0874ae073be54b3c6f4783500efd5ea30ff5 16022 gcin_2.9.0+dfsg1-3.1_source.buildinfo Checksums-Sha256: 2be971418f1e20a23c735f1dea12b0c22f9d5e433b30d83ff69d2c2a16cbcceb 2640 gcin_2.9.0+dfsg1-3.1.dsc b889cbc193f91e042e746e636aec7acf92ea473b1ec26e1b4b0e5b76fdb77953 24348 gcin_2.9.0+dfsg1-3.1.debian.tar.xz 6b218787a5f6e806d6d52607e13fd514764b1446db4eae46ee81529a0949e3f5 16022 gcin_2.9.0+dfsg1-3.1_source.buildinfo Files: afab884dd730c809dfc1cddda3c06f3a 2640 utils optional gcin_2.9.0+dfsg1-3.1.dsc caf30f58e94b39ea8a39bc9cd4099314 24348 utils optional gcin_2.9.0+dfsg1-3.1.debian.tar.xz 7be4747a71a42f7c354db3eb8e2e88a5 16022 utils optional gcin_2.9.0+dfsg1-3.1_source.buildinfo -----BEGIN PGP SIGNATURE----- iQJHBAEBCgAxFiEEq2sdvrA0LydXHe1qsmYUtFL0RrYFAmbkfFcTHG1pdHlhNTdA ZGViaWFuLm9yZwAKCRCyZhS0UvRGtsh0D/452yc/zeCYX03VRH9pXZ4bqPaBVPvy XunVIV9sC8pSrdwlHxrX2uLUoTy5JQNNrJeWb3qpj3vyM6Csc47TC+Dw8c4YMxqX Qy9+vhLxmcBWL59mWWbMbbpG2dvKTfHcCp5XLUxmUtk7QzYjb3bxVawg2VTbKj/v JFFvzKHPuc9S7lHOTVHdv+i/PAj9FmQRgleHn0J926iRWCP5x3SqzuUHcKb/BR3o zTDPTR5EOD7MpSTNUGMkxZe5J/4QZn6kGvsN1PDntz8lfedee6AJFCnQzOo/qCNg O/mkkDxzt2tTaAbdcbmKNVXBpruIaAX/4e1woarjjEjPo9jwTDpoDWT/ZRHvP7Pd CoRVgmw1/qbyjnNYTK+YKcIZ/BY4aPGemcdUy46hctHsP9NRyPA5YihdHH/pDLGO 97x1VxYgdDaLHpaaeL6IEAhrCpOt3/2Ip9G2pwSJ2hu+VynIV2BArqV0IT6L5N9V Ryc8p0Xzxl5i5FX+hmezUuY3yFapYMBlZD3ycuxONfLTrXLpZm97e9Ny44SQt7V1 cz4LbWDJv/gZsqcCkWLR3JyW6FJmzK09j4WAFiyxNk/xfSu6rVkuclOiJ3VlcyKy P6pKtk2aEG89KRO0sGjW35u6no8B9VpPFNXDHTC01nrjjuGPIAGl5ojbLIoV17a2 nfs3hQ8xKx7M9w== =dY39 -----END PGP SIGNATURE-----Attachment: pgpcN79wiaKLm.pgp
Description: PGP signature
--- End Message ---