[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#1098136: marked as done (xfce4-mpc-plugin: ftbfs with GCC-15)



Your message dated Sat, 06 Sep 2025 16:51:34 +0000
with message-id <E1uuw8U-004ANH-20@fasolo.debian.org>
and subject line Bug#1098136: fixed in xfce4-mpc-plugin 0.6.0-1
has caused the Debian Bug report #1098136,
regarding xfce4-mpc-plugin: 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 owner@bugs.debian.org
immediately.)


-- 
1098136: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1098136
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: src:xfce4-mpc-plugin
Version: 0.5.3-1
Severity: important
Tags: sid forky
User: debian-gcc@lists.debian.org
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/xfce4-mpc-plugin_0.5.3-1_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

[...]
In file included from /usr/include/xfce4/libxfce4ui-2/libxfce4ui/libxfce4ui.h:36,
                 from xfce4-mpc-plugin.c:25:
/usr/include/xfce4/libxfce4ui-2/libxfce4ui/xfce-titled-dialog.h:74:1: note: declared here
   74 | xfce_titled_dialog_new_with_buttons (const gchar *title,
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
simple-libmpd.c: In function 'send_complex_cmd':
simple-libmpd.c:314:11: error: too many arguments to function 'parse_answer_fct'; expected 0, have 2
  314 |          (*parse_answer_fct)(mo, res);
      |          ~^~~~~~~~~~~~~~~~~~ ~~
simple-libmpd.c:331:11: error: too many arguments to function 'parse_answer_fct'; expected 0, have 2
  331 |          (*parse_answer_fct)(mo, res);
      |          ~^~~~~~~~~~~~~~~~~~ ~~
simple-libmpd.c: In function 'mpd_status_update':
simple-libmpd.c:376:37: error: passing argument 3 of 'send_complex_cmd' from incompatible pointer type [-Wincompatible-pointer-types]
  376 |    send_complex_cmd(mo, "status\n", parse_status_answer, NULL);
      |                                     ^~~~~~~~~~~~~~~~~~~
      |                                     |
      |                                     void (*)(MpdObj *, void *)
simple-libmpd.c:275:53: note: expected 'void (*)(void)' but argument is of type 'void (*)(MpdObj *, void *)'
  275 | void send_complex_cmd(MpdObj* mo, char* cmd, void (*parse_answer_fct)(), void *res)
      |                                              ~~~~~~~^~~~~~~~~~~~~~~~~~~
simple-libmpd.c:343:6: note: 'parse_status_answer' declared here
  343 | void parse_status_answer(MpdObj *mo, void* unused_param)
      |      ^~~~~~~~~~~~~~~~~~~
simple-libmpd.c: In function 'mpd_playlist_get_current_song':
simple-libmpd.c:499:45: error: passing argument 3 of 'send_complex_cmd' from incompatible pointer type [-Wincompatible-pointer-types]
  499 |       send_complex_cmd(mo, "currentsong\n", parse_one_song, (void*) mo->cursong);
      |                                             ^~~~~~~~~~~~~~
      |                                             |
      |                                             void (*)(MpdObj *, void *)
simple-libmpd.c:275:53: note: expected 'void (*)(void)' but argument is of type 'void (*)(MpdObj *, void *)'
  275 | void send_complex_cmd(MpdObj* mo, char* cmd, void (*parse_answer_fct)(), void *res)
      |                                              ~~~~~~~^~~~~~~~~~~~~~~~~~~
simple-libmpd.c:381:6: note: 'parse_one_song' declared here
  381 | void parse_one_song(MpdObj *mo, void* param)
      |      ^~~~~~~~~~~~~~
simple-libmpd.c: In function 'mpd_playlist_get_changes':
simple-libmpd.c:522:43: error: passing argument 3 of 'send_complex_cmd' from incompatible pointer type [-Wincompatible-pointer-types]
  522 |    send_complex_cmd(mo, "playlistinfo\n", parse_playlistinfo_answer, (void*) md);
      |                                           ^~~~~~~~~~~~~~~~~~~~~~~~~
      |                                           |
      |                                           void (*)(MpdObj *, void *)
simple-libmpd.c:275:53: note: expected 'void (*)(void)' but argument is of type 'void (*)(MpdObj *, void *)'
  275 | void send_complex_cmd(MpdObj* mo, char* cmd, void (*parse_answer_fct)(), void *res)
      |                                              ~~~~~~~^~~~~~~~~~~~~~~~~~~
simple-libmpd.c:410:6: note: 'parse_playlistinfo_answer' declared here
  410 | void parse_playlistinfo_answer(MpdObj *mo, void *param)
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~
simple-libmpd.c: In function 'mpd_server_get_output_devices':
simple-libmpd.c:578:38: error: passing argument 3 of 'send_complex_cmd' from incompatible pointer type [-Wincompatible-pointer-types]
  578 |    send_complex_cmd(mo, "outputs\n", parse_outputs_answer, (void*) md);
      |                                      ^~~~~~~~~~~~~~~~~~~~
      |                                      |
      |                                      void (*)(MpdObj *, void *)
simple-libmpd.c:275:53: note: expected 'void (*)(void)' but argument is of type 'void (*)(MpdObj *, void *)'
  275 | void send_complex_cmd(MpdObj* mo, char* cmd, void (*parse_answer_fct)(), void *res)
      |                                              ~~~~~~~^~~~~~~~~~~~~~~~~~~
simple-libmpd.c:447:6: note: 'parse_outputs_answer' declared here
  447 | void parse_outputs_answer(MpdObj *mo, void *param)
      |      ^~~~~~~~~~~~~~~~~~~~
make[3]: *** [Makefile:521: libmpc_la-simple-libmpd.lo] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/build/reproducible-path/xfce4-mpc-plugin-0.5.3/panel-plugin'
make[2]: *** [Makefile:450: all-recursive] Error 1
make[2]: Leaving directory '/build/reproducible-path/xfce4-mpc-plugin-0.5.3'
make[1]: *** [Makefile:382: all] Error 2
make[1]: Leaving directory '/build/reproducible-path/xfce4-mpc-plugin-0.5.3'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:7: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: xfce4-mpc-plugin
Source-Version: 0.6.0-1
Done: Yves-Alexis Perez <corsac@debian.org>

We believe that the bug you reported is fixed in the latest version of
xfce4-mpc-plugin, 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 1098136@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yves-Alexis Perez <corsac@debian.org> (supplier of updated xfce4-mpc-plugin 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: Sat, 06 Sep 2025 17:39:08 +0200
Source: xfce4-mpc-plugin
Architecture: source
Version: 0.6.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Xfce Maintainers <debian-xfce@lists.debian.org>
Changed-By: Yves-Alexis Perez <corsac@debian.org>
Closes: 1098136
Changes:
 xfce4-mpc-plugin (0.6.0-1) unstable; urgency=medium
 .
   * New upstream version 0.6.0
     - fix build with gcc-15 (closes: #1098136)
   * d/control: add buil-dep on meson
   * d/rules: explicitely use meson as build system
Checksums-Sha1:
 1f06a23bf66286b5a29181536f3d31bf4b5b278c 1776 xfce4-mpc-plugin_0.6.0-1.dsc
 5c3b5ec4a42dfaf6d5d6cc970845ab3d8d2e1384 47092 xfce4-mpc-plugin_0.6.0.orig.tar.xz
 8288701e1fd584c0fb8c906da1070990961e27c0 4276 xfce4-mpc-plugin_0.6.0-1.debian.tar.xz
 a323e90bdc09a59e8c732490d79e6598e5192976 16455 xfce4-mpc-plugin_0.6.0-1_amd64.buildinfo
Checksums-Sha256:
 56758d9c4f204e8b0b606495e9af914473570355f174adba822c4c2d5ab50a72 1776 xfce4-mpc-plugin_0.6.0-1.dsc
 dee5bcc0566ba2dc95b9c3b4cadd5e8b3bb2798a54a2a8d8652708915fe45d50 47092 xfce4-mpc-plugin_0.6.0.orig.tar.xz
 9ef1508cb53009bdd525f12d43d3666a39a5cd4d5e313465cab63c314023b181 4276 xfce4-mpc-plugin_0.6.0-1.debian.tar.xz
 e4abd02c35e422baa0cecb87a8758fcb3a11e8921d58a0c1efe21c0a74e692b9 16455 xfce4-mpc-plugin_0.6.0-1_amd64.buildinfo
Files:
 73ffc3fbb0d27bdf5cab3594a6b3cf6b 1776 xfce optional xfce4-mpc-plugin_0.6.0-1.dsc
 8e55d483c30a0689babe2cdd3ff2dd43 47092 xfce optional xfce4-mpc-plugin_0.6.0.orig.tar.xz
 b45d6a625a8d4cb012750983533b436f 4276 xfce optional xfce4-mpc-plugin_0.6.0-1.debian.tar.xz
 c785ebe7e63c46059177797789ecfacf 16455 xfce optional xfce4-mpc-plugin_0.6.0-1_amd64.buildinfo

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

iQEzBAEBCgAdFiEE8vi34Qgfo83x35gF3rYcyPpXRFsFAmi8Ve0ACgkQ3rYcyPpX
RFt4XwgAgkvqlVg/WDhm7HyKmvnQCYBsAv8ZgUbhzTx21R4ff+ySgqyErdQigsJU
WYvYxgykA6FG/B29jOCDxaUDOVmK7jos4agTIvS/aG43v6YXa1yWNv6O2WIB00KB
cUfgd1pRcwrbImgnA+MDdQWXXlBOjz9qmITI8tiJrIikEbMfu0woD887CXgkLAGE
LUX0YIwoBkcu0xC8SWP5W6BQTUD+3513KdsdC90/2j995lSbtmSJF6XEeYN+6al5
Y97HKFDTKAk/wgHztBbYzJeCeXR2MBhDj+6kzp+x05WFkNhB3DtbPK2E7Z+KWo79
l6v4TI2PNSMc1jPxdFDeOJiHAvYIZg==
=n6ry
-----END PGP SIGNATURE-----

Attachment: pgpeveGWuuHGz.pgp
Description: PGP signature


--- End Message ---

Reply to: