Hello community,

here is the log from the commit of package clementine for openSUSE:Factory 
checked in at 2020-06-02 14:43:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/clementine (Old)
 and      /work/SRC/openSUSE:Factory/.clementine.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "clementine"

Tue Jun  2 14:43:32 2020 rev:56 rq:810831 version:1.3.92

Changes:
--------
--- /work/SRC/openSUSE:Factory/clementine/clementine.changes    2019-12-30 
12:35:38.983830880 +0100
+++ /work/SRC/openSUSE:Factory/.clementine.new.3606/clementine.changes  
2020-06-02 14:44:18.412596367 +0200
@@ -1,0 +2,7 @@
+Tue Jun  2 09:35:19 UTC 2020 - Dave Plater <[email protected]>
+
+- Fix factory build with patch from git:
+  0001-Adds-missing-QPainterPath-include.patch
+- Update to tag 1.3.92
+
+-------------------------------------------------------------------

Old:
----
  clementine-1.3.9.tar.gz

New:
----
  0001-Adds-missing-QPainterPath-include.patch
  clementine-1.3.92.tar.gz

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

Other differences:
------------------
++++++ clementine.spec ++++++
--- /var/tmp/diff_new_pack.jtNgvw/_old  2020-06-02 14:44:19.192598833 +0200
+++ /var/tmp/diff_new_pack.jtNgvw/_new  2020-06-02 14:44:19.192598833 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package clementine
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,9 +16,9 @@
 #
 
 
-%define rev 240ba7b487e7132f14053e643866307b323b5f01
+%define rev eeb9f7e30311a11bb9ea2d37ee701db086dc4fd9
 
-%bcond_with git
+%bcond_without git
 
 %if 0%{?suse_version} > 1500
 %bcond_without manpage
@@ -29,21 +29,22 @@
 %define gname Clementine
 
 Name:           clementine
-Version:        1.3.9
+Version:        1.3.92
 Release:        0
 Summary:        A music player inspired by Amarok 1.4
 License:        GPL-3.0-or-later
 Group:          Productivity/Multimedia/Sound/Players
-Url:            https://clementine-player.org/
+URL:            https://clementine-player.org/
 %if %{without git}
-Source:         
https://github.com/clementine-player/%{gname}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+#Source:         
https://github.com/clementine-player/%%{gname}/archive/%%{version}.tar.gz#/%%{name}-%%{version}.tar.gz
 %else
-#Source0:        
https://github.com/clementine-player/Clementine/archive/%%{rev}.tar.gz#/%%{name}-%%{version}.tar.gz
+Source0:        
https://github.com/clementine-player/Clementine/archive/%{rev}.tar.gz#/%{name}-%{version}.tar.gz
 %endif
 # PATCH-FEATURE-UPSTREAM uudisks2-support-for-devicemanager.patch
 Patch1:         clementine-udisks-headers.patch
 # Patch fix factory build, add -fPIC to moodbar build
 Patch2:         clementine-moodbar-fpic.patch
+Patch3:         0001-Adds-missing-QPainterPath-include.patch
 # PATCH-FIX-OPENSUSE clementine-hidden-systray-icon.patch 
[email protected] -- sys tray icon is hidden on some plasma5 systems.
 Patch4:         clementine-hidden-systray-icon.patch
 # PATCH-FEATURE-OPENSUSE

++++++ 0001-Adds-missing-QPainterPath-include.patch ++++++
>From ed0078b8d4a8e04b208a46dc509e53004145ee90 Mon Sep 17 00:00:00 2001
From: SDNick484 <[email protected]>
Date: Wed, 27 May 2020 22:53:09 -0700
Subject: [PATCH] Adds missing QPainterPath include

---
 src/widgets/freespacebar.cpp | 1 +
 src/widgets/osdpretty.cpp    | 1 +
 src/widgets/sliderwidget.cpp | 1 +
 3 files changed, 3 insertions(+)

Index: Clementine-1.3.92/src/widgets/freespacebar.cpp
===================================================================
--- Clementine-1.3.92.orig/src/widgets/freespacebar.cpp 2020-06-02 
11:30:29.807801597 +0200
+++ Clementine-1.3.92/src/widgets/freespacebar.cpp      2020-06-02 
11:31:16.401642670 +0200
@@ -20,6 +20,7 @@
 
 #include <QLinearGradient>
 #include <QPainter>
+#include <QPainterPath>
 
 const int FreeSpaceBar::kBarHeight = 20;
 const int FreeSpaceBar::kBarBorderRadius = 8;
Index: Clementine-1.3.92/src/widgets/sliderwidget.cpp
===================================================================
--- Clementine-1.3.92.orig/src/widgets/sliderwidget.cpp 2020-06-02 
11:30:29.807801597 +0200
+++ Clementine-1.3.92/src/widgets/sliderwidget.cpp      2020-06-02 
11:31:16.401642670 +0200
@@ -24,6 +24,7 @@
 #include <QBrush>
 #include <QImage>
 #include <QPainter>
+#include <QPainterPath>
 #include <QSize>
 #include <QTimer>
 #include <QStyle>
Index: Clementine-1.3.92/src/widgets/osdpretty.cpp
===================================================================
--- Clementine-1.3.92.orig/src/widgets/osdpretty.cpp    2020-06-02 
11:31:16.401642670 +0200
+++ Clementine-1.3.92/src/widgets/osdpretty.cpp 2020-06-02 11:33:01.449793354 
+0200
@@ -26,6 +26,7 @@
 #include <QLayout>
 #include <QMouseEvent>
 #include <QPainter>
+#include <QPainterPath>
 #include <QSettings>
 #include <QTimer>
 #include <QTimeLine>
++++++ clementine-1.3.9.tar.gz -> clementine-1.3.92.tar.gz ++++++
/work/SRC/openSUSE:Factory/clementine/clementine-1.3.9.tar.gz 
/work/SRC/openSUSE:Factory/.clementine.new.3606/clementine-1.3.92.tar.gz 
differ: char 17, line 1

++++++ clementine-udisks-headers.patch ++++++
--- /var/tmp/diff_new_pack.jtNgvw/_old  2020-06-02 14:44:19.232598960 +0200
+++ /var/tmp/diff_new_pack.jtNgvw/_new  2020-06-02 14:44:19.232598960 +0200
@@ -1,8 +1,8 @@
-Index: Clementine-75f18dab23f0842713a4200a7e362efd51b12e31/src/CMakeLists.txt
+Index: Clementine-1.3.92/src/CMakeLists.txt
 ===================================================================
---- 
Clementine-75f18dab23f0842713a4200a7e362efd51b12e31.orig/src/CMakeLists.txt     
   2019-07-24 12:51:48.000000000 +0200
-+++ Clementine-75f18dab23f0842713a4200a7e362efd51b12e31/src/CMakeLists.txt     
2019-07-26 11:40:19.715274647 +0200
-@@ -965,6 +965,8 @@ if(UNIX AND HAVE_DBUS)
+--- Clementine-1.3.92.orig/src/CMakeLists.txt  2019-12-30 22:30:22.000000000 
+0200
++++ Clementine-1.3.92/src/CMakeLists.txt       2020-06-02 11:29:58.834577729 
+0200
+@@ -976,6 +976,8 @@ if(UNIX AND HAVE_DBUS)
    list(APPEND HEADERS ${CMAKE_CURRENT_BINARY_DIR}/dbus/avahientrygroup.h)
    list(APPEND SOURCES ${CMAKE_CURRENT_BINARY_DIR}/dbus/avahientrygroup.cpp)
  


Reply via email to