Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package QMPlay2 for openSUSE:Factory checked 
in at 2021-03-18 22:55:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/QMPlay2 (Old)
 and      /work/SRC/openSUSE:Factory/.QMPlay2.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "QMPlay2"

Thu Mar 18 22:55:23 2021 rev:52 rq:879904 version:21.03.09

Changes:
--------
--- /work/SRC/openSUSE:Factory/QMPlay2/QMPlay2.changes  2021-03-11 
20:12:35.412692613 +0100
+++ /work/SRC/openSUSE:Factory/.QMPlay2.new.2401/QMPlay2.changes        
2021-03-18 22:55:26.215563011 +0100
@@ -1,0 +2,7 @@
+Wed Mar 17 16:38:27 UTC 2021 - Simon Vogl <simon.v...@gmx.net>
+
+- Added 0001-fix-kde-startup-warning.patch to fix SVG warning with Plasma >= 
5.21.3
+- Disabled PipeWire support on openSUSE Leap 15.X and SLE15SPX as they don't 
provide a recent enough version of PipeWire
+- Increase _constrains requirements to fix rare compilation issues
+
+-------------------------------------------------------------------

New:
----
  0001-fix-kde-startup-warning.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ QMPlay2.spec ++++++
--- /var/tmp/diff_new_pack.rV1X5J/_old  2021-03-18 22:55:26.851563698 +0100
+++ /var/tmp/diff_new_pack.rV1X5J/_new  2021-03-18 22:55:26.855563703 +0100
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
-
 %define __builder Ninja
 
 Name:           QMPlay2
@@ -28,6 +27,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-kde-startup-warning.patch
 BuildRequires:  cmake >= 3.16
 BuildRequires:  gcc-c++
 BuildRequires:  ninja
@@ -102,6 +103,11 @@
   -DUSE_LYRICS=ON \
   -DUSE_RADIO=ON \
   -DUSE_YOUTUBE=ON \
+%if 0%{?suse_version} >= 1550
+  -DUSE_PIPEWIRE=ON \
+%else
+  -DUSE_PIPEWIRE=OFF \
+%endif
   -DUSE_UPDATES=OFF \
   -DUSE_YOUTUBEDL=ON
 

++++++ 0001-fix-kde-startup-warning.patch ++++++
>From 7b2df68ba9bdec45271d9791a4b997f7031aef2b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?B=C5=82a=C5=BCej=20Szczygie=C5=82?= <spa...@wp.pl>
Date: Tue, 16 Mar 2021 18:02:28 +0100
Subject: [PATCH] Fix svg icon engine warning after KDE update

---
 src/gui/Main.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gui/Main.cpp b/src/gui/Main.cpp
index 2ebd731b..284c2c53 100644
--- a/src/gui/Main.cpp
+++ b/src/gui/Main.cpp
@@ -790,7 +790,7 @@ int main(int argc, char *argv[])
         qmplay2Gui.loadIcons();
         {
             const QIcon svgIcon = QIcon(":/QMPlay2.svgz");
-            if (!svgIcon.availableSizes().isEmpty())
+            if (svgIcon.availableSizes().size() == 1)
                 QMessageBox::warning(nullptr, QString(), QObject::tr("QtSvg 
icon engine plugin doesn't exist.\nQMPlay2 will not scale up icons!"));
         }
 
++++++ _constraints ++++++
--- /var/tmp/diff_new_pack.rV1X5J/_old  2021-03-18 22:55:26.899563750 +0100
+++ /var/tmp/diff_new_pack.rV1X5J/_new  2021-03-18 22:55:26.899563750 +0100
@@ -1,16 +1,11 @@
 <constraints>
-  <linux>
-    <version>
-      <min>4.0</min>
-    </version>
-  </linux>
   <hardware>
     <processors>4</processors>
     <disk>
-      <size unit="G">4</size>
+      <size unit="G">8</size>
     </disk>
     <memory>
-      <size unit="G">2</size>
+      <size unit="G">4</size>
     </memory>
   </hardware>
 </constraints>

Reply via email to