Hello community,

here is the log from the commit of package kiconthemes for openSUSE:Factory 
checked in at 2018-01-09 14:42:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kiconthemes (Old)
 and      /work/SRC/openSUSE:Factory/.kiconthemes.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kiconthemes"

Tue Jan  9 14:42:22 2018 rev:51 rq:559444 version:5.41.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kiconthemes/kiconthemes.changes  2017-11-16 
14:38:27.568229487 +0100
+++ /work/SRC/openSUSE:Factory/.kiconthemes.new/kiconthemes.changes     
2018-01-09 14:42:22.702227695 +0100
@@ -1,0 +2,10 @@
+Sun Dec 17 09:43:48 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.41.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.41.0.php
+- Changes since 5.40.0:
+  * We depend against 5.7
+
+-------------------------------------------------------------------

Old:
----
  kiconthemes-5.40.0.tar.xz

New:
----
  kiconthemes-5.41.0.tar.xz

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

Other differences:
------------------
++++++ kiconthemes.spec ++++++
--- /var/tmp/diff_new_pack.h49vCZ/_old  2018-01-09 14:42:23.266201246 +0100
+++ /var/tmp/diff_new_pack.h49vCZ/_new  2018-01-09 14:42:23.266201246 +0100
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5IconThemes5
-%define _tar_path 5.40
+%define _tar_path 5.41
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:           kiconthemes
-Version:        5.40.0
+Version:        5.41.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0

++++++ kiconthemes-5.40.0.tar.xz -> kiconthemes-5.41.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiconthemes-5.40.0/CMakeLists.txt 
new/kiconthemes-5.41.0/CMakeLists.txt
--- old/kiconthemes-5.40.0/CMakeLists.txt       2017-11-05 09:31:54.000000000 
+0100
+++ new/kiconthemes-5.41.0/CMakeLists.txt       2017-12-02 21:05:21.000000000 
+0100
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.40.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.40.0") # handled by release scripts
+set(KF5_VERSION "5.41.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.41.0") # handled by release scripts
 project(KIconThemes VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.40.0  NO_MODULE)
+find_package(ECM 5.41.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kiconthemes-5.40.0/autotests/kiconengine_unittest.cpp 
new/kiconthemes-5.41.0/autotests/kiconengine_unittest.cpp
--- old/kiconthemes-5.40.0/autotests/kiconengine_unittest.cpp   2017-11-05 
09:31:54.000000000 +0100
+++ new/kiconthemes-5.41.0/autotests/kiconengine_unittest.cpp   2017-12-02 
21:05:21.000000000 +0100
@@ -72,18 +72,12 @@
     void testInvalidIconName()
     {
         QIcon icon(new KIconEngine(QStringLiteral("invalid-icon-name"), 
KIconLoader::global()));
-#if QT_VERSION < QT_VERSION_CHECK(5, 7, 0)
-        QEXPECT_FAIL("", "IsNullHook needs Qt 5.7", Continue);
-#endif
         QVERIFY(icon.isNull());
         QVERIFY2(icon.name().isEmpty(), qPrintable(icon.name()));
     }
 
     void testUnknownIconNotCached() // QIcon version of the test in 
kiconloader_unittest.cpp
     {
-#if QT_VERSION < QT_VERSION_CHECK(5, 7, 0)
-        QSKIP("IsNullHook needs Qt 5.7");
-#endif
         // This is a test to ensure that "unknown" icons are cached as unknown
         // for performance reasons, but after a while they'll be looked up 
again
         // so that newly installed icons can be used without a reboot.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kiconthemes-5.40.0/autotests/kiconloader_benchmark.cpp 
new/kiconthemes-5.41.0/autotests/kiconloader_benchmark.cpp
--- old/kiconthemes-5.40.0/autotests/kiconloader_benchmark.cpp  2017-11-05 
09:31:54.000000000 +0100
+++ new/kiconthemes-5.41.0/autotests/kiconloader_benchmark.cpp  2017-12-02 
21:05:21.000000000 +0100
@@ -102,9 +102,6 @@
 
     void benchmarkNonExistingIcon_notCached()
     {
-#if QT_VERSION < QT_VERSION_CHECK(5, 7, 0)
-        QSKIP("IsNullHook needs Qt 5.7");
-#endif
         QBENCHMARK {
             // Remove icon cache
             const QString cacheFile = 
QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + 
"/icon-cache.kcache";
@@ -121,9 +118,6 @@
 
     void benchmarkNonExistingIcon_cached()
     {
-#if QT_VERSION < QT_VERSION_CHECK(5, 7, 0)
-        QSKIP("IsNullHook needs Qt 5.7");
-#endif
         QBENCHMARK {
             QIcon icon(new KIconEngine(QStringLiteral("invalid-icon-name"), 
KIconLoader::global()));
             QVERIFY(icon.isNull());
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiconthemes-5.40.0/po/zh_CN/kiconthemes5.po 
new/kiconthemes-5.41.0/po/zh_CN/kiconthemes5.po
--- old/kiconthemes-5.40.0/po/zh_CN/kiconthemes5.po     2017-11-05 
09:31:54.000000000 +0100
+++ new/kiconthemes-5.41.0/po/zh_CN/kiconthemes5.po     2017-12-02 
21:05:21.000000000 +0100
@@ -17,7 +17,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:11+0100\n"
-"PO-Revision-Date: 2017-10-19 10:41-0400\n"
+"PO-Revision-Date: 2017-11-09 08:34-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiconthemes-5.40.0/src/kiconengine.cpp 
new/kiconthemes-5.41.0/src/kiconengine.cpp
--- old/kiconthemes-5.40.0/src/kiconengine.cpp  2017-11-05 09:31:54.000000000 
+0100
+++ new/kiconthemes-5.41.0/src/kiconengine.cpp  2017-12-02 21:05:21.000000000 
+0100
@@ -72,11 +72,7 @@
         return;
     }
 
-#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)
     const qreal dpr = painter->device()->devicePixelRatioF();
-#else
-    const qreal dpr = painter->device()->devicePixelRatio();
-#endif
     painter->drawPixmap(rect, pixmap(rect.size() * dpr, mode, state));
 }
 
@@ -159,11 +155,7 @@
 
 void KIconEngine::virtual_hook(int id, void *data)
 {
-#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)
     if (id == QIconEngine::IsNullHook) {
-#else
-    if (id == 3) {
-#endif
         *reinterpret_cast<bool*>(data) = !mIconLoader || 
!mIconLoader->hasIcon(mIconName);
     }
     QIconEngine::virtual_hook(id, data);


Reply via email to