Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package nageru Hi Release Team and Hats, Would it be possible to unblock nageru 2.0.1-3, which I just uploaded? The changes are: 1. Reenable build-dep on srt (I was asked to remove it, since srt was RC-buggy, but it turned out to stay in testing after all). 2. A critical one-line bugfix (from upstream git) that prevents correct transcoding. diff -Nru nageru-2.0.1/debian/changelog nageru-2.0.1/debian/changelog --- nageru-2.0.1/debian/changelog 2021-01-10 13:39:12.000000000 +0100 +++ nageru-2.0.1/debian/changelog 2021-04-04 21:26:11.000000000 +0200 @@ -1,3 +1,11 @@ +nageru (2.0.1-3) unstable; urgency=medium + + * Reenable the SRT support, as the srt package was fixed again. + * fix-ffmpeg-height-calculation.diff: New patch from upstream git, + fixes resolution calculation in kaeru due to a typo. + + -- Steinar H. Gunderson <se...@debian.org> Sun, 04 Apr 2021 21:26:11 +0200 + nageru (2.0.1-2) unstable; urgency=medium * Build without SRT support (remove the build-dependency on diff -Nru nageru-2.0.1/debian/control nageru-2.0.1/debian/control --- nageru-2.0.1/debian/control 2021-01-10 13:39:08.000000000 +0100 +++ nageru-2.0.1/debian/control 2021-04-04 21:26:11.000000000 +0200 @@ -5,7 +5,7 @@ # lld is strictly optional, but depending on it means the build is more reproducible; # the result doesn't depend on whether the package was installed or not. # However, there's a bug on i386 where it doesn't link properly. -Build-Depends: debhelper (>= 13), qtbase5-dev, libqt5opengl5-dev, pkg-config, libusb-1.0-0-dev, libmovit-dev (>= 1.5.2), libmicrohttpd-dev, libx264-dev, libavcodec-dev, libavformat-dev (>= 7:3.1), libswscale-dev, libva-dev, libavresample-dev, libegl1-mesa-dev, libasound2-dev, libzita-resampler-dev, libluajit-5.1-dev, libbmusb-dev (>= 0.7.4), protobuf-compiler, libprotobuf-dev, libqcustomplot-dev, meson (>= 0.47), libjpeg-dev, libsqlite3-dev, libdrm-dev, lld [!i386] +Build-Depends: debhelper (>= 13), qtbase5-dev, libqt5opengl5-dev, pkg-config, libusb-1.0-0-dev, libmovit-dev (>= 1.5.2), libmicrohttpd-dev, libx264-dev, libavcodec-dev, libavformat-dev (>= 7:3.1), libswscale-dev, libva-dev, libavresample-dev, libegl1-mesa-dev, libasound2-dev, libzita-resampler-dev, libluajit-5.1-dev, libbmusb-dev (>= 0.7.4), protobuf-compiler, libprotobuf-dev, libqcustomplot-dev, meson (>= 0.47), libjpeg-dev, libsqlite3-dev, libdrm-dev, lld [!i386], libsrt-gnutls-dev Build-Conflicts: lld [i386] Standards-Version: 4.5.0 Homepage: https://nageru.sesse.net/ diff -Nru nageru-2.0.1/debian/patches/fix-ffmpeg-height-calculation.diff nageru-2.0.1/debian/patches/fix-ffmpeg-height-calculation.diff --- nageru-2.0.1/debian/patches/fix-ffmpeg-height-calculation.diff 1970-01-01 01:00:00.000000000 +0100 +++ nageru-2.0.1/debian/patches/fix-ffmpeg-height-calculation.diff 2021-04-04 21:26:11.000000000 +0200 @@ -0,0 +1,13 @@ +Index: nageru-2.0.1/nageru/ffmpeg_capture.cpp +=================================================================== +--- nageru-2.0.1.orig/nageru/ffmpeg_capture.cpp ++++ nageru-2.0.1/nageru/ffmpeg_capture.cpp +@@ -1109,7 +1109,7 @@ unsigned FFmpegCapture::frame_height(con + if (height == 0) { + return frame->height; + } else { +- return width; ++ return height; + } + } + diff -Nru nageru-2.0.1/debian/patches/series nageru-2.0.1/debian/patches/series --- nageru-2.0.1/debian/patches/series 2019-04-19 09:24:23.000000000 +0200 +++ nageru-2.0.1/debian/patches/series 2021-04-04 21:26:11.000000000 +0200 @@ -0,0 +1 @@ +fix-ffmpeg-height-calculation.diff unblock nageru/2.0.0-3 -- System Information: Debian Release: 10.9 APT prefers stable-debug APT policy: (500, 'stable-debug'), (500, 'proposed-updates'), (500, 'stable'), (500, 'oldstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 5.11.0 (SMP w/40 CPU cores) Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8), LANGUAGE=en_NO:en_US:en_GB:en (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system)