commit libqt5-qtstyleplugins for openSUSE:Factory

2020-06-09 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2020-06-10 00:50:31

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new.3606 (New)


Package is "libqt5-qtstyleplugins"

Wed Jun 10 00:50:31 2020 rev:12 rq:812858 version:5.0.0+git20170311

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2020-03-05 23:25:52.837429648 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new.3606/libqt5-qtstyleplugins.changes
2020-06-10 00:50:32.991279899 +0200
@@ -1,0 +2,7 @@
+Tue Jun  9 07:58:08 UTC 2020 - Fabian Vogt 
+
+- Amend patch to fix issues with platform themes providing an
+  incompatible palette (boo#1172658):
+  * fix-build-qt5.15.patch
+
+---



Other differences:
--
++ fix-build-qt5.15.patch ++
--- /var/tmp/diff_new_pack.vcatSu/_old  2020-06-10 00:50:33.527281302 +0200
+++ /var/tmp/diff_new_pack.vcatSu/_new  2020-06-10 00:50:33.527281302 +0200
@@ -3,18 +3,30 @@
 
 With 0a93db4d82c051164923a10e4382b12de9049b45
 ("Unify application palette handling between QGuiApplication and QApplication")
-QApplicationPrivate::setSystemPalette is no longer used and necessary.
+QApplicationPrivate::setSystemPalette does no longer exist.
+
+This style does explictly not support "system colors" defined by the platform
+theme, which have priority over the style provided palette. To prevent the
+theme from overriding the colors, it previously used the system palette
+mechanism (which has priority over the theme), but that way does not work
+anymore. Instead, simply use QApplication::setPalette. While that has
+different behaviour and might break in some applications, it's better than
+having a completely messed up palette with certain themes.
+This is the same change as suggested by gamezelda on
+https://aur.archlinux.org/packages/qt5-styleplugins/#comment-749190.
 
 Index: 
qtstyleplugins-opensource-src-5.0.0+git20170311/src/plugins/styles/gtk2/qgtkstyle.cpp
 ===
 --- 
qtstyleplugins-opensource-src-5.0.0+git20170311.orig/src/plugins/styles/gtk2/qgtkstyle.cpp
 +++ 
qtstyleplugins-opensource-src-5.0.0+git20170311/src/plugins/styles/gtk2/qgtkstyle.cpp
-@@ -440,7 +440,9 @@ void QGtkStyle::polish(QApplication *app
+@@ -440,7 +440,11 @@ void QGtkStyle::polish(QApplication *app
  // not supported as these should be entirely determined by
  // current Gtk settings
  if (app->desktopSettingsAware() && d->isThemeAvailable()) {
 +#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
  QApplicationPrivate::setSystemPalette(standardPalette());
++#else
++QApplication::setPalette(standardPalette());
 +#endif
  QApplicationPrivate::setSystemFont(d->getThemeFont());
  d->applyCustomPaletteHash();




commit libqt5-qtstyleplugins for openSUSE:Factory

2020-03-05 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2020-03-05 23:25:37

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new.26092 (New)


Package is "libqt5-qtstyleplugins"

Thu Mar  5 23:25:37 2020 rev:11 rq:781891 version:5.0.0+git20170311

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2018-07-12 09:21:45.994636862 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new.26092/libqt5-qtstyleplugins.changes
   2020-03-05 23:25:52.837429648 +0100
@@ -1,0 +2,6 @@
+Thu Mar  5 14:51:02 UTC 2020 - Fabian Vogt 
+
+- Add patch to fix build against Qt 5.15:
+  * fix-build-qt5.15.patch
+
+---

New:

  fix-build-qt5.15.patch



Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.5DifIY/_old  2020-03-05 23:25:55.317431012 +0100
+++ /var/tmp/diff_new_pack.5DifIY/_new  2020-03-05 23:25:55.349431029 +0100
@@ -28,6 +28,8 @@
 Group:  Development/Libraries/X11
 Url:https://qt.io/
 Source: %{_name}-opensource-src-%{version}.tar.xz
+# PATCH-FIX-OPENSUSE (for now)
+Patch1: fix-build-qt5.15.patch
 BuildRequires:  fdupes
 BuildRequires:  libQt5Core-private-headers-devel >= %{qt_version}
 BuildRequires:  libQt5Gui-private-headers-devel >= %{qt_version}
@@ -70,7 +72,7 @@
 You need this package, if you want to compile programs with qtstyleplugins.
 
 %prep
-%setup -q -n %{_name}-opensource-src-%{version}
+%autosetup -p1 -n %{_name}-opensource-src-%{version}
 
 %build
 %qmake5

++ fix-build-qt5.15.patch ++
From: Fabian Vogt 
Subject: Fix build against Qt 5.15

With 0a93db4d82c051164923a10e4382b12de9049b45
("Unify application palette handling between QGuiApplication and QApplication")
QApplicationPrivate::setSystemPalette is no longer used and necessary.

Index: 
qtstyleplugins-opensource-src-5.0.0+git20170311/src/plugins/styles/gtk2/qgtkstyle.cpp
===
--- 
qtstyleplugins-opensource-src-5.0.0+git20170311.orig/src/plugins/styles/gtk2/qgtkstyle.cpp
+++ 
qtstyleplugins-opensource-src-5.0.0+git20170311/src/plugins/styles/gtk2/qgtkstyle.cpp
@@ -440,7 +440,9 @@ void QGtkStyle::polish(QApplication *app
 // not supported as these should be entirely determined by
 // current Gtk settings
 if (app->desktopSettingsAware() && d->isThemeAvailable()) {
+#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
 QApplicationPrivate::setSystemPalette(standardPalette());
+#endif
 QApplicationPrivate::setSystemFont(d->getThemeFont());
 d->applyCustomPaletteHash();
 if (!d->isKDE4Session())
Index: 
qtstyleplugins-opensource-src-5.0.0+git20170311/src/plugins/styles/gtk2/qgtkstyle_p.cpp
===
--- 
qtstyleplugins-opensource-src-5.0.0+git20170311.orig/src/plugins/styles/gtk2/qgtkstyle_p.cpp
+++ 
qtstyleplugins-opensource-src-5.0.0+git20170311/src/plugins/styles/gtk2/qgtkstyle_p.cpp
@@ -508,7 +508,9 @@ void QGtkStyleUpdateScheduler::updateThe
   if (oldTheme != QGtkStylePrivate::getThemeName()) {
   oldTheme = QGtkStylePrivate::getThemeName();
   QPalette newPalette = qApp->style()->standardPalette();
+#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
   QApplicationPrivate::setSystemPalette(newPalette);
+#endif
   QApplication::setPalette(newPalette);
   if (!QGtkStylePrivate::instances.isEmpty()) {
   QGtkStylePrivate::instances.last()->initGtkWidgets();



commit libqt5-qtstyleplugins for openSUSE:Factory

2018-07-12 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2018-07-12 09:20:03

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new (New)


Package is "libqt5-qtstyleplugins"

Thu Jul 12 09:20:03 2018 rev:10 rq:622049 version:5.0.0+git20170311

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2018-03-02 21:11:18.725795335 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new/libqt5-qtstyleplugins.changes
 2018-07-12 09:21:45.994636862 +0200
@@ -1,0 +2,5 @@
+Tue Mar 13 13:40:49 UTC 2018 - christo...@krop.fr
+
+- Fix the license tag.
+
+---



Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.Tnl9Kf/_old  2018-07-12 09:21:46.606637719 +0200
+++ /var/tmp/diff_new_pack.Tnl9Kf/_new  2018-07-12 09:21:46.610637724 +0200
@@ -24,7 +24,7 @@
 Version:5.0.0+git20170311
 Release:0
 Summary:Qt 5 Style Plugins
-License:LGPL-2.1-with-Qt-Company-Qt-exception-1.1 or 
LGPL-3.0-with-Qt-Company-Qt-exception-1.1
+License:LGPL-2.1-with-Qt-Company-Qt-exception-1.1 or LGPL-3.0-only
 Group:  Development/Libraries/X11
 Url:https://qt.io/
 Source: %{_name}-opensource-src-%{version}.tar.xz




commit libqt5-qtstyleplugins for openSUSE:Factory

2018-03-02 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2018-03-02 21:11:13

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new (New)


Package is "libqt5-qtstyleplugins"

Fri Mar  2 21:11:13 2018 rev:9 rq:581687 version:5.0.0+git20170311

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2017-12-23 12:14:04.947392812 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new/libqt5-qtstyleplugins.changes
 2018-03-02 21:11:18.725795335 +0100
@@ -7,33 +6,0 @@
-Mon Dec 11 09:14:46 UTC 2017 - christo...@krop.fr
-
-- Update requirements for Qt 5.10
-

-Wed Nov 15 11:41:53 UTC 2017 - fab...@ritter-vogt.de
-
-- Update to 5.10 Beta 4
-- Contains bugfixes
-

-Sun Oct  8 14:09:58 UTC 2017 - lbeltr...@kde.org
-
-- Update to 5.9.2
-  * For more details please see:
-https://blog.qt.io/blog/2017/10/06/qt-5-9-2-released/
-

-Sat Jul  1 08:15:28 UTC 2017 - lbeltr...@kde.org
-
-- Update to 5.9.1
-  * For more details please see:
-http://blog.qt.io/blog/2017/06/30/qt-5-9-1-released/
-

-Wed May 31 07:05:24 UTC 2017 - fab...@ritter-vogt.de
-
-- Update Qt to 5.9.0:
-  * For more details please see: 
-http://lists.qt-project.org/pipermail/announce/2017-May/000119.html
-and https://wiki.qt.io/New_Features_in_Qt_5.9
-




Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.EqgN51/_old  2018-03-02 21:11:19.533766280 +0100
+++ /var/tmp/diff_new_pack.EqgN51/_new  2018-03-02 21:11:19.541765992 +0100
@@ -18,7 +18,7 @@
 
 %define _name   qtstyleplugins
 %define base_name libqt5
-%define qt_version 5.10.0
+%define qt_version 5.0.0
 %bcond_without gtk2
 Name:   libqt5-qtstyleplugins
 Version:5.0.0+git20170311




commit libqt5-qtstyleplugins for openSUSE:Factory

2017-12-23 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2017-12-23 12:14:02

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new (New)


Package is "libqt5-qtstyleplugins"

Sat Dec 23 12:14:02 2017 rev:8 rq:557402 version:5.0.0+git20170311

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2017-10-24 22:22:38.558476125 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new/libqt5-qtstyleplugins.changes
 2017-12-23 12:14:04.947392812 +0100
@@ -1,0 +2,16 @@
+Mon Dec 11 09:18:06 UTC 2017 - christo...@krop.fr
+
+- Update the license tag (boo#967696)
+
+---
+Mon Dec 11 09:14:46 UTC 2017 - christo...@krop.fr
+
+- Update requirements for Qt 5.10
+
+---
+Wed Nov 15 11:41:53 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 5.10 Beta 4
+- Contains bugfixes
+
+---



Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.85ebwp/_old  2017-12-23 12:14:05.547363557 +0100
+++ /var/tmp/diff_new_pack.85ebwp/_new  2017-12-23 12:14:05.547363557 +0100
@@ -18,13 +18,13 @@
 
 %define _name   qtstyleplugins
 %define base_name libqt5
-%define qt_version 5.9.2
+%define qt_version 5.10.0
 %bcond_without gtk2
 Name:   libqt5-qtstyleplugins
 Version:5.0.0+git20170311
 Release:0
 Summary:Qt 5 Style Plugins
-License:SUSE-LGPL-2.1-with-digia-exception-1.1
+License:LGPL-2.1-with-Qt-Company-Qt-exception-1.1 or 
LGPL-3.0-with-Qt-Company-Qt-exception-1.1
 Group:  Development/Libraries/X11
 Url:https://qt.io/
 Source: %{_name}-opensource-src-%{version}.tar.xz




commit libqt5-qtstyleplugins for openSUSE:Factory

2017-10-24 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2017-10-24 22:22:10

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new (New)


Package is "libqt5-qtstyleplugins"

Tue Oct 24 22:22:10 2017 rev:7 rq:533921 version:5.0.0+git20170311

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2017-07-09 13:04:11.731127818 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new/libqt5-qtstyleplugins.changes
 2017-10-24 22:22:38.558476125 +0200
@@ -1,0 +2,7 @@
+Sun Oct  8 14:09:58 UTC 2017 - lbeltr...@kde.org
+
+- Update to 5.9.2
+  * For more details please see:
+https://blog.qt.io/blog/2017/10/06/qt-5-9-2-released/
+
+---



Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.SYAGCk/_old  2017-10-24 22:22:39.130449388 +0200
+++ /var/tmp/diff_new_pack.SYAGCk/_new  2017-10-24 22:22:39.130449388 +0200
@@ -18,7 +18,7 @@
 
 %define _name   qtstyleplugins
 %define base_name libqt5
-%define qt_version 5.9.1
+%define qt_version 5.9.2
 %bcond_without gtk2
 Name:   libqt5-qtstyleplugins
 Version:5.0.0+git20170311




commit libqt5-qtstyleplugins for openSUSE:Factory

2017-07-09 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2017-07-09 13:04:10

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new (New)


Package is "libqt5-qtstyleplugins"

Sun Jul  9 13:04:10 2017 rev:6 rq:507705 version:5.0.0+git20170311

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2017-04-29 10:54:22.253052225 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new/libqt5-qtstyleplugins.changes
 2017-07-09 13:04:11.731127818 +0200
@@ -1,0 +2,15 @@
+Sat Jul  1 08:15:28 UTC 2017 - lbeltr...@kde.org
+
+- Update to 5.9.1
+  * For more details please see:
+http://blog.qt.io/blog/2017/06/30/qt-5-9-1-released/
+
+---
+Wed May 31 07:05:24 UTC 2017 - fab...@ritter-vogt.de
+
+- Update Qt to 5.9.0:
+  * For more details please see: 
+http://lists.qt-project.org/pipermail/announce/2017-May/000119.html
+and https://wiki.qt.io/New_Features_in_Qt_5.9
+
+---



Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.cJPchv/_old  2017-07-09 13:04:12.271051647 +0200
+++ /var/tmp/diff_new_pack.cJPchv/_new  2017-07-09 13:04:12.271051647 +0200
@@ -18,7 +18,7 @@
 
 %define _name   qtstyleplugins
 %define base_name libqt5
-%define qt_version 5.7.1
+%define qt_version 5.9.1
 %bcond_without gtk2
 Name:   libqt5-qtstyleplugins
 Version:5.0.0+git20170311




commit libqt5-qtstyleplugins for openSUSE:Factory

2017-04-29 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2017-04-29 10:54:03

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new (New)


Package is "libqt5-qtstyleplugins"

Sat Apr 29 10:54:03 2017 rev:5 rq:491866 version:5.0.0+git20170311

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2017-01-25 23:33:06.282418919 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new/libqt5-qtstyleplugins.changes
 2017-04-29 10:54:22.253052225 +0200
@@ -1,0 +2,8 @@
+Thu Apr 27 12:46:51 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 5.0.0+git20170311 (changes since
+  5.0.0+git20170119):
+  * Plastique, Motif/CDE: Fix QSpinBox height in layout.
+  * Fix Plastique, Cleanlooks and Motif animation timer.
+
+---

Old:

  qtstyleplugins-opensource-src-5.0.0+git20170119.tar.xz

New:

  qtstyleplugins-opensource-src-5.0.0+git20170311.tar.xz



Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.3aHNmZ/_old  2017-04-29 10:54:22.924957306 +0200
+++ /var/tmp/diff_new_pack.3aHNmZ/_new  2017-04-29 10:54:22.928956741 +0200
@@ -21,7 +21,7 @@
 %define qt_version 5.7.1
 %bcond_without gtk2
 Name:   libqt5-qtstyleplugins
-Version:5.0.0+git20170119
+Version:5.0.0+git20170311
 Release:0
 Summary:Qt 5 Style Plugins
 License:SUSE-LGPL-2.1-with-digia-exception-1.1

++ qtstyleplugins-opensource-src-5.0.0+git20170119.tar.xz -> 
qtstyleplugins-opensource-src-5.0.0+git20170311.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtstyleplugins-opensource-src-5.0.0+git20170119/src/plugins/styles/cleanlooks/qcleanlooksstyle.cpp
 
new/qtstyleplugins-opensource-src-5.0.0+git20170311/src/plugins/styles/cleanlooks/qcleanlooksstyle.cpp
--- 
old/qtstyleplugins-opensource-src-5.0.0+git20170119/src/plugins/styles/cleanlooks/qcleanlooksstyle.cpp
  2017-01-24 09:50:40.775718643 +0100
+++ 
new/qtstyleplugins-opensource-src-5.0.0+git20170311/src/plugins/styles/cleanlooks/qcleanlooksstyle.cpp
  2017-04-28 16:07:43.265004501 +0200
@@ -609,7 +609,6 @@
 QCleanlooksStyle::QCleanlooksStyle() : 
QProxyStyle(QStyleFactory::create(QLatin1String("Windows"))), animateStep(0), 
animateTimer(0)
 {
 setObjectName(QLatin1String("CleanLooks"));
-startTime.start();
 }
 
 /*!
@@ -3945,17 +3944,26 @@
 /*!
   \reimp
 */
-void QCleanlooksStyle::timerEvent(QTimerEvent *event)
+bool QCleanlooksStyle::event(QEvent *event)
 {
+switch (event->type()) {
+case QEvent::Timer: {
 #ifndef QT_NO_PROGRESSBAR
-if (event->timerId() == animateTimer) {
-Q_ASSERT(progressAnimationFps> 0);
-animateStep = startTime.elapsed() / (1000 / progressAnimationFps);
-foreach (QProgressBar *bar, animatedProgressBars)
-bar->update();
-}
+QTimerEvent *timerEvent = reinterpret_cast(event);
+if (timerEvent->timerId() == animateTimer) {
+Q_ASSERT(progressAnimationFps > 0);
+animateStep = startTime.elapsed() / (1000 / progressAnimationFps);
+foreach (QProgressBar *bar, animatedProgressBars)
+bar->update();
+}
 #endif // QT_NO_PROGRESSBAR
-event->ignore();
+event->ignore();
+}
+default:
+break;
+}
+
+return QProxyStyle::event(event);
 }
 
 /*!
@@ -3998,6 +4006,8 @@
 animatedProgressBars << bar;
 if (!animateTimer) {
 Q_ASSERT(progressAnimationFps > 0);
+animateStep = 0;
+startTime.start();
 animateTimer = o->startTimer(1000 / progressAnimationFps);
 }
 }
@@ -4005,10 +4015,12 @@
 
 void QCleanlooksStyle::stopProgressAnimation(QObject *o, QProgressBar *bar)
 {
-animatedProgressBars.removeAll(bar);
-if (animatedProgressBars.isEmpty() && animateTimer) {
-o->killTimer(animateTimer);
-animateTimer = 0;
+if (!animatedProgressBars.isEmpty()) {
+animatedProgressBars.removeOne(bar);
+if (animatedProgressBars.isEmpty() && animateTimer) {
+o->killTimer(animateTimer);
+animateTimer = 0;
+}
 }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtstyleplugins-opensource-src-5.0.0+git20170119/src/plugins/styles/cleanlooks/qcleanlooksstyle.h
 
new/qtstyleplugins-opensource-src-5.0.0+git20170311/src/plugins/styles/cleanlooks/qcleanlooksstyle.h
--- 
old/qtstyleplugins-opensource-src-5.0.0+git20170119/s

commit libqt5-qtstyleplugins for openSUSE:Factory

2017-01-25 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2017-01-25 23:33:05

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new (New)


Package is "libqt5-qtstyleplugins"

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2017-01-22 00:31:17.572863007 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new/libqt5-qtstyleplugins.changes
 2017-01-25 23:33:06.282418919 +0100
@@ -1,0 +2,11 @@
+Tue Jan 24 06:34:38 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 5.0.0+git20170119 (changes since
+  5.0.0+git20161215):
+  * Use Use QCommonStyle instead of QProxyStyle in QCleanlooksStyle
+and QPlastiqueStyle: this allows to use correct colour
+(non-white) for label text in a QComboBox. Also improves
+progress bar drawing - now looks like in Qt4, the progress bar
+content fills the entire groove vertically.
+
+---

Old:

  qtstyleplugins-opensource-src-5.0.0+git20161215.tar.xz

New:

  qtstyleplugins-opensource-src-5.0.0+git20170119.tar.xz



Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.BGjmA5/_old  2017-01-25 23:33:06.722352623 +0100
+++ /var/tmp/diff_new_pack.BGjmA5/_new  2017-01-25 23:33:06.726352020 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-qtstyleplugins
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
 %define qt_version 5.7.1
 %bcond_without gtk2
 Name:   libqt5-qtstyleplugins
-Version:5.0.0+git20161215
+Version:5.0.0+git20170119
 Release:0
 Summary:Qt 5 Style Plugins
 License:SUSE-LGPL-2.1-with-digia-exception-1.1

++ qtstyleplugins-opensource-src-5.0.0+git20161215.tar.xz -> 
qtstyleplugins-opensource-src-5.0.0+git20170119.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/cleanlooks/qcleanlooksstyle.cpp
 
new/qtstyleplugins-opensource-src-5.0.0+git20170119/src/plugins/styles/cleanlooks/qcleanlooksstyle.cpp
--- 
old/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/cleanlooks/qcleanlooksstyle.cpp
  2016-12-15 20:26:53.254502515 +0100
+++ 
new/qtstyleplugins-opensource-src-5.0.0+git20170119/src/plugins/styles/cleanlooks/qcleanlooksstyle.cpp
  2017-01-24 09:50:40.775718643 +0100
@@ -2325,7 +2325,7 @@
 
 #endif // QT_NO_TABBAR
 default:
-QProxyStyle::drawControl(element,option,painter,widget);
+QCommonStyle::drawControl(element,option,painter,widget);
 break;
 }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/plastique/qplastiquestyle.cpp
 
new/qtstyleplugins-opensource-src-5.0.0+git20170119/src/plugins/styles/plastique/qplastiquestyle.cpp
--- 
old/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/plastique/qplastiquestyle.cpp
2016-12-15 20:26:53.258502766 +0100
+++ 
new/qtstyleplugins-opensource-src-5.0.0+git20170119/src/plugins/styles/plastique/qplastiquestyle.cpp
2017-01-24 09:50:40.855718115 +0100
@@ -3634,7 +3634,7 @@
 break;
 #endif
 default:
-QProxyStyle::drawControl(element, option, painter, widget);
+QCommonStyle::drawControl(element, option, painter, widget);
 break;
 }
 }




commit libqt5-qtstyleplugins for openSUSE:Factory

2017-01-21 Thread root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2017-01-22 00:31:16

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new (New)


Package is "libqt5-qtstyleplugins"

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2016-10-24 14:44:58.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new/libqt5-qtstyleplugins.changes
 2017-01-22 00:31:17.572863007 +0100
@@ -1,0 +2,31 @@
+Thu Dec 15 19:14:07 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 5.0.0+git20161215 (changes since
+  5.0.0+git20161024):
+  * Remove obsolete and unused QBB10StylePlugin::keys().
+  * Remove unused sync.profile.
+  * Fix building with Qt 5.8+.
+- Remove 58.diff: fixed upstream.
+
+---
+Wed Dec 14 16:05:54 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Bump to 5.7.1
+  * For more details please see:
+https://blog.qt.io/blog/2016/12/14/qt-5-7-1-released/
+and https://www.qt.io/qt5-7/
+
+---
+Mon Nov 28 19:29:30 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 5.0.0+git20161024:
+  * Set plugin class name for styles.
+- Remove libqt5-qtstyleplugins-class-names.patch: fixed upstream.
+
+---
+Mon Nov 28 17:31:44 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Add 58.diff: private Qt platformsupport module got splited into
+  many pieces in 5.8. Use the appropriate module with Qt >= 5.8
+
+---

Old:

  libqt5-qtstyleplugins-class-names.patch
  qtstyleplugins-opensource-src-5.0.0+git20161022.tar.xz

New:

  qtstyleplugins-opensource-src-5.0.0+git20161215.tar.xz



Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.fis1o9/_old  2017-01-22 00:31:18.332755461 +0100
+++ /var/tmp/diff_new_pack.fis1o9/_new  2017-01-22 00:31:18.336754895 +0100
@@ -18,18 +18,16 @@
 
 %define _name   qtstyleplugins
 %define base_name libqt5
-%define qt_version 5.7.0
+%define qt_version 5.7.1
 %bcond_without gtk2
 Name:   libqt5-qtstyleplugins
-Version:5.0.0+git20161022
+Version:5.0.0+git20161215
 Release:0
 Summary:Qt 5 Style Plugins
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Libraries/X11
 Url:https://qt.io/
 Source: %{_name}-opensource-src-%{version}.tar.xz
-# PATCH-FIX-OPENSUSE libqt5-qtstyleplugins-class-names.patch 
sor.ale...@meowr.ru -- Set plugin class name for styles.
-Patch0: libqt5-qtstyleplugins-class-names.patch
 BuildRequires:  fdupes
 BuildRequires:  libQt5Core-private-headers-devel >= %{qt_version}
 BuildRequires:  libQt5Gui-private-headers-devel >= %{qt_version}
@@ -73,7 +71,6 @@
 
 %prep
 %setup -q -n %{_name}-opensource-src-%{version}
-%patch0 -p1
 
 %build
 %qmake5

++ qtstyleplugins-opensource-src-5.0.0+git20161022.tar.xz -> 
qtstyleplugins-opensource-src-5.0.0+git20161215.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/platformthemes/gtk2/gtk2.pro
 
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/platformthemes/gtk2/gtk2.pro
--- 
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/platformthemes/gtk2/gtk2.pro
2016-10-24 14:15:11.883168451 +0200
+++ 
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/platformthemes/gtk2/gtk2.pro
2016-12-15 20:26:53.246502013 +0100
@@ -1,6 +1,10 @@
 TARGET = qgtk2
 
-QT += core-private gui-private platformsupport-private
+QT += core-private gui-private
+greaterThan(QT_MAJOR_VERSION, 5)|greaterThan(QT_MINOR_VERSION, 7): \
+QT += theme_support-private
+else: \
+QT += platformsupport-private
 
 CONFIG += X11
 CONFIG += link_pkgconfig
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/bb10style.pro
 
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/bb10style/bb10style.pro
--- 
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/bb10style.pro
  2016-10-24 14:15:11.883168451 +0200
+++ 
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/bb10style/bb10style.pro
  2016-12-15 20:26:53.246502013 +0100
@@ -1,7 +1,7 @@
 TARGET = bb10styleplugin
 
 PLUGIN_TYPE = styles
-PLUGIN_CLASS_NAME 

commit libqt5-qtstyleplugins for openSUSE:Factory

2016-10-24 Thread h_root
Hello community,

here is the log from the commit of package libqt5-qtstyleplugins for 
openSUSE:Factory checked in at 2016-10-24 14:44:52

Comparing /work/SRC/openSUSE:Factory/libqt5-qtstyleplugins (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new (New)


Package is "libqt5-qtstyleplugins"

Changes:

--- 
/work/SRC/openSUSE:Factory/libqt5-qtstyleplugins/libqt5-qtstyleplugins.changes  
2016-10-19 13:05:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtstyleplugins.new/libqt5-qtstyleplugins.changes
 2016-10-24 14:44:58.0 +0200
@@ -1,0 +2,16 @@
+Mon Oct 24 11:18:06 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 5.0.0+git20161022 (changes since
+  5.0.0+git20161005):
+  * Remove usage of deprecated QStyleOption*V.
+  * Add Q_DECL_OVERRIDE.
+  * Build the BB10 style only with Qt 5.7 or later.
+- Remove the conflict with libqt5-qtbase-platformtheme-gtk3 in
+  libqt5-qtstyleplugins-platformtheme-gtk2: it causes the gtk2
+  platform theme to practically never get installed.
+  The reason for the conflict in the first place is overrated
+  anyway: in order to get a segfault, a user would have to manually
+  make an envvar "QT_STYLE_OVERRIDE=gtk2" with also having Gtk3
+  Platform Theme triggered ("QT_QPA_PLATFORMTHEME=gtk3").
+
+---

Old:

  qtstyleplugins-opensource-src-5.0.0+git20161005.tar.xz

New:

  qtstyleplugins-opensource-src-5.0.0+git20161022.tar.xz



Other differences:
--
++ libqt5-qtstyleplugins.spec ++
--- /var/tmp/diff_new_pack.Z7Axcm/_old  2016-10-24 14:44:59.0 +0200
+++ /var/tmp/diff_new_pack.Z7Axcm/_new  2016-10-24 14:44:59.0 +0200
@@ -21,7 +21,7 @@
 %define qt_version 5.7.0
 %bcond_without gtk2
 Name:   libqt5-qtstyleplugins
-Version:5.0.0+git20161005
+Version:5.0.0+git20161022
 Release:0
 Summary:Qt 5 Style Plugins
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
@@ -55,10 +55,6 @@
 Group:  Development/Libraries/C and C++
 %requires_eqlibQt5Gui5
 Supplements:packageand(libQt5Gui5:libgtk-2_0-0)
-# Mixing QGtk2Style with the Gtk3 Platform Theme causes a segfault,
-# this should absolutely never happen, thus avoiding installation of both at
-# the same time.
-Conflicts:  libqt5-qtbase-platformtheme-gtk3
 
 %description platformtheme-gtk2
 Qt 5 plugin for better integration with gtk-based desktop enviroments.

++ qtstyleplugins-opensource-src-5.0.0+git20161005.tar.xz -> 
qtstyleplugins-opensource-src-5.0.0+git20161022.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtstyleplugins-opensource-src-5.0.0+git20161005/src/plugins/styles/bb10style/qbb10brightstyle.h
 
new/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/qbb10brightstyle.h
--- 
old/qtstyleplugins-opensource-src-5.0.0+git20161005/src/plugins/styles/bb10style/qbb10brightstyle.h
 2016-10-09 16:57:38.0 +0200
+++ 
new/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/qbb10brightstyle.h
 2016-10-24 14:15:11.0 +0200
@@ -46,15 +46,15 @@
 QBB10BrightStyle();
 ~QBB10BrightStyle();
 
-void polish(QApplication *application);
-void polish(QWidget *widget);
+void polish(QApplication *application) Q_DECL_OVERRIDE;
+void polish(QWidget *widget) Q_DECL_OVERRIDE;
 
-QPalette standardPalette() const;
+QPalette standardPalette() const Q_DECL_OVERRIDE;
 
 void drawControl(ControlElement element, const QStyleOption *option,
-QPainter *painter, const QWidget *widget = 0) const;
+QPainter *painter, const QWidget *widget = 0) const 
Q_DECL_OVERRIDE;
 void drawPrimitive(PrimitiveElement element, const QStyleOption *option,
-   QPainter *painter, const QWidget *widget) const;
+   QPainter *painter, const QWidget *widget) const 
Q_DECL_OVERRIDE;
 };
 
 QT_END_NAMESPACE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtstyleplugins-opensource-src-5.0.0+git20161005/src/plugins/styles/bb10style/qbb10darkstyle.h
 
new/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/qbb10darkstyle.h
--- 
old/qtstyleplugins-opensource-src-5.0.0+git20161005/src/plugins/styles/bb10style/qbb10darkstyle.h
   2016-10-09 16:57:38.0 +0200
+++ 
new/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/qbb10darkstyle.h
   2016-10-24 14:15:11.0 +0200
@@ -46,15 +46,15 @@
 QBB10DarkStyle();
 ~QBB10DarkStyle();
 
-void polish(QApplication *application);
-void polish(QWidget *widget);
+void p