Your message dated Sat, 11 Oct 2025 09:04:43 +0000
with message-id <[email protected]>
and subject line Bug#1097301: fixed in linuxtv-dvb-apps 1.1.1+rev1500-2.1
has caused the Debian Bug report #1097301,
regarding linuxtv-dvb-apps: 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.)
--
1097301: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097301
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:linuxtv-dvb-apps
Version: 1.1.1+rev1500-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/linuxtv-dvb-apps_1.1.1+rev1500-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
[...]
In file included from /usr/include/stdio.h:970,
from lsdvb.c:24:
In function ‘sprintf’,
inlined from ‘get_frontend_entry’ at lsdvb.c:74:3:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note:
‘__builtin___sprintf_chk’ output between 16 and 271 bytes into a destination of
size 64
30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), __fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 | __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
lsdvb.c: In function ‘main’:
lsdvb.c:292:54: warning: ‘%s’ directive writing up to 63 bytes into a region of
size between 36 and 46 [-Wformat-overflow=]
292 | sprintf(fedev, "%s/adapter%d/%s", DVB_DIR,
adapter, frontend);
| ^~
~~~~~~~~
In function ‘sprintf’,
inlined from ‘main’ at lsdvb.c:292:4:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:30:10: note:
‘__builtin___sprintf_chk’ output between 19 and 92 bytes into a destination of
size 64
30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 | __glibc_objsize (__s), __fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 | __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~
make[4]: Leaving directory
'/build/reproducible-path/linuxtv-dvb-apps-1.1.1+rev1500/util/lsdvb'
make -C alevt all
make[4]: Entering directory
'/build/reproducible-path/linuxtv-dvb-apps-1.1.1+rev1500/util/alevt'
cc -O -g -w -DVERSION=\"1.7.0\" -DWITH_PNG -DUSE_LIBZVBI -I/include -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o main.o main.c
cc -O -g -w -DVERSION=\"1.7.0\" -DWITH_PNG -DUSE_LIBZVBI -I/include -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o ui.o ui.c
cc bdf2xbm.c -o bdf2xbm
cc -O -g -w -DVERSION=\"1.7.0\" -DWITH_PNG -DUSE_LIBZVBI -I/include -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o fdset.o fdset.c
cc -O -g -w -DVERSION=\"1.7.0\" -DWITH_PNG -DUSE_LIBZVBI -I/include -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o vbi.o vbi.c
cc -O -g -w -DVERSION=\"1.7.0\" -DWITH_PNG -DUSE_LIBZVBI -I/include -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o cache.o cache.c
cc -O -g -w -DVERSION=\"1.7.0\" -DWITH_PNG -DUSE_LIBZVBI -I/include -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o help.o help.c
cc -O -g -w -DVERSION=\"1.7.0\" -DWITH_PNG -DUSE_LIBZVBI -I/include -Wdate-time
-D_FORTIFY_SOURCE=2 -c -o search.o search.c
search.c: In function ‘search_next’:
search.c:120:9: error: passing argument 5 of ‘s->cache->op->foreach_pg’ from
incompatible pointer type [-Wincompatible-pointer-types]
120 | search_pg, s);
| ^~~~~~~~~
| |
| int (*)(struct search *, struct vt_page *)
search.c:120:9: note: expected ‘int (*)(void)’ but argument is of type ‘int
(*)(struct search *, struct vt_page *)’
search.c:57:12: note: ‘search_pg’ declared here
57 | static int search_pg(struct search *s, struct vt_page *vtp)
| ^~~~~~~~~
cache.c: In function ‘cache_foreach_pg’:
cache.c:170:17: error: too many arguments to function ‘func’; expected 0, have 2
170 | if (func(data, vtp))
| ^~~~ ~~~~
make[4]: *** [<builtin>: search.o] Error 1
make[4]: *** Waiting for unfinished jobs....
make[4]: *** [<builtin>: cache.o] Error 1
ui.c: In function ‘do_next_pgno’:
ui.c:143:57: error: passing argument 5 of ‘w->vbi->cache->op->foreach_pg’ from
incompatible pointer type [-Wincompatible-pointer-types]
143 | pgno, subno, dir, subs ? _next_subno:_next_pgno,
&arg))
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
| |
| int (*)(int *,
struct vt_page *)
ui.c:143:57: note: expected ‘int (*)(void)’ but argument is of type ‘int
(*)(int *, struct vt_page *)’
make[4]: *** [<builtin>: ui.o] Error 1
make[4]: Leaving directory
'/build/reproducible-path/linuxtv-dvb-apps-1.1.1+rev1500/util/alevt'
make[3]: *** [Makefile:22: all] Error 2
make[3]: Leaving directory
'/build/reproducible-path/linuxtv-dvb-apps-1.1.1+rev1500/util'
make[2]: *** [Makefile:14: all] Error 2
make[2]: Leaving directory
'/build/reproducible-path/linuxtv-dvb-apps-1.1.1+rev1500'
dh_auto_build: error: make -j8 "INSTALL=install --strip-program=true" returned
exit code 2
make[1]: *** [debian/rules:10: override_dh_auto_build] Error 25
make[1]: Leaving directory
'/build/reproducible-path/linuxtv-dvb-apps-1.1.1+rev1500'
make: *** [debian/rules:6: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: linuxtv-dvb-apps
Source-Version: 1.1.1+rev1500-2.1
Done: Adrian Bunk <[email protected]>
We believe that the bug you reported is fixed in the latest version of
linuxtv-dvb-apps, 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.
Adrian Bunk <[email protected]> (supplier of updated linuxtv-dvb-apps 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: Thu, 09 Oct 2025 17:05:28 +0300
Source: linuxtv-dvb-apps
Architecture: source
Version: 1.1.1+rev1500-2.1
Distribution: unstable
Urgency: medium
Maintainer: Debian VDR Team <[email protected]>
Changed-By: Adrian Bunk <[email protected]>
Closes: 1097301 1102029
Changes:
linuxtv-dvb-apps (1.1.1+rev1500-2.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Build with -std=gnu17 to workaround FTBFS with GCC 15.
(Closes: #1097301)
* Fix atsc_epg on architectures with unsigned char,
thanks to John Scott. (Closes: #1102029)
Checksums-Sha1:
b52be62ee20771971e3f8464d2ba4317cfaad9eb 2212
linuxtv-dvb-apps_1.1.1+rev1500-2.1.dsc
dc4d213454ec0b1bfb54e8d626f82fb9c9c4c6d0 23092
linuxtv-dvb-apps_1.1.1+rev1500-2.1.debian.tar.xz
Checksums-Sha256:
2cfc8d080655b979bd8d39a30dde7d9e401c03e7719e595040d91bfa974ceecd 2212
linuxtv-dvb-apps_1.1.1+rev1500-2.1.dsc
c280a4d77dbba8c13ea6cb58b05a4a6911bb83183179fb5d676caefafeebffbb 23092
linuxtv-dvb-apps_1.1.1+rev1500-2.1.debian.tar.xz
Files:
d83a72a8f235f9c894c56aeb0e01f797 2212 video optional
linuxtv-dvb-apps_1.1.1+rev1500-2.1.dsc
79f5d9a27777e005f8a81c0a3ba9725c 23092 video optional
linuxtv-dvb-apps_1.1.1+rev1500-2.1.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEOvp1f6xuoR0v9F3wiNJCh6LYmLEFAmjnw6MACgkQiNJCh6LY
mLEHJw//WWMW9D0j1jDQkE1R4hTNJnGsrVZVawf54OOVk5/x/N0il/F/jBWhFmC3
s6OkvvPUsQTG+udpd64Eh6NwZ1t342K8GvOiXNN8N9mNbnYdge3fh6d3xXvtC36h
u4VvWyCXy3A7RAFet5EjFY6LJ6QYrL6hIQ3OkB5UOlAPY3vIYinZdFfXXTYNM0l4
6TbrIdD2RlYXw7NLRX4egHTUrGEiWrPEsc2ASq2SvZK8htN9zbqfVFOLoU74Zvpp
LTSbcH03cb/UxhvW6Ll/NyhAHxo3wmDkpGw1Du/Qh4YfkTxavEWL0szYb/NFjTT4
DV8P3Td9dV/huPBJcAaKoEbtfidtMeukPS4rNsETWnQZDqteelQpX/jpIC7/bpaE
hXd/GpFbkNDvVdIFxJvzdvtUZybjhPx1o6YHMsrorpKg7OI6f6GI+vkKBZizNgl5
hr53aKKpJBEA4tHtZ1S58n9b2BdKEQVBtl7/TGueNC6aB2z52sgBPmq2kUovuU2v
/3Dz67Esi+q0F8y6YKujkMbljQ4pkDeh+u1eHxwCbeYz5Km5yhDZmpD4+CqWIZQU
su0z4sGx4dH5j1ubqbfB0oa/oOQCDa2SvAljNlNGxY1hJIp9KE/TZgHN2EUqKmRf
UnOAX/Na1vT9zuxyA+R6tDd1OJ1QOyTVvLGJ55mcrPdMCw3LsZM=
=Fhx5
-----END PGP SIGNATURE-----
pgpe02Yx0pusO.pgp
Description: PGP signature
--- End Message ---