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

Bug#1096784: marked as done (gsequencer: ftbfs with GCC-15)



Your message dated Fri, 14 Mar 2025 12:04:35 +0000
with message-id <E1tt3mF-001i4i-2q@fasolo.debian.org>
and subject line Bug#1096784: fixed in gsequencer 7.6.10-1
has caused the Debian Bug report #1096784,
regarding gsequencer: 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.)


-- 
1096784: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1096784
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: src:gsequencer
Version: 7.5.5-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/gsequencer_7.5.5-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

[...]
      |                                         ~~~~~~~~~^~~~~~
ags/test/file/ags_file_test.c:248:22: warning: assignment to ‘AgsFileIdRef *’ {aka ‘struct _AgsFileIdRef *’} from incompatible pointer type ‘GObject *’ {aka ‘struct _GObject *’} [-Wincompatible-pointer-types]
  248 |   CU_ASSERT((current = ags_file_find_id_ref_by_reference(file,
      |                      ^
ags/test/file/ags_file_test.c:252:22: warning: assignment to ‘AgsFileIdRef *’ {aka ‘struct _AgsFileIdRef *’} from incompatible pointer type ‘GObject *’ {aka ‘struct _GObject *’} [-Wincompatible-pointer-types]
  252 |   CU_ASSERT((current = ags_file_find_id_ref_by_reference(file,
      |                      ^
ags/test/file/ags_file_test.c:256:22: warning: assignment to ‘AgsFileIdRef *’ {aka ‘struct _AgsFileIdRef *’} from incompatible pointer type ‘GObject *’ {aka ‘struct _GObject *’} [-Wincompatible-pointer-types]
  256 |   CU_ASSERT((current = ags_file_find_id_ref_by_reference(file,
      |                      ^
ags/test/file/ags_file_test.c: In function ‘ags_file_test_add_lookup’:
ags/test/file/ags_file_test.c:274:34: warning: passing argument 2 of ‘ags_file_add_lookup’ from incompatible pointer type [-Wincompatible-pointer-types]
  274 |                       file_lookup[0]);
      |                       ~~~~~~~~~~~^~~
      |                                  |
      |                                  AgsFileIdRef * {aka struct _AgsFileIdRef *}
./ags/file/ags_file.h:189:50: note: expected ‘GObject *’ {aka ‘struct _GObject *’} but argument is of type ‘AgsFileIdRef *’ {aka ‘struct _AgsFileIdRef *’}
  189 | void ags_file_add_lookup(AgsFile *file, GObject *file_lookup);
      |                                         ~~~~~~~~~^~~~~~~~~~~
ags/test/file/ags_file_test.c:279:34: warning: passing argument 2 of ‘ags_file_add_lookup’ from incompatible pointer type [-Wincompatible-pointer-types]
  279 |                       file_lookup[1]);
      |                       ~~~~~~~~~~~^~~
      |                                  |
      |                                  AgsFileIdRef * {aka struct _AgsFileIdRef *}
./ags/file/ags_file.h:189:50: note: expected ‘GObject *’ {aka ‘struct _GObject *’} but argument is of type ‘AgsFileIdRef *’ {aka ‘struct _AgsFileIdRef *’}
  189 | void ags_file_add_lookup(AgsFile *file, GObject *file_lookup);
      |                                         ~~~~~~~~~^~~~~~~~~~~
ags/test/file/ags_file_test.c:284:34: warning: passing argument 2 of ‘ags_file_add_lookup’ from incompatible pointer type [-Wincompatible-pointer-types]
  284 |                       file_lookup[2]);
      |                       ~~~~~~~~~~~^~~
      |                                  |
      |                                  AgsFileIdRef * {aka struct _AgsFileIdRef *}
./ags/file/ags_file.h:189:50: note: expected ‘GObject *’ {aka ‘struct _GObject *’} but argument is of type ‘AgsFileIdRef *’ {aka ‘struct _AgsFileIdRef *’}
  189 | void ags_file_add_lookup(AgsFile *file, GObject *file_lookup);
      |                                         ~~~~~~~~~^~~~~~~~~~~
ags/test/file/ags_file_test.c: In function ‘ags_file_test_add_launch’:
ags/test/file/ags_file_test.c:310:34: warning: passing argument 2 of ‘ags_file_add_launch’ from incompatible pointer type [-Wincompatible-pointer-types]
  310 |                       file_launch[0]);
      |                       ~~~~~~~~~~~^~~
      |                                  |
      |                                  AgsFileIdRef * {aka struct _AgsFileIdRef *}
./ags/file/ags_file.h:191:50: note: expected ‘GObject *’ {aka ‘struct _GObject *’} but argument is of type ‘AgsFileIdRef *’ {aka ‘struct _AgsFileIdRef *’}
  191 | void ags_file_add_launch(AgsFile *file, GObject *file_launch);
      |                                         ~~~~~~~~~^~~~~~~~~~~
ags/test/file/ags_file_test.c:315:34: warning: passing argument 2 of ‘ags_file_add_launch’ from incompatible pointer type [-Wincompatible-pointer-types]
  315 |                       file_launch[1]);
      |                       ~~~~~~~~~~~^~~
      |                                  |
      |                                  AgsFileIdRef * {aka struct _AgsFileIdRef *}
./ags/file/ags_file.h:191:50: note: expected ‘GObject *’ {aka ‘struct _GObject *’} but argument is of type ‘AgsFileIdRef *’ {aka ‘struct _AgsFileIdRef *’}
  191 | void ags_file_add_launch(AgsFile *file, GObject *file_launch);
      |                                         ~~~~~~~~~^~~~~~~~~~~
ags/test/file/ags_file_test.c:320:34: warning: passing argument 2 of ‘ags_file_add_launch’ from incompatible pointer type [-Wincompatible-pointer-types]
  320 |                       file_launch[2]);
      |                       ~~~~~~~~~~~^~~
      |                                  |
      |                                  AgsFileIdRef * {aka struct _AgsFileIdRef *}
./ags/file/ags_file.h:191:50: note: expected ‘GObject *’ {aka ‘struct _GObject *’} but argument is of type ‘AgsFileIdRef *’ {aka ‘struct _AgsFileIdRef *’}
  191 | void ags_file_add_launch(AgsFile *file, GObject *file_launch);
      |                                         ~~~~~~~~~^~~~~~~~~~~
make[4]: Leaving directory '/build/reproducible-path/gsequencer-7.5.5'
make[3]: *** [Makefile:34531: check-am] Error 2
make[3]: Leaving directory '/build/reproducible-path/gsequencer-7.5.5'
make[2]: *** [Makefile:31883: check-recursive] Error 1
make[2]: Leaving directory '/build/reproducible-path/gsequencer-7.5.5'
dh_auto_test: error: make -j8 check "TESTSUITEFLAGS=-j8 --verbose" VERBOSE=1 "CFLAGS=-fpermissive -Wno-error=incompatible-pointer-types -Wno-error=pedantic " returned exit code 2
make[1]: *** [debian/rules:51: override_dh_auto_test] Error 25
make[1]: Leaving directory '/build/reproducible-path/gsequencer-7.5.5'
make: *** [debian/rules:39: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: gsequencer
Source-Version: 7.6.10-1
Done: Joel Kraehemann <jkraehemann@gmail.com>

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

Debian distribution maintenance software
pp.
Joel Kraehemann <jkraehemann@gmail.com> (supplier of updated gsequencer 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: Sun, 09 Mar 2025 11:35:02 +0100
Source: gsequencer
Architecture: source
Version: 7.6.10-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org>
Changed-By: Joel Kraehemann <jkraehemann@gmail.com>
Closes: 1096784
Changes:
 gsequencer (7.6.10-1) unstable; urgency=medium
 .
   * New upstream version 7.6.10
     + Fix FTBFS with GCC-15 closes: #1096784
   * updated libags-audio7t64.symbols because new function available
Checksums-Sha1:
 d12e427f4cb2008f033e6520c6f3bee46d696b43 3944 gsequencer_7.6.10-1.dsc
 107dd3643c7c5f65cf340f0dd7d093fad7f6776b 11624511 gsequencer_7.6.10.orig.tar.gz
 20a5302567095603e0eddec45fdd4b4255080f26 659 gsequencer_7.6.10.orig.tar.gz.asc
 dfd75714ac4c2346f1d1746e128584e5eaa5efbb 50552 gsequencer_7.6.10-1.debian.tar.xz
 3e207cb7b6ab6a690e16f25838e61a6dbdc99262 28997 gsequencer_7.6.10-1_amd64.buildinfo
Checksums-Sha256:
 e98cf92240983e4b37a41c31d660e8a33c95e826f1e77f02635d788feac198b9 3944 gsequencer_7.6.10-1.dsc
 6bdeac947a066860d1ccbcba5227a78d906c50430c7f8fe84def9749a4a9d946 11624511 gsequencer_7.6.10.orig.tar.gz
 ce06297e9711c198f9839007d4565f8a0f2d7b3d025268af55665f02456e17a3 659 gsequencer_7.6.10.orig.tar.gz.asc
 93537e3bcbc047846ab5281038c17e77922a3e84872f1f503c0f7064a55cbd92 50552 gsequencer_7.6.10-1.debian.tar.xz
 dfec0e16cef6917e38ba35068da338d1e91865bd2ce19d4b91d33d82e0d06ceb 28997 gsequencer_7.6.10-1_amd64.buildinfo
Files:
 af924beb5230840cc5574e9d4ae1b93c 3944 sound optional gsequencer_7.6.10-1.dsc
 e9a79481cf540fa3e41e580c9604418b 11624511 sound optional gsequencer_7.6.10.orig.tar.gz
 095489918bf2e4220caee4b996ff2b84 659 sound optional gsequencer_7.6.10.orig.tar.gz.asc
 53af3f1b0d86f36edeb781c4c977b942 50552 sound optional gsequencer_7.6.10-1.debian.tar.xz
 b9840f593e992f0602af0dc3bcbe5a31 28997 sound optional gsequencer_7.6.10-1_amd64.buildinfo


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

iQIzBAEBCgAdFiEEi3hoeGwz5cZMTQpICBa54Yx2K60FAmfUFeoACgkQCBa54Yx2
K63/jQ/9ERAkjD2oo+uE88olCaakn1CTdhwH7FWnG2fr4KcevO1QSnWXhMIxKt0M
HWCNqu/VCOtYM5vkKSODKUqU5w2HNb06cDJoKG6ec9AwRYTJP4V13IeNEniUsKAj
+NjP38HqfFSuLFVu0ev3vtSVSK4KdA+GKjpQxgXUslS8CHL6WcAlHKrN3STvG+bV
z3TwNpjcQd0x0XKYap1xDR1v8uvjbbd2bHrXhdtQR9sN9XYOePt9BB47MEOLN6W9
E5XDRbPrF0HxCj/JEMJO+Wl+w6jvCEp6mBCc4ALK4dZrJmCrkW1xI0BPQIuUNwZ8
g+/nDjlz5pGB99JiIxQI/T6rPuEIzXdJ2e5LpPZvLCMUm4/CtwUfikCWrnrw2R/c
Keu3PyUt3MdCRigttUy/JrngbLzK/MmMYTEAfnnqK4+Aohf4EuInE8iHzmX3mUXV
udscfICmAcA5zf50hEPZUXvvPjsd2enst3yxpNg+BujlfIzKF98gdzfyKixLzQ1S
WSSpCoxKRfsozArVChEo4/00DPM3//4K+KrUHYyr9PviVPW+0rby5sOTwW0IeeKh
Ilp8MDku/bySE3cSEccs0fYRM48eHF0/zoUs2yDMkPBl6iT/PY8ILUBaIjDAB/xk
M6BfDRPIPrY9Kxm7imBJLZXDGVqMlXyrydLWNjPigyuU7hZahMI=
=nJwS
-----END PGP SIGNATURE-----

Attachment: pgpqqjXpSvdH8.pgp
Description: PGP signature


--- End Message ---

Reply to: