Hello community,

here is the log from the commit of package kimageformats for openSUSE:Factory 
checked in at 2015-09-02 07:46:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kimageformats (Old)
 and      /work/SRC/openSUSE:Factory/.kimageformats.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kimageformats"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes      
2015-07-14 17:27:58.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kimageformats.new/kimageformats.changes 
2015-09-02 07:46:27.000000000 +0200
@@ -1,0 +2,11 @@
+Tue Aug  4 19:20:30 UTC 2015 - [email protected]
+
+- Update to 5.13.0
+  * The Qt version requirement has been bumped from 5.2 to 5.3
+  * Debug output has been ported to categorized output, for less
+    noise by default
+  * Docbook documentation has been reviewed and updated
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.13.0.php
+
+-------------------------------------------------------------------

Old:
----
  kimageformats-5.12.0.tar.xz

New:
----
  kimageformats-5.13.0.tar.xz

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

Other differences:
------------------
++++++ kimageformats.spec ++++++
--- /var/tmp/diff_new_pack.8PbXB3/_old  2015-09-02 07:46:28.000000000 +0200
+++ /var/tmp/diff_new_pack.8PbXB3/_new  2015-09-02 07:46:28.000000000 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.12
+%define _tar_path 5.13
 Name:           kimageformats
-Version:        5.12.0
+Version:        5.13.0
 Release:        0
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
@@ -26,12 +26,12 @@
 BuildRequires:  kf5-filesystem
 BuildRequires:  openexr
 BuildRequires:  openexr-devel
-BuildRequires:  pkgconfig(Qt5Gui) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5PrintSupport) >= 5.2.0
-BuildRequires:  pkgconfig(Qt5Test) >= 5.2.0
+BuildRequires:  cmake(Qt5Gui) >= 5.3.0
+BuildRequires:  cmake(Qt5PrintSupport) >= 5.3.0
+BuildRequires:  cmake(Qt5Test) >= 5.3.0
 %requires_ge libQt5Gui5
 %requires_ge libQt5PrintSupport5
-Recommends:     libqt5-qtimageformats >= 5.2.0
+Recommends:     libqt5-qtimageformats >= 5.3.0
 Summary:        Image format plugins for Qt
 License:        LGPL-2.1+
 Group:          System/GUI/KDE

++++++ kimageformats-5.12.0.tar.xz -> kimageformats-5.13.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.12.0/CMakeLists.txt 
new/kimageformats-5.13.0/CMakeLists.txt
--- old/kimageformats-5.12.0/CMakeLists.txt     2015-07-04 22:36:35.000000000 
+0200
+++ new/kimageformats-5.13.0/CMakeLists.txt     2015-08-02 13:01:54.000000000 
+0200
@@ -3,7 +3,7 @@
 project(KImageFormats)
 
 include(FeatureSummary)
-find_package(ECM 5.12.0  NO_MODULE)
+find_package(ECM 5.13.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)
 
@@ -17,14 +17,14 @@
 
 include(CheckIncludeFiles)
 
-set(REQUIRED_QT_VERSION 5.2.0)
+set(REQUIRED_QT_VERSION 5.3.0)
 find_package(Qt5Gui ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 # EPS support depends on the gs utility; non-UNIX systems are unlikely to have
 # this available in PATH
 set(BUILD_EPS_PLUGIN FALSE)
 if (UNIX)
-    find_package(Qt5PrintSupport 5.2.0 NO_MODULE)
+    find_package(Qt5PrintSupport ${REQUIRED_QT_VERSION} NO_MODULE)
     set_package_properties(Qt5PrintSupport PROPERTIES
         PURPOSE "Required for the QImage plugin for EPS images"
         TYPE OPTIONAL
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.12.0/src/imageformats/eps.cpp 
new/kimageformats-5.13.0/src/imageformats/eps.cpp
--- old/kimageformats-5.12.0/src/imageformats/eps.cpp   2015-07-04 
22:36:35.000000000 +0200
+++ new/kimageformats-5.13.0/src/imageformats/eps.cpp   2015-08-02 
13:01:54.000000000 +0200
@@ -17,7 +17,13 @@
 #include <QProcess>
 #include <QTemporaryFile>
 
+#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
+// logging category for this framework, default: log stuff >= warning
+Q_LOGGING_CATEGORY(EPSPLUGIN, "epsplugin", QtWarningMsg)
+#else
 Q_LOGGING_CATEGORY(EPSPLUGIN, "epsplugin")
+#endif
+
 //#define EPS_PERFORMANCE_DEBUG 1
 
 #define BBOX_BUFLEN 200


Reply via email to