Your message dated Wed, 15 Dec 2021 19:00:25 +0000
with message-id <e1mxzvp-000gde...@fasolo.debian.org>
and subject line Bug#984393: fixed in vdr-plugin-xineliboutput 
2.2.0+git20211212-1
has caused the Debian Bug report #984393,
regarding vdr-plugin-remote: ftbfs with GCC-11
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 ow...@bugs.debian.org
immediately.)


-- 
984393: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=984393
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:vdr-plugin-remote
Version: 0.7.0-4
Severity: normal
Tags: sid bookworm
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-11

[This bug is not targeted to the upcoming bullseye 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-11/g++-11, but succeeds to build with gcc-10/g++-10. The
severity of this report will be raised before the bookworm release,
so nothing has to be done for the bullseye release.

The full build log can be found at:
http://people.debian.org/~doko/logs/20210228/filtered/gcc11/vdr-plugin-remote_0.7.0-4_unstable_gcc11.log
The last lines of the build log are at the end of this report.

To build with GCC 11, either set CC=gcc-11 CXX=g++-11 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

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-11/porting_to.html

GCC 11 defaults to the GNU++17 standard.  If your package installs
header files in /usr/include, please don't work around C++17 issues
by choosing a lower C++ standard for the package build, but fix these
issues to build with the C++17 standard.

[...]
dh clean --with vdrplugin
dh: warning: Compatibility levels before 10 are deprecated (level 9 in use)
   dh_auto_clean
dh_auto_clean: warning: Compatibility levels before 10 are deprecated (level 9 
in use)
        make -j1 clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_clean
dh_clean: warning: Compatibility levels before 10 are deprecated (level 9 in 
use)
 debian/rules build
dh build --with vdrplugin
dh: warning: Compatibility levels before 10 are deprecated (level 9 in use)
   dh_update_autotools_config
   dh_auto_configure
dh_auto_configure: warning: Compatibility levels before 10 are deprecated 
(level 9 in use)
   dh_auto_build
dh_auto_build: warning: Compatibility levels before 10 are deprecated (level 9 
in use)
        make -j1
make[1]: Entering directory '/<<PKGBUILDDIR>>'
g++ -g -O2 -fdebug-prefix-map=/build/vdr-J3eFss/vdr-2.4.1=. 
-fstack-protector-strong -Wformat -Werror=format-security -fPIC -D_GNU_SOURCE 
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -c 
-DPLUGIN_NAME_I18N='"remote"' -DREMOTE_FEATURE_LIRC -DREMOTE_FEATURE_TCPIP  
remote.c
g++ -g -O2 -fdebug-prefix-map=/build/vdr-J3eFss/vdr-2.4.1=. 
-fstack-protector-strong -Wformat -Werror=format-security -fPIC -D_GNU_SOURCE 
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -c 
-DPLUGIN_NAME_I18N='"remote"' -DREMOTE_FEATURE_LIRC -DREMOTE_FEATURE_TCPIP  
ttystatus.c
ttystatus.c: In member function ‘virtual void cTtyStatus::display(const char*, 
bool, int)’:
ttystatus.c:114:13: error: ‘min’ was not declared in this scope; did you mean 
‘std::min’?
  114 |         n = min(limit-pos, (int)sizeof(blanks)-1);
      |             ^~~
      |             std::min
In file included from /usr/include/c++/11/bits/specfun.h:45,
                 from /usr/include/c++/11/cmath:1927,
                 from /usr/include/c++/11/math.h:36,
                 from /usr/include/vdr/tools.h:18,
                 from /usr/include/vdr/i18n.h:14,
                 from /usr/include/vdr/plugin.h:13,
                 from ttystatus.c:25:
/usr/include/c++/11/bits/stl_algobase.h:278:5: note: ‘std::min’ declared here
  278 |     min(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
ttystatus.c: In member function ‘virtual void cTtyStatus::OsdCurrentItem(const 
char*)’:
ttystatus.c:361:17: error: ‘min’ was not declared in this scope; did you mean 
‘std::min’?
  361 |         first = min(currIndex-10,lastIndex-20);
      |                 ^~~
      |                 std::min
In file included from /usr/include/c++/11/bits/specfun.h:45,
                 from /usr/include/c++/11/cmath:1927,
                 from /usr/include/c++/11/math.h:36,
                 from /usr/include/vdr/tools.h:18,
                 from /usr/include/vdr/i18n.h:14,
                 from /usr/include/vdr/plugin.h:13,
                 from ttystatus.c:25:
/usr/include/c++/11/bits/stl_algobase.h:278:5: note: ‘std::min’ declared here
  278 |     min(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
ttystatus.c:362:17: error: ‘max’ was not declared in this scope; did you mean 
‘std::max’?
  362 |         first = max(first,0);
      |                 ^~~
      |                 std::max
In file included from /usr/include/c++/11/bits/specfun.h:45,
                 from /usr/include/c++/11/cmath:1927,
                 from /usr/include/c++/11/math.h:36,
                 from /usr/include/vdr/tools.h:18,
                 from /usr/include/vdr/i18n.h:14,
                 from /usr/include/vdr/plugin.h:13,
                 from ttystatus.c:25:
/usr/include/c++/11/bits/stl_algobase.h:300:5: note: ‘std::max’ declared here
  300 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
make[1]: *** [Makefile:137: ttystatus.o] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j1 returned exit code 2
make: *** [debian/rules:7: build] Error 25
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: vdr-plugin-xineliboutput
Source-Version: 2.2.0+git20211212-1
Done: Tobias Grimm <et...@debian.org>

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

Debian distribution maintenance software
pp.
Tobias Grimm <et...@debian.org> (supplier of updated vdr-plugin-xineliboutput 
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 ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 12 Dec 2021 19:27:25 +0100
Source: vdr-plugin-xineliboutput
Binary: libxine2-xvdr libxine2-xvdr-dbgsym libxineliboutput-fbfe 
libxineliboutput-fbfe-dbgsym libxineliboutput-sxfe libxineliboutput-sxfe-dbgsym 
libxineliboutput-wlfe libxineliboutput-wlfe-dbgsym vdr-plugin-xineliboutput 
vdr-plugin-xineliboutput-dbgsym xineliboutput-fbfe xineliboutput-fbfe-dbgsym 
xineliboutput-sxfe xineliboutput-sxfe-dbgsym xineliboutput-wlfe 
xineliboutput-wlfe-dbgsym
Architecture: source amd64
Version: 2.2.0+git20211212-1
Distribution: unstable
Urgency: medium
Maintainer: Debian VDR Team <pkg-vdr-dvb-de...@lists.alioth.debian.org>
Changed-By: Tobias Grimm <et...@debian.org>
Description:
 libxine2-xvdr - Xine input plugin for vdr-plugin-xineliboutput streams
 libxineliboutput-fbfe - Local framebuffer frontend for the xineliboutput plugin
 libxineliboutput-sxfe - Local X-Server frontend for the xineliboutput plugin
 libxineliboutput-wlfe - Local Waylend frontend for the xineliboutput plugin
 vdr-plugin-xineliboutput - VDR plugin for Xine based sofdevice frontends
 xineliboutput-fbfe - Remote Framebuffer frontend for vdr-plugin-xineliboutput
 xineliboutput-sxfe - Remote X-Server frontend for vdr-plugin-xineliboutput
 xineliboutput-wlfe - Remote X-Server frontend for vdr-plugin-xineliboutput
Closes: 951921 955962 984393
Changes:
 vdr-plugin-xineliboutput (2.2.0+git20211212-1) unstable; urgency=medium
 .
   * New Upstream Snapshot (commit f4df32) (Closes: #951921)
   * Depend on debhelper-compat (= 13)
   * Build-Depend on vdr >= 2.4.7 (Closes: #984393)
   * Fix installation files
   * Install vdr-wlfe Wayland frontend
   * Disable dbus-glib-1 (Closes: #955962)
Checksums-Sha1:
 13bb22ec99031a6c4c8be4daf82f2edfa717c043 2971 
vdr-plugin-xineliboutput_2.2.0+git20211212-1.dsc
 f0c14aa39dc1c3c32f77a6a1b41c310af32dccaf 438293 
vdr-plugin-xineliboutput_2.2.0+git20211212.orig.tar.gz
 537f74883d6851581b5ca162365f68b9239d7329 21440 
vdr-plugin-xineliboutput_2.2.0+git20211212-1.debian.tar.xz
 8d10261c6b70ec61c089f36c32097b4b575671df 225684 
libxine2-xvdr-dbgsym_2.2.0+git20211212-1_amd64.deb
 b1fb519b984bb9f198dca3652fb3b1255d7c05db 122108 
libxine2-xvdr_2.2.0+git20211212-1_amd64.deb
 20befbaf56d575ac81767fdedc02b08aa4b6c20b 88416 
libxineliboutput-fbfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 f24e9e9dd98af4d8a58b3abd87af062e1e35d31c 58160 
libxineliboutput-fbfe_2.2.0+git20211212-1_amd64.deb
 b56e8e6df067c1f649c74ad1c39c3da2cfff6848 129000 
libxineliboutput-sxfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 08bbb7ec12152b3296bd0f8824f720c52b7d36ee 76168 
libxineliboutput-sxfe_2.2.0+git20211212-1_amd64.deb
 850f83bef26f337cced63fea016e3c978c627948 105588 
libxineliboutput-wlfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 0591dd71a4a55a5989e0637a7289ee1b01a4907c 61252 
libxineliboutput-wlfe_2.2.0+git20211212-1_amd64.deb
 14dd00e9130baafe0e1faae7599fe0ce2c3bb78b 553588 
vdr-plugin-xineliboutput-dbgsym_2.2.0+git20211212-1_amd64.deb
 e9a1d087e8f4961ca39b88ab59837e0d28e5e0f3 14357 
vdr-plugin-xineliboutput_2.2.0+git20211212-1_amd64.buildinfo
 1ea780b867bce09b2e6c261d60ee111a49b1451e 251616 
vdr-plugin-xineliboutput_2.2.0+git20211212-1_amd64.deb
 cf3c765b43bedfa9ae900588ae1ce658ff7894c2 125212 
xineliboutput-fbfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 d177512f440d60e21bc1f277557e01901b3b6f3e 73632 
xineliboutput-fbfe_2.2.0+git20211212-1_amd64.deb
 126468e99bbf4c2c5c2738c81b82b200f95c08a8 165712 
xineliboutput-sxfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 aa80deaebd9053d74468e68894fa102887d277da 99876 
xineliboutput-sxfe_2.2.0+git20211212-1_amd64.deb
 8bd729ef86105b9b3860547e2471cca9e0e77b07 141880 
xineliboutput-wlfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 16aeb3c63ac15b6ef2dba7502f43b566f6c42eb9 67504 
xineliboutput-wlfe_2.2.0+git20211212-1_amd64.deb
Checksums-Sha256:
 b37934f806c6818bdabaf794b9976e82f49fe559ffbf09281354bef14f5627c0 2971 
vdr-plugin-xineliboutput_2.2.0+git20211212-1.dsc
 088c20881ed662da0853e0eab153966f276c7801c7a90e12dd1186dea7b56388 438293 
vdr-plugin-xineliboutput_2.2.0+git20211212.orig.tar.gz
 87ca2cc6ca20f3c5bd47e86bb56fc2cc29826694d279b2185d38b434afe4207a 21440 
vdr-plugin-xineliboutput_2.2.0+git20211212-1.debian.tar.xz
 69803b4cb5c04d0d8032b0e54213ca536f0b8790b96595193c0ddbb3c44768e5 225684 
libxine2-xvdr-dbgsym_2.2.0+git20211212-1_amd64.deb
 b9ea2c73908110c9139374b2d94ad106d44c5bbc2142a74c7e2eefd71558142a 122108 
libxine2-xvdr_2.2.0+git20211212-1_amd64.deb
 2f50794d11a0278a06d0237786ed1e0fe9c39df698394c98f1522063f62fc6d5 88416 
libxineliboutput-fbfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 8232b5445629a47f89384b3d11f52e5da16b4b74648c88813f393ba034efb96e 58160 
libxineliboutput-fbfe_2.2.0+git20211212-1_amd64.deb
 32c2a7899811690e9dbb840548d81042cd528496efe897d6c58644a6645ddd58 129000 
libxineliboutput-sxfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 70989655536a65def9755c74e4685d80c30bd4140d97c74c73c40e990ad59746 76168 
libxineliboutput-sxfe_2.2.0+git20211212-1_amd64.deb
 7a10ed1de326dcf64ea9e118ce6d6b68a2b4fd3e77ef8fab87f4b8a71557c861 105588 
libxineliboutput-wlfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 7ea482ce6a9ea2a88252a10c83604454b4289871811a611d56dfa7b9cdfbafa5 61252 
libxineliboutput-wlfe_2.2.0+git20211212-1_amd64.deb
 95348e66e6267c53abcc6ed02b0e2f399f4019b7c17ff274e1973db4294d26b3 553588 
vdr-plugin-xineliboutput-dbgsym_2.2.0+git20211212-1_amd64.deb
 f9462ca973258872e9a6f376d747c47c0532dad6900eeec50757e4a43cbd737c 14357 
vdr-plugin-xineliboutput_2.2.0+git20211212-1_amd64.buildinfo
 aba2d9c038f6c2ea087bb8434b9b1a0487797a01a3791fec3d7922392dd0a36c 251616 
vdr-plugin-xineliboutput_2.2.0+git20211212-1_amd64.deb
 ab5782dd8b18fe0479bd1a02721c7f4d277b534cf09e5796335d1492332f8717 125212 
xineliboutput-fbfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 b40150771cee73819a8a37e4b6e0656cfa6dd97efd15111e54ba6fb5530ef770 73632 
xineliboutput-fbfe_2.2.0+git20211212-1_amd64.deb
 15983f533cee9db2c0feda431aca7d71861e599c9e2f7cc44da1b3613e1d0ed1 165712 
xineliboutput-sxfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 31f8b3c3199a4ecd0ceeca43936bde470c554854d21f15f563fbaeab4694946a 99876 
xineliboutput-sxfe_2.2.0+git20211212-1_amd64.deb
 c3c76ae30d513d8d1698e01b1626c58a255fee0a72b08508f5ff24ff7aaf8a1d 141880 
xineliboutput-wlfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 37885d1a08762f4a27026fd7060cf02eabae5321e13e6e94376e4e1bf02dea84 67504 
xineliboutput-wlfe_2.2.0+git20211212-1_amd64.deb
Files:
 492f8eaaf2a0f5d84e6ff523d60cbc62 2971 video optional 
vdr-plugin-xineliboutput_2.2.0+git20211212-1.dsc
 6254c726b67c20ed385bbf4ecb752985 438293 video optional 
vdr-plugin-xineliboutput_2.2.0+git20211212.orig.tar.gz
 c3dc43b4318fa6a6f0d8ecc69e74be9c 21440 video optional 
vdr-plugin-xineliboutput_2.2.0+git20211212-1.debian.tar.xz
 c2ff5c0aec176b332961b50c692eb28f 225684 debug optional 
libxine2-xvdr-dbgsym_2.2.0+git20211212-1_amd64.deb
 82b96528ad3e97b4a37ce04a6ed23eb0 122108 video optional 
libxine2-xvdr_2.2.0+git20211212-1_amd64.deb
 17eb807f79548809f7a253125f273e95 88416 debug optional 
libxineliboutput-fbfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 3ba07f756900c240dc160a4ba63e94e6 58160 video optional 
libxineliboutput-fbfe_2.2.0+git20211212-1_amd64.deb
 4755dcf41e381d53294156c9eb4f0db6 129000 debug optional 
libxineliboutput-sxfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 214a4a92f622e402cab97a5cfd5da195 76168 video optional 
libxineliboutput-sxfe_2.2.0+git20211212-1_amd64.deb
 ce761910a2ea7caadb2cbbd73c6c11ea 105588 debug optional 
libxineliboutput-wlfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 c57d716cad7243af5603387681174139 61252 video optional 
libxineliboutput-wlfe_2.2.0+git20211212-1_amd64.deb
 48456adf729a00499581506bcabbb6e9 553588 debug optional 
vdr-plugin-xineliboutput-dbgsym_2.2.0+git20211212-1_amd64.deb
 b081f51f0e3d24bb396eba10f07e170e 14357 video optional 
vdr-plugin-xineliboutput_2.2.0+git20211212-1_amd64.buildinfo
 7ca856a663377b5dbafd29e4d3458d96 251616 video optional 
vdr-plugin-xineliboutput_2.2.0+git20211212-1_amd64.deb
 a364d34fc8028809361fb0f7234b4ab1 125212 debug optional 
xineliboutput-fbfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 8d57c1341b3dd2c496f277973277b426 73632 video optional 
xineliboutput-fbfe_2.2.0+git20211212-1_amd64.deb
 6ae67252a4dca2ab2d281719327d50d0 165712 debug optional 
xineliboutput-sxfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 223c3a08a1a52fe0f5e12eda6d80be3c 99876 video optional 
xineliboutput-sxfe_2.2.0+git20211212-1_amd64.deb
 d01430f04c2dad439174340c141f428f 141880 debug optional 
xineliboutput-wlfe-dbgsym_2.2.0+git20211212-1_amd64.deb
 29f6224c2422cc20d8c290663e8694d3 67504 video optional 
xineliboutput-wlfe_2.2.0+git20211212-1_amd64.deb

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

iQIzBAEBCgAdFiEEV6STX5IhiI/eNxSi1i5PWwQTkLwFAmG2P7QACgkQ1i5PWwQT
kLxUxBAAj4lDksNDcEEYn0W70X7SDZEhTuta7I0DxiKahSO9zvlv/qkS6ra2Gho9
kpFdyFpl3bwGpi62M2TGHgJp0j8EFUrl7OHdQquWvh5CnlQFL1Dyy0joUjgqB8e4
o2Ai3ng9CbLlq51VC39DUzwixA+qmbPl3/rZATCMg8HVyX4yIsqk9rY3di5IzJs6
h+o9qOgnizPs7ZO1LqhA8OHWEIE6N4k2DNEbxZSSaO8bL/ohTQKG4HaOFdGTp6vs
Xpn/VifYzuPHltvo931jnB7ZekTD4WZb8sKMY9n/HnifBoxBes190VR2bAKxHpW3
Yrt10MMCJaWI83asWYuhM+6XB7qip37QwEDO2b325t22l04VTvpFMMT2zd2GDju7
csOLt/GCo+IxUvhQBED1+7Ldb9f+KaEH6dVnDWC2IauoZZymZHhB2DeTQm64S2dB
r6SaKrQk0V2po7wNw0348Spi/hAG2L8bOE9gL0Zfpl/1r8Y4vIgLfQtDm0/JqvIh
hBxxuxqqefq7PdPveRvimhhvReeszHRyR7YZcFVFengama3g0UZt5T9K0WOu6L64
fObjguUf6Tllu81ZGZ8Yb+yE/0TvOMQ7Twc+SsMRHnVZRe0N1Cp9gBvCzkjmkWk8
2NZKlaVc912//nHkHy/nXJbuyJDxzcbZdwnpGQ4NjbhEz4Rh79I=
=5JTT
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to