Your message dated Tue, 21 Oct 2025 20:46:07 +0000
with message-id <[email protected]>
and subject line Bug#1075099: fixed in jamin 0.98.9~git20170111~199091~repack1-3
has caused the Debian Bug report #1075099,
regarding jamin: 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 [email protected]
immediately.)
--
1075099: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075099
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:jamin
Version: 0.98.9~git20170111~199091~repack1-2
Severity: important
Tags: sid trixie
User: [email protected]
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/jamin_0.98.9~git20170111~199091~repack1-2_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
[...]
149 | static cairo_t *EQ_cr, *comp_cr[3];
| ^~~~~
callbacks.c:2934:7: warning: ‘gtk_widget_modify_bg’ is deprecated: Use
'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
2934 | gtk_widget_modify_bg ((GtkWidget *) l_comp_bypass_event_box[0],
GTK_STATE_NORMAL, &bypass);
| ^~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
753 | void gtk_widget_modify_bg (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~
callbacks.c:2960:7: warning: ‘gtk_widget_modify_bg’ is deprecated: Use
'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
2960 | gtk_widget_modify_bg ((GtkWidget *) l_comp_bypass_event_box[1],
GTK_STATE_NORMAL, &bypass);
| ^~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
753 | void gtk_widget_modify_bg (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~
callbacks.c:2986:7: warning: ‘gtk_widget_modify_bg’ is deprecated: Use
'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
2986 | gtk_widget_modify_bg ((GtkWidget *) l_comp_bypass_event_box[2],
GTK_STATE_NORMAL, &bypass);
| ^~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
753 | void gtk_widget_modify_bg (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~
callbacks.c:3012:7: warning: ‘gtk_widget_modify_bg’ is deprecated: Use
'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
3012 | gtk_widget_modify_bg ((GtkWidget *) l_limiter_bypass_event_box,
GTK_STATE_NORMAL, &bypass);
| ^~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
753 | void gtk_widget_modify_bg (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~
callbacks.c:3038:7: warning: ‘gtk_widget_modify_bg’ is deprecated: Use
'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
3038 | gtk_widget_modify_bg ((GtkWidget *) l_global_bypass_event_box,
GTK_STATE_NORMAL, &bypass);
| ^~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
753 | void gtk_widget_modify_bg (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~
callbacks.c:3039:7: warning: ‘gtk_widget_modify_bg’ is deprecated: Use
'gtk_widget_override_background_color' instead [-Wdeprecated-declarations]
3039 | gtk_widget_modify_bg (lookup_widget(presets_window,
"global_bypass_event_box_presets"), GTK_STATE_NORMAL, &bypass);
| ^~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:753:13: note: declared here
753 | void gtk_widget_modify_bg (GtkWidget *widget,
| ^~~~~~~~~~~~~~~~~~~~
callbacks.c: In function ‘on_eButton1_button_press_event’:
callbacks.c:3309:31: error: passing argument 1 of ‘presets_ui_show_main’ from
incompatible pointer type [-Wincompatible-pointer-types]
3309 | presets_ui_show_main (widget);
| ^~~~~~
| |
| GtkWidget * {aka struct _GtkWidget *}
In file included from callbacks.c:47:
presets-ui.h:20:39: note: expected ‘GtkButton *’ {aka ‘struct _GtkButton *’}
but argument is of type ‘GtkWidget *’ {aka ‘struct _GtkWidget *’}
20 | void presets_ui_show_main (GtkButton *tButton);
| ~~~~~~~~~~~^~~~~~~
callbacks.c: In function ‘on_eButton2_button_press_event’:
callbacks.c:3327:35: error: passing argument 1 of ‘presets_ui_show_multiout’
from incompatible pointer type [-Wincompatible-pointer-types]
3327 | presets_ui_show_multiout (widget);
| ^~~~~~
| |
| GtkWidget * {aka struct _GtkWidget *}
presets-ui.h:21:43: note: expected ‘GtkButton *’ {aka ‘struct _GtkButton *’}
but argument is of type ‘GtkWidget *’ {aka ‘struct _GtkWidget *’}
21 | void presets_ui_show_multiout (GtkButton *tButton);
| ~~~~~~~~~~~^~~~~~~
callbacks.c: In function ‘make_mscale’:
callbacks.c:632:1: warning: control reaches end of non-void function
[-Wreturn-type]
632 | }
| ^
make[3]: *** [Makefile:660: jamin-callbacks.o] Error 1
make[3]: Leaving directory '/<<PKGBUILDDIR>>/src'
make[2]: *** [Makefile:456: all-recursive] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
make[1]: *** [Makefile:388: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:6: build] Error 25
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: jamin
Source-Version: 0.98.9~git20170111~199091~repack1-3
Done: Alexandre Detiste <[email protected]>
We believe that the bug you reported is fixed in the latest version of
jamin, 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.
Alexandre Detiste <[email protected]> (supplier of updated jamin 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, 21 Oct 2025 21:11:38 +0200
Source: jamin
Architecture: source
Version: 0.98.9~git20170111~199091~repack1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers <[email protected]>
Changed-By: Alexandre Detiste <[email protected]>
Closes: 1026876 1060451 1075099
Changes:
jamin (0.98.9~git20170111~199091~repack1-3) unstable; urgency=medium
.
* Team Upload.
* Replace dependency on libclutter-gtk-1.0-dev
with lesser dependency on libgtk-3-dev (Closes: #1060451)
* Remove obsolete dh-buildinfo build dependency
* Fix FTBFS with GCC 14/15 (Closes: #1075099)
.
[ Nicholas D Steeves ]
* Apply patch from Chris Lamb that makes builds reproducible by exporting
CFLAGS from dpkg-buildflags(1), thus ensuring that -fdebug-prefix-map (and
similar) are passed to the underlying build system (Closes: #1026876).
Checksums-Sha1:
cbac96823612a04b75c4a2473db5bdbe2a7e21d3 2217
jamin_0.98.9~git20170111~199091~repack1-3.dsc
9b1a9ead841fd5b0675efb9830d7a812b6121ef3 8740
jamin_0.98.9~git20170111~199091~repack1-3.debian.tar.xz
d4a97d150b71ecaffb05507c4a2fa6cf491ba081 16181
jamin_0.98.9~git20170111~199091~repack1-3_source.buildinfo
Checksums-Sha256:
3cb6ae84763cef5ca9ff1d72246693ac3157d88c1f081244f2aabb93b369f803 2217
jamin_0.98.9~git20170111~199091~repack1-3.dsc
6b3fa04a985bc356a676cc97f51f000f38bbb6487970446ff0a9368adf58f8fa 8740
jamin_0.98.9~git20170111~199091~repack1-3.debian.tar.xz
4f58b8bd8324ef08cec3681859e59a5136abb80f4a9156b61b81067c9067ec65 16181
jamin_0.98.9~git20170111~199091~repack1-3_source.buildinfo
Files:
8d759e918951aa6df02f3d4647658621 2217 sound optional
jamin_0.98.9~git20170111~199091~repack1-3.dsc
bf40089e0387880076e50ea98a513f55 8740 sound optional
jamin_0.98.9~git20170111~199091~repack1-3.debian.tar.xz
ca5a7288a8e614e68f78ef2100a72d73 16181 sound optional
jamin_0.98.9~git20170111~199091~repack1-3_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJFBAEBCgAvFiEEj23hBDd/OxHnQXSHMfMURUShdBoFAmj334cRHHRjaGV0QGRl
Ymlhbi5vcmcACgkQMfMURUShdBoOexAAnJU0nzk0+jqe6alEbOxhrGN+G3oj7IVT
38nBg7iEuQoMnE/GYSURKEIN32WtLR5q4iJYxpN+jVOkdCw2zTbUWRuDcDbCWzqm
UGGnoTgFGxt9F+YTN7PpFm/3/I8tBjSDNazIrR9iwcI0G8ludrMVOwefVXyep+Py
4+44byfg8EZbIcPc0mEqn6HI72r4BFwyn4lLyBJQJ8x6wMwHI0tV+04n82IyZHGo
Wswk0qrUeTTXbUVt+MLqdr647WnsvRtzWAEiNP/jg2pQFnmFnlAQT5iM82QJea/g
kpXCRN9sPEKS4eW6OJpaGphwhByPk8SELWj3Xw2/uzAyPwSJ7d2kZbRgb3oagHwD
IbRI/WfdHYWPLc/Bz4qd6Xhv7Oj4WkwWWx7y/jqY8k7QDD5oup92/xVcDEiICAVi
eVYOdOV1nwd+CI78b6pWWxXZAYwKyZs/kfm6VC6IhK+jWENZ9elkXgy02SxeYSdW
II64LA74AmT+unjzcdYmr8Z7cqyOTvSAeHC9MrekP6e452B2PHvkzRf3QX86Abw6
5EpnfmbL1eXW17sX632hr/6X6GXi34JmFolQOQp9ATIsm/+K32MDW3sOQxvGBf1W
Hb/rMI4kEYOEsWCQl6yxDSTaXHwR4vk85l0DovOzbCeqHbhl6GK9X4g3q1RsAVuR
Wk9EkNap6UM=
=fWxx
-----END PGP SIGNATURE-----
pgpteW8jcgq1N.pgp
Description: PGP signature
--- End Message ---