Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package QMPlay2 for openSUSE:Factory checked in at 2022-08-27 11:50:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/QMPlay2 (Old) and /work/SRC/openSUSE:Factory/.QMPlay2.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "QMPlay2" Sat Aug 27 11:50:27 2022 rev:65 rq:999498 version:22.08.21 Changes: -------- --- /work/SRC/openSUSE:Factory/QMPlay2/QMPlay2.changes 2022-06-17 21:23:18.462799232 +0200 +++ /work/SRC/openSUSE:Factory/.QMPlay2.new.2083/QMPlay2.changes 2022-08-27 11:50:29.489894813 +0200 @@ -1,0 +2,16 @@ +Fri Aug 26 23:16:47 UTC 2022 - Simon Vogl <[email protected]> + +- Added 0001-fix-older-qt-compilation.patch to fix a compile error on openSUSE Leap 15.3 +- Update to version 22.08.21 + * use RubberBand to keep audio pitch across playback speed, + * revert OpenSSL to 1.1.1 to fix https issues on Win 7, + * use the song name as the title for GME (cspiegel), + * fix displaying bitmap subtitles without duration, + * fix color space on limited YUV range, + * change HQ image downscale threshold, + * update Dutch translation (Vistaus), + * improve HQ image upscaling, + * fix crash with Vulkan 1.0, + * other minor fixes. + +------------------------------------------------------------------- Old: ---- QMPlay2-src-22.06.16.tar.xz New: ---- 0001-fix-older-qt-compilation.patch QMPlay2-src-22.08.21.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ QMPlay2.spec ++++++ --- /var/tmp/diff_new_pack.G4XYEm/_old 2022-08-27 11:50:30.189896317 +0200 +++ /var/tmp/diff_new_pack.G4XYEm/_new 2022-08-27 11:50:30.193896326 +0200 @@ -19,7 +19,7 @@ %define __builder Ninja Name: QMPlay2 -Version: 22.06.16 +Version: 22.08.21 Release: 0 Summary: A Qt based media player, streamer and downloader License: LGPL-3.0-or-later @@ -28,6 +28,8 @@ Source: https://github.com/zaps166/QMPlay2/releases/download/%{version}/QMPlay2-src-%{version}.tar.xz # PATCH-FEATURE-OPENSUSE Patch1: 0001-add-opensuse-customizations.patch +# PATCH-FIX-UPSTREAM +Patch2: 0001-fix-older-qt-compilation.patch BuildRequires: cmake >= 3.16 BuildRequires: gcc-c++ # Use gcc 10 for openSUSE Leap 15.3+ and SLE15SP3+ @@ -62,6 +64,10 @@ BuildRequires: pkgconfig(libva) BuildRequires: pkgconfig(libva-glx) BuildRequires: pkgconfig(portaudio-2.0) +# Enable rubberband support on openSUSE Tumbleweed +%if 0%{?suse_version} >= 1550 +BuildRequires: pkgconfig(rubberband) >= 3.0.0 +%endif BuildRequires: pkgconfig(shaderc) BuildRequires: pkgconfig(taglib) >= 1.9 BuildRequires: pkgconfig(vdpau) @@ -111,6 +117,11 @@ -DUSE_GLSLC=ON \ -DUSE_PORTAUDIO=ON \ -DUSE_PIPEWIRE=ON \ +%if 0%{?suse_version} >= 1550 + -DUSE_RUBBERBAND=ON \ +%else + -DUSE_RUBBERBAND=OFF \ +%endif -DUSE_UPDATES=OFF %ninja_build ++++++ 0001-fix-older-qt-compilation.patch ++++++ >From 5aa83eb9f216581558142cee19e92f792c5ef603 Fri 26 8 23:16:47 2022 From: B??a??ej Szczygie?? <[email protected]> Date: Fri, 26 Aug 2022 23:16:47 UTC Subject: [PATCH] Fix compilation with older Qt Move is protected by Q_DISABLE_COPY in this case, too. diff --git a/src/qmplay2/StreamInfo.hpp b/src/qmplay2/StreamInfo.hpp index 9264ed5a..823f9cbe 100644 --- a/src/qmplay2/StreamInfo.hpp +++ b/src/qmplay2/StreamInfo.hpp @@ -49,7 +49,7 @@ enum QMPlay2Tags class QMPLAY2SHAREDLIB_EXPORT StreamInfo { Q_DECLARE_TR_FUNCTIONS(StreamInfo) - Q_DISABLE_COPY_MOVE(StreamInfo) + Q_DISABLE_COPY(StreamInfo) public: static QMPlay2Tags getTag(const QString &tag); ++++++ QMPlay2-src-22.06.16.tar.xz -> QMPlay2-src-22.08.21.tar.xz ++++++ ++++ 4391 lines of diff (skipped)
