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.000000000 +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 - [email protected]
+
+- 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 - [email protected]
+
+- 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 - [email protected]
+
+- 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 - [email protected]
+
+- 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
[email protected] -- 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 = BlackBerry10StylePlugin
+PLUGIN_CLASS_NAME = QBB10StylePlugin
load(qt_plugin)
INCLUDEPATH += $$PWD
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/qbb10styleplugin.cpp
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/bb10style/qbb10styleplugin.cpp
---
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/qbb10styleplugin.cpp
2016-10-24 14:15:11.887168468 +0200
+++
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/bb10style/qbb10styleplugin.cpp
2016-12-15 20:26:53.250502264 +0100
@@ -56,11 +56,6 @@
return 0;
}
-QStringList QBB10StylePlugin::keys() const
-{
- return QStringList() << QLatin1String("bb10bright") <<
QLatin1String("bb10dark");
-}
-
QT_END_NAMESPACE
#include "moc_qbb10styleplugin.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/qbb10styleplugin.h
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/bb10style/qbb10styleplugin.h
---
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/bb10style/qbb10styleplugin.h
2016-10-24 14:15:11.887168468 +0200
+++
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/bb10style/qbb10styleplugin.h
2016-12-15 20:26:53.250502264 +0100
@@ -48,7 +48,6 @@
~QBB10StylePlugin();
QStyle *create(const QString &key) Q_DECL_OVERRIDE;
- QStringList keys() const;
};
QT_END_NAMESPACE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/cleanlooks/cleanlooks.pro
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/cleanlooks/cleanlooks.pro
---
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/cleanlooks/cleanlooks.pro
2016-10-24 14:15:11.887168468 +0200
+++
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/cleanlooks/cleanlooks.pro
2016-12-15 20:26:53.250502264 +0100
@@ -1,5 +1,6 @@
TARGET = qcleanlooksstyle
PLUGIN_TYPE = styles
+PLUGIN_CLASS_NAME = QCleanlooksStylePlugin
load(qt_plugin)
QT = core gui widgets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/gtk2/gtk2.pro
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/gtk2/gtk2.pro
---
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/gtk2/gtk2.pro
2016-10-24 14:15:11.887168468 +0200
+++
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/gtk2/gtk2.pro
2016-12-15 20:26:53.254502515 +0100
@@ -1,5 +1,6 @@
TARGET = qgtk2style
PLUGIN_TYPE = styles
+PLUGIN_CLASS_NAME = QGtk2StylePlugin
load(qt_plugin)
QT = core-private gui-private widgets-private
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/motif/motif.pro
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/motif/motif.pro
---
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/motif/motif.pro
2016-10-24 14:15:11.891168485 +0200
+++
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/motif/motif.pro
2016-12-15 20:26:53.258502766 +0100
@@ -1,5 +1,6 @@
TARGET = qmotifstyle
PLUGIN_TYPE = styles
+PLUGIN_CLASS_NAME = QMotifStylePlugin
load(qt_plugin)
QT = core gui widgets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/plastique/plastique.pro
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/plastique/plastique.pro
---
old/qtstyleplugins-opensource-src-5.0.0+git20161022/src/plugins/styles/plastique/plastique.pro
2016-10-24 14:15:11.891168485 +0200
+++
new/qtstyleplugins-opensource-src-5.0.0+git20161215/src/plugins/styles/plastique/plastique.pro
2016-12-15 20:26:53.258502766 +0100
@@ -1,5 +1,6 @@
TARGET = qplastiquestyle
PLUGIN_TYPE = styles
+PLUGIN_CLASS_NAME = QPlastiqueStylePlugin
load(qt_plugin)
QT = core core-private gui gui-private widgets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtstyleplugins-opensource-src-5.0.0+git20161022/sync.profile
new/qtstyleplugins-opensource-src-5.0.0+git20161215/sync.profile
--- old/qtstyleplugins-opensource-src-5.0.0+git20161022/sync.profile
2016-10-24 14:15:11.895168502 +0200
+++ new/qtstyleplugins-opensource-src-5.0.0+git20161215/sync.profile
1970-01-01 01:00:00.000000000 +0100
@@ -1,9 +0,0 @@
-# Module dependencies.
-# Every module that is required to build this module should have one entry.
-# Each of the module version specifiers can take one of the following values:
-# - A specific Git revision.
-# - any git symbolic ref resolvable from the module's repository (e.g.
"refs/heads/master" to track master branch)
-#
-%dependencies = (
- "qtbase" => "refs/heads/stable",
-);