Your message dated Sun, 05 Oct 2025 12:53:42 +0000
with message-id <[email protected]>
and subject line Bug#1097961: fixed in sylpheed 3.8.0~beta1-3
has caused the Debian Bug report #1097961,
regarding sylpheed: 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.)


-- 
1097961: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097961
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:sylpheed
Version: 3.8.0~beta1-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/sylpheed_3.8.0~beta1-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

[...]
      |                                               ^~~~~~~~
mainwindow.c:2613:47: note: (near initialization for 
‘reply_entries[3].callback’)
mainwindow.c:342:13: note: ‘reply_cb’ declared here
  342 | static void reply_cb                    (MainWindow     *mainwin,
      |             ^~~~~~~~
mainwindow.c:2618:47: error: initialization of ‘void (*)(void)’ from 
incompatible pointer type ‘void (*)(MainWindow *, guint,  GtkWidget *)’ {aka 
‘void (*)(struct _MainWindow *, unsigned int,  struct _GtkWidget *)’} 
[-Wincompatible-pointer-types]
 2618 |         {N_("/_Forward"),               NULL, reply_cb, 
COMPOSE_FORWARD, NULL},
      |                                               ^~~~~~~~
mainwindow.c:2618:47: note: (near initialization for 
‘forward_entries[0].callback’)
mainwindow.c:342:13: note: ‘reply_cb’ declared here
  342 | static void reply_cb                    (MainWindow     *mainwin,
      |             ^~~~~~~~
mainwindow.c:2619:47: error: initialization of ‘void (*)(void)’ from 
incompatible pointer type ‘void (*)(MainWindow *, guint,  GtkWidget *)’ {aka 
‘void (*)(struct _MainWindow *, unsigned int,  struct _GtkWidget *)’} 
[-Wincompatible-pointer-types]
 2619 |         {N_("/For_ward as attachment"), NULL, reply_cb, 
COMPOSE_FORWARD_AS_ATTACH, NULL},
      |                                               ^~~~~~~~
mainwindow.c:2619:47: note: (near initialization for 
‘forward_entries[1].callback’)
mainwindow.c:342:13: note: ‘reply_cb’ declared here
  342 | static void reply_cb                    (MainWindow     *mainwin,
      |             ^~~~~~~~
mainwindow.c:2620:47: error: initialization of ‘void (*)(void)’ from 
incompatible pointer type ‘void (*)(MainWindow *, guint,  GtkWidget *)’ {aka 
‘void (*)(struct _MainWindow *, unsigned int,  struct _GtkWidget *)’} 
[-Wincompatible-pointer-types]
 2620 |         {N_("/Redirec_t"),              NULL, reply_cb, 
COMPOSE_REDIRECT, NULL}
      |                                               ^~~~~~~~
mainwindow.c:2620:47: note: (near initialization for 
‘forward_entries[2].callback’)
mainwindow.c:342:13: note: ‘reply_cb’ declared here
  342 | static void reply_cb                    (MainWindow     *mainwin,
      |             ^~~~~~~~
main.c: In function ‘migrate_old_config’:
main.c:1911:17: warning: ‘g_pattern_match_string’ is deprecated: Use 
'g_pattern_spec_match_string' instead [-Wdeprecated-declarations]
 1911 |                 if (g_pattern_match_string(pspec, dir_name)) {
      |                 ^~
In file included from /usr/include/glib-2.0/glib.h:68:
/usr/include/glib-2.0/glib/gpattern.h:57:15: note: declared here
   57 | gboolean      g_pattern_match_string   (GPatternSpec *pspec,
      |               ^~~~~~~~~~~~~~~~~~~~~~
summaryview.c: In function ‘summary_status_show’:
summaryview.c:2243:25: warning: ‘g_basename’ is deprecated: Use 
'g_path_get_basename' instead [-Wdeprecated-declarations]
 2243 |                         (g_basename(summaryview->folder_item->path),
      |                         ^
In file included from /usr/include/glib-2.0/glib.h:50:
/usr/include/glib-2.0/glib/gfileutils.h:207:14: note: declared here
  207 | const gchar *g_basename         (const gchar *file_name);
      |              ^~~~~~~~~~
summaryview.c: In function ‘summary_save_as’:
summaryview.c:3970:34: warning: ‘g_basename’ is deprecated: Use 
'g_path_get_basename' instead [-Wdeprecated-declarations]
 3970 |                                  g_basename(utf8_dest));
      |                                  ^~~~~~~~~~
/usr/include/glib-2.0/glib/gfileutils.h:207:14: note: declared here
  207 | const gchar *g_basename         (const gchar *file_name);
      |              ^~~~~~~~~~
make[5]: *** [Makefile:989: mainwindow.o] Error 1
summaryview.c: In function ‘summary_drag_data_get’:
summaryview.c:6457:33: warning: ‘g_basename’ is deprecated: Use 
'g_path_get_basename' instead [-Wdeprecated-declarations]
 6457 |                                 filename = g_strdup(g_basename(file));
      |                                 ^~~~~~~~
/usr/include/glib-2.0/glib/gfileutils.h:207:14: note: declared here
  207 | const gchar *g_basename         (const gchar *file_name);
      |              ^~~~~~~~~~
make[5]: *** [Makefile:989: summaryview.o] Error 1
make[5]: Leaving directory '/build/reproducible-path/sylpheed-3.8.0~beta1/src'
make[4]: *** [Makefile:1045: all-recursive] Error 1
make[4]: Leaving directory '/build/reproducible-path/sylpheed-3.8.0~beta1/src'
make[3]: *** [Makefile:748: all] Error 2
make[3]: Leaving directory '/build/reproducible-path/sylpheed-3.8.0~beta1/src'
make[2]: *** [Makefile:557: all-recursive] Error 1
make[2]: Leaving directory '/build/reproducible-path/sylpheed-3.8.0~beta1'
make[1]: *** [Makefile:466: all] Error 2
make[1]: Leaving directory '/build/reproducible-path/sylpheed-3.8.0~beta1'
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: sylpheed
Source-Version: 3.8.0~beta1-3
Done: Ricardo Mones <[email protected]>

We believe that the bug you reported is fixed in the latest version of
sylpheed, 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.
Ricardo Mones <[email protected]> (supplier of updated sylpheed 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: Sun, 05 Oct 2025 14:22:29 +0200
Source: sylpheed
Architecture: source
Version: 3.8.0~beta1-3
Distribution: unstable
Urgency: high
Maintainer: Ricardo Mones <[email protected]>
Changed-By: Ricardo Mones <[email protected]>
Closes: 1097961
Changes:
 sylpheed (3.8.0~beta1-3) unstable; urgency=high
 .
   * Build with -std=gnu17 to workaround FTBFS with GCC 15
     (Closes: #1097961)
   * Migrate watch file to version 5
   * Update years range
   * Update Standards-Version to 4.7.2 with no other changes
   * Raise urgency because or RC bug
Checksums-Sha1:
 f71ea6989b3e6e393b04deaf62576cedbba4d213 2611 sylpheed_3.8.0~beta1-3.dsc
 483b8621f93a1c28fa13e0f4fd9b6ce492e7a8ad 31328 
sylpheed_3.8.0~beta1-3.debian.tar.xz
 e7acbaa684c0ab703e2c2f2cc418b026157a6e21 15188 
sylpheed_3.8.0~beta1-3_amd64.buildinfo
Checksums-Sha256:
 f28d37fb739c1cff0878ced95e7fa75d0e27f4dd4214a491f0be6cfbc4f80ca7 2611 
sylpheed_3.8.0~beta1-3.dsc
 51412f00c0165d549be60344a96466a1ce28538e09e3fe87f85c04af778986d0 31328 
sylpheed_3.8.0~beta1-3.debian.tar.xz
 7b1d981e12e70e621b65aa53987afe7f73f6250c9bef9cc28e9867a52573c1bf 15188 
sylpheed_3.8.0~beta1-3_amd64.buildinfo
Files:
 3e59d0794d5845135d8b2540c2ae0e09 2611 mail optional sylpheed_3.8.0~beta1-3.dsc
 50e30b19d6f4b1cf8c5e035406647252 31328 mail optional 
sylpheed_3.8.0~beta1-3.debian.tar.xz
 b33802e0e8656dcaf735f1463aa139be 15188 mail optional 
sylpheed_3.8.0~beta1-3_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIyBAEBCgAdFiEEQ7w2SxbfDCBevXWSHw8KiN5bzKYFAmjiZH4ACgkQHw8KiN5b
zKY66A/3YqT7H3/Do2acONeKsz2yUKFassvxMrdUowtIGmrnMEoB8kvoUUAVl3KZ
UmvDOCnNzEeAK5+6GNIsbjjE230IaNvgbGP/9SU66eQIvUVjKaXoXjN/hIqboyzI
Um8yJ8xpNpbwqIn9KRTZpR8WQJUpL25gNAcif2ytNZrv0yae/4wfHgzW5k0V3W1B
dv+QgBWqgldaM+87OOIANYVkk2aMgo+utwjbZSf9nzS+ebSTiKq903xzXnLBllWh
mGInMS7FAlYVVEq1+uBRgkPJdT2lisluk7t5WR7KFrnRK7Mw3zt+mScnsYQKgSGq
EDlhv9CswNY4ed03g1hv45Ws5kn48WhUzfMOatKr5w5Ig3zPVsue1ZTtOCP0UvZC
S9Bjvml8ikjWoVbvqiuhsF1qAgMol1i5l6ojvUiTXgOHp+vd9pJOcmd8PlYLKW2S
jQHbVaItpCV6dp3FTNTjLXFazK3yQxVkYbf7wNrO4Xu1vYNOlGbz+BiCM7l+IFo9
CH81XxVzbQdmGhPaX34oquUpzjjGve1ormiuIgnAZivK/wx1W3xng6cMxp45VePf
HrFRT9Jb01xo3uMkoYxzhiI3/KC8sNBHO8AJN2hB5+m8CDWbclXOEy+DTzTaqBoj
BEZEG8Y+qqN9vZTRRMQ89Yxmk6jrXgMlq82l8PU5RM/p5aviIw==
=mtox
-----END PGP SIGNATURE-----

Attachment: pgp8hMAxMW_cI.pgp
Description: PGP signature


--- End Message ---

Reply via email to