Your message dated Tue, 30 Dec 2025 09:34:36 +0000
with message-id <[email protected]>
and subject line Bug#1096669: fixed in galculator 2.1.4-2.1
has caused the Debian Bug report #1096669,
regarding galculator: ftbfs with GCC-15
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.)
--
1096669: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1096669
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:galculator
Version: 2.1.4-2
Severity: important
Tags: sid forky
User: [email protected]
Usertags: ftbfs-gcc-15
[This bug is NOT 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-15/g++-15, but succeeds to build with gcc-14/g++-14. The
severity of this report will be raised before the forky release.
The full build log can be found at:
http://qa-logs.debian.net/2025/02/16/amd64exp/galculator_2.1.4-2_unstable_gccexp.log.gz
The last lines of the build log are at the end of this report.
To build with GCC 15, either set CC=gcc-15 CXX=g++-15 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.
apt-get -t=experimental install g++
GCC 15 now defaults to the C23/C++23 standards, exposing many FTBFS.
Other 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-15/porting_to.html
[...]
| ^~~~~~~~~~~~~~
ui.c:1180:6: error: conflicting types for ‘ui_formula_entry_state’; have
‘void(gboolean)’ {aka ‘void(int)’}
1180 | void ui_formula_entry_state (gboolean error)
| ^~~~~~~~~~~~~~~~~~~~~~
In file included from ui.c:26:
ui.h:77:6: note: previous declaration of ‘ui_formula_entry_state’ with type
‘void(void)’
77 | void ui_formula_entry_state ();
| ^~~~~~~~~~~~~~~~~~~~~~
ui.c: In function ‘ui_formula_entry_state’:
ui.c:1190:9: warning: ‘gtk_widget_override_color’ is deprecated
[-Wdeprecated-declarations]
1190 | gtk_widget_override_color (formula_entry,
GTK_STATE_FLAG_NORMAL, pcolor);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/gtkwidget.h:1144:14: note: declared here
1144 | void gtk_widget_override_color (GtkWidget
*widget,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
ui.c:1191:5: warning: ‘gtk_widget_override_color’ is deprecated
[-Wdeprecated-declarations]
1191 | gtk_widget_override_color (formula_entry, GTK_STATE_FLAG_ACTIVE,
pcolor);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/gtkwidget.h:1144:14: note: declared here
1144 | void gtk_widget_override_color (GtkWidget
*widget,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
ui.c:1192:5: warning: ‘gtk_widget_override_color’ is deprecated
[-Wdeprecated-declarations]
1192 | gtk_widget_override_color (formula_entry, GTK_STATE_FLAG_PRELIGHT,
pcolor);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
gcc -DHAVE_CONFIG_H -I. -I.. -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\"
-DPACKAGE_UI_DIR=\""/usr/share/galculator/ui"\"
-DPACKAGE_PIXMAPS_DIR=\""/usr/share/pixmaps"\" -DGDK_DISABLE_DEPRECATED
-DGTK_DISABLE_DEPRECATED -DGSEAL_ENABLE -Wdate-time -D_FORTIFY_SOURCE=2
-I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6
-I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16
-I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi
-I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0
-I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/gio-unix-2.0
-I/usr/include/cloudproviders -I/usr/include/atk-1.0
-I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0
-I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -pthread
-g -O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/build/reproducible-path/galculator-2.1.4
=. -fstack-protector-strong -fstack-clash-protection -Wformat
-Werror=format-security -fcf-protection -Wall -c -o galculator-flex_parser.o
`test -f 'flex_parser.c' || echo './'`flex_parser.c
/usr/include/gtk-3.0/gtk/gtkwidget.h:1144:14: note: declared here
1144 | void gtk_widget_override_color (GtkWidget
*widget,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
callbacks.c: In function ‘on_button_press_event’:
ui.c:1193:5: warning: ‘gtk_widget_override_color’ is deprecated
[-Wdeprecated-declarations]
1193 | gtk_widget_override_color (formula_entry,
GTK_STATE_FLAG_INSENSITIVE, pcolor);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/gtkwidget.h:1144:14: note: declared here
1144 | void gtk_widget_override_color (GtkWidget
*widget,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
callbacks.c:1628: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]
1628 | gtk_menu_popup ((GtkMenu *) menu, NULL, NULL, NULL, NULL, 3,
event->time);
| ^~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/gtkmenu.h:138:12: note: declared here
138 | void gtk_menu_popup (GtkMenu *menu,
| ^~~~~~~~~~~~~~
callbacks.c: In function ‘on_formula_entry_activate’:
callbacks.c:1637:5: error: too many arguments to function
‘ui_formula_entry_state’; expected 0, have 1
1637 | ui_formula_entry_state (result.error);
| ^~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~
In file included from callbacks.c:33:
ui.h:77:6: note: declared here
77 | void ui_formula_entry_state ();
| ^~~~~~~~~~~~~~~~~~~~~~
callbacks.c: In function ‘on_formula_entry_changed’:
callbacks.c:1643:5: error: too many arguments to function
‘ui_formula_entry_state’; expected 0, have 1
1643 | ui_formula_entry_state(FALSE);
| ^~~~~~~~~~~~~~~~~~~~~~
ui.h:77:6: note: declared here
77 | void ui_formula_entry_state ();
| ^~~~~~~~~~~~~~~~~~~~~~
make[3]: *** [Makefile:622: galculator-ui.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:608: galculator-callbacks.o] Error 1
flex_parser.c:1549:16: warning: ‘input’ defined but not used [-Wunused-function]
1549 | static int input (void)
| ^~~~~
make[3]: Leaving directory '/build/reproducible-path/galculator-2.1.4/src'
make[2]: *** [Makefile:535: all-recursive] Error 1
make[2]: Leaving directory '/build/reproducible-path/galculator-2.1.4'
make[1]: *** [Makefile:423: all] Error 2
make[1]: Leaving directory '/build/reproducible-path/galculator-2.1.4'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:8: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: galculator
Source-Version: 2.1.4-2.1
Done: Sebastian Ramacher <[email protected]>
We believe that the bug you reported is fixed in the latest version of
galculator, 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.
Sebastian Ramacher <[email protected]> (supplier of updated galculator
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, 30 Dec 2025 10:29:58 +0100
Source: galculator
Architecture: source
Version: 2.1.4-2.1
Distribution: unstable
Urgency: medium
Maintainer: Dmitry Smirnov <[email protected]>
Changed-By: Sebastian Ramacher <[email protected]>
Closes: 1096669
Changes:
galculator (2.1.4-2.1) unstable; urgency=medium
.
* Non-maintainer upload.
.
[ Henrique F. Simoes ]
* Fix FTBFS with GCC 15 (Closes: #1096669)
Checksums-Sha1:
f6269f667168d731580ce63ba2e9652ae603d6ec 1398 galculator_2.1.4-2.1.dsc
32783080d10dc472aea998fc09bb6eab82e60481 6880
galculator_2.1.4-2.1.debian.tar.xz
14615f2f0c165dfbe4a64ed71d5311b7db0f926a 14693
galculator_2.1.4-2.1_amd64.buildinfo
Checksums-Sha256:
7cd4c810d151f14e81246bb9ec3e8a0df02f95056daf85bc35a41edf68f64429 1398
galculator_2.1.4-2.1.dsc
956e1c315fb1620c0ef31dfa7abab4089677df39a93020dbde5340affd7f0123 6880
galculator_2.1.4-2.1.debian.tar.xz
f330deffbea2930c644d7c4173856a159afa094761a67d047bdf153419ee4050 14693
galculator_2.1.4-2.1_amd64.buildinfo
Files:
45f35f7ffe658fcdd005d52a27836fcc 1398 math optional galculator_2.1.4-2.1.dsc
5fa3f9ed980baa70265f48d7e4949a75 6880 math optional
galculator_2.1.4-2.1.debian.tar.xz
2ff8165a3fab03ff60fd17f848e74566 14693 math optional
galculator_2.1.4-2.1_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
wr0EARYKAG8FgmlTnBcJECGTazZgD82JRxQAAAAAAB4AIHNhbHRAbm90YXRpb25z
LnNlcXVvaWEtcGdwLm9yZ+WnElyFFaSbsIJrjyiMp0PJ9XIb2rdEW+JbhO2B482m
FiEEQmJ+hB2ZZ9qD4fqQIZNrNmAPzYkAAH0eAQDgBodVDKcOCeCu7yo1gQJSAtRA
QBOVJwiWEPWt468FcwD/d7bMZG5fBOHk3SKjZ8h+4ln7hXuwHJHHeeadlmIW4Ac=
=lVBo
-----END PGP SIGNATURE-----
pgpOhq4Zz_F5V.pgp
Description: PGP signature
--- End Message ---