Control: tags 1026310 + pending Dear maintainer,
I've prepared an NMU for vdr (versioned as 2.6.0-1.1) and uploaded it to DELAYED/5. Please feel free to tell me if I should cancel it. cu Adrian
diff -Nru vdr-2.6.0/debian/changelog vdr-2.6.0/debian/changelog --- vdr-2.6.0/debian/changelog 2022-01-04 22:55:39.000000000 +0200 +++ vdr-2.6.0/debian/changelog 2023-02-26 01:32:03.000000000 +0200 @@ -1,3 +1,11 @@ +vdr (2.6.0-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Apply patch from Rogo to remove trailing newline from abiversion. + (Closes: #1026310) + + -- Adrian Bunk <b...@debian.org> Sun, 26 Feb 2023 01:32:03 +0200 + vdr (2.6.0-1) unstable; urgency=medium * New upstream version 2.6.0 and drop patches fixed upstream diff -Nru vdr-2.6.0/debian/dh-addon-vdrplugin/dh_vdrplugin_depends vdr-2.6.0/debian/dh-addon-vdrplugin/dh_vdrplugin_depends --- vdr-2.6.0/debian/dh-addon-vdrplugin/dh_vdrplugin_depends 2022-01-04 22:55:39.000000000 +0200 +++ vdr-2.6.0/debian/dh-addon-vdrplugin/dh_vdrplugin_depends 2023-02-26 01:32:00.000000000 +0200 @@ -43,6 +43,8 @@ open(my $abiversion_file, "</usr/share/vdr-dev/abi-version") or die "Could not read VDR's ABI version dependency"; my @abiversion = <$abiversion_file>; close($abiversion_file); +# remove trailing newline +chomp($abiversion[-1]); verbose_print("Setting vdr:Depends=@abiversion");