Your message dated Mon, 29 Sep 2025 18:49:09 +0000
with message-id <[email protected]>
and subject line Bug#1096712: fixed in gjiten 3.2.1-1
has caused the Debian Bug report #1096712,
regarding gjiten: 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.)
--
1096712: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1096712
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:gjiten
Version: 3.1-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/gjiten_3.1-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
[...]
| ^~~~~~~~~~~~~~~~~~~~
gjiten.h:42:6: note: previous declaration of ‘gjiten_start_worddic’ with type
‘void(void)’
42 | void gjiten_start_worddic();
| ^~~~~~~~~~~~~~~~~~~~
gjiten.c: In function ‘gjiten_start_worddic’:
gjiten.c:486:29: error: too many arguments to function ‘worddic_create’;
expected 0, have 1
486 | GjWorddicWindow *window = worddic_create (app);
| ^~~~~~~~~~~~~~ ~~~
In file included from gjiten.c:42:
worddic.h:54:18: note: declared here
54 | GjWorddicWindow* worddic_create();
| ^~~~~~~~~~~~~~
gjiten.c: At top level:
gjiten.c:494:1: error: conflicting types for ‘gjiten_start_kanjidic’; have
‘void(GtkApplication *)’ {aka ‘void(struct _GtkApplication *)’}
494 | gjiten_start_kanjidic(GtkApplication *app)
| ^~~~~~~~~~~~~~~~~~~~~
gjiten.h:43:6: note: previous declaration of ‘gjiten_start_kanjidic’ with type
‘void(void)’
43 | void gjiten_start_kanjidic();
| ^~~~~~~~~~~~~~~~~~~~~
gjiten.c: In function ‘gjiten_start_kanjidic’:
gjiten.c:500:30: error: too many arguments to function ‘kanjidic_create’;
expected 0, have 1
500 | GjKanjidicWindow *window = kanjidic_create (app);
| ^~~~~~~~~~~~~~~ ~~~
In file included from gjiten.c:43:
kanjidic.h:59:19: note: declared here
59 | GjKanjidicWindow *kanjidic_create();
| ^~~~~~~~~~~~~~~
gjiten.c: In function ‘gjiten_new’:
gjiten.c:674:3: warning: ‘G_APPLICATION_FLAGS_NONE’ is deprecated: Use
'G_APPLICATION_DEFAULT_FLAGS' instead [-Wdeprecated-declarations]
674 | GtkApplication * app = gtk_application_new
(NULL,G_APPLICATION_FLAGS_NONE);
| ^~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gio/giotypes.h:30,
from /usr/include/glib-2.0/gio/gio.h:28,
from /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h:28,
from /usr/include/gtk-3.0/gdk/gdk.h:32,
from /usr/include/gtk-3.0/gtk/gtk.h:30,
from gjiten.c:30:
/usr/include/glib-2.0/gio/gioenums.h:1556:3: note: declared here
1556 | G_APPLICATION_FLAGS_NONE
GIO_DEPRECATED_ENUMERATOR_IN_2_74_FOR(G_APPLICATION_DEFAULT_FLAGS),
| ^~~~~~~~~~~~~~~~~~~~~~~~
make[3]: *** [Makefile:555: gjiten-gjiten.o] Error 1
make[3]: *** Waiting for unfinished jobs....
kanjidic.c: In function ‘do_kdicline’:
kanjidic.c:187:13: warning: ‘__builtin_strncat’ output may be truncated copying
between 0 and 499 bytes from a string of length 499 [-Wstringop-truncation]
187 | strncat (kdic_line + READING * KBUFSIZE, tmpstr, KBUFSIZE -
strlen (kdic_line + READING * KBUFSIZE) - 1);
| ^
kanjidic.c:176:13: warning: ‘__builtin_strncat’ output may be truncated copying
between 0 and 499 bytes from a string of length 499 [-Wstringop-truncation]
176 | strncat (kdic_line + READING * KBUFSIZE, tmpstr, KBUFSIZE -
strlen (kdic_line + READING * KBUFSIZE) - 1);
| ^
kanjidic.c:163:11: warning: ‘__builtin_strncat’ output may be truncated copying
between 0 and 499 bytes from a string of length 499 [-Wstringop-truncation]
163 | strncat (kdic_line + READING * KBUFSIZE, tmpstr, KBUFSIZE -
strlen (kdic_line + READING * KBUFSIZE) - 1);
| ^
kanjidic.c:156:7: warning: ‘__builtin_strncat’ output may be truncated copying
between 0 and 499 bytes from a string of length 499 [-Wstringop-truncation]
156 | strncat (kdic_line + READING * KBUFSIZE, tmpstr, KBUFSIZE -
strlen (kdic_line + READING * KBUFSIZE) - 1);
| ^
kanjidic.c: In function ‘kanjidic_radical_selected’:
kanjidic.c:695:7: warning: ‘__builtin_strncat’ output may be truncated copying
5 bytes from a string of length 5 [-Wstringop-truncation]
695 | strncat (newradline, tmpchar, 5);
| ^
kanjidic.c:701:25: warning: ‘__builtin_strncat’ output may be truncated copying
5 bytes from a string of length 5 [-Wstringop-truncation]
701 | if (removed == FALSE) strncat (newradline, radical_selected, 5);
//Add the radical to the line
| ^
make[3]: Leaving directory '/build/reproducible-path/gjiten-3.1/src'
make[2]: *** [Makefile:465: all-recursive] Error 1
make[2]: Leaving directory '/build/reproducible-path/gjiten-3.1'
make[1]: *** [Makefile:395: all] Error 2
make[1]: Leaving directory '/build/reproducible-path/gjiten-3.1'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:4: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: gjiten
Source-Version: 3.2.1-1
Done: Ludovic Drolez <[email protected]>
We believe that the bug you reported is fixed in the latest version of
gjiten, 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.
Ludovic Drolez <[email protected]> (supplier of updated gjiten 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: SHA256
Format: 1.8
Date: Sun, 28 Sep 2025 10:09:09 +0200
Source: gjiten
Architecture: source
Version: 3.2.1-1
Distribution: unstable
Urgency: medium
Maintainer: Ludovic Drolez <[email protected]>
Changed-By: Ludovic Drolez <[email protected]>
Closes: 1096712 1112407
Changes:
gjiten (3.2.1-1) unstable; urgency=medium
.
* New upstream release. GCC 15 fix. Closes: #1096712
* watch file updated
* meson build dependency added
* docbook-utils and gnome-common removed. Closes: #1112407
Checksums-Sha1:
22dd5d9c2cca5db290f849f2421ec95505ee0375 1402 gjiten_3.2.1-1.dsc
a9b95db0c94d03ae98c21cb02298776fd5531ab9 870192 gjiten_3.2.1.orig.tar.gz
93c829e361c69db949c03767bec45ecd45cb0145 25544 gjiten_3.2.1-1.debian.tar.xz
c4d600e1d60dac66006036cc179d9fbeb6a77bec 15683 gjiten_3.2.1-1_amd64.buildinfo
Checksums-Sha256:
3af8e1154eb97c3f70087e8dbb671337de7b593303efbd67afbdcd63724acb03 1402
gjiten_3.2.1-1.dsc
3e79476041c65cdaeca2b5db6cb306d4e002ab01f9e1abf6d53d74d2052c4ac8 870192
gjiten_3.2.1.orig.tar.gz
8b945a487a034a98285e3d461f6b8b464aabf48b01d036abd0d563aa6cef4ea0 25544
gjiten_3.2.1-1.debian.tar.xz
96b71504df6c9fd46d16c9a72c14d29b8162c18f13277bc2d3de41e57ccf3552 15683
gjiten_3.2.1-1_amd64.buildinfo
Files:
f30feeb459db4a8278c7d79521e6bcac 1402 gnome optional gjiten_3.2.1-1.dsc
ad4b9c3ae7d0d6575719d5be92be2b66 870192 gnome optional gjiten_3.2.1.orig.tar.gz
9973fbeeef55c6cef86bc293aa6e9e2a 25544 gnome optional
gjiten_3.2.1-1.debian.tar.xz
6324864518291e04a711c3e831216d8a 15683 gnome optional
gjiten_3.2.1-1_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQFHBAEBCAAxFiEEKrWNbKjxjlSqtxlZi3UoEkf5wXwFAmjazogTHGxkcm9sZXpA
ZGViaWFuLm9yZwAKCRCLdSgSR/nBfLPoB/0adc5Oi/Bq1LRYSXjG1Q+w+jRgLIqT
mAZ65xJ1i6PnmMMqGtpXLopnKnFejUvpqjRN0wFwlNFX2+a5u5EXsNAn5PQpGCqQ
vkbU8g9of7PTUkT95LGDLzjD46P/9yVswyp3JckkW+GEscztmxMjUPOje9RxB5Jj
fs5ruNK8EVVLSn8kI/gT0tIK08fEgdbXcbi/hY+OSmX0EAS1wSpZBvYcQpr2eNrw
ASWQomZ8jM7LgukMMMdx2Yzq9TRV7XNe+9xWReoa2H43l8MtD+ek3SPYRsQx+Fgc
n4BUIlADu6V/yQgR2OuvFiJerisNwemNGe8GQ0YOTk7MiDTkFV3lJ5le
=7UFf
-----END PGP SIGNATURE-----
pgp1Mc21jKCUs.pgp
Description: PGP signature
--- End Message ---