Hello community,

here is the log from the commit of package kimageformats for openSUSE:Factory 
checked in at 2017-03-03 15:54:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kimageformats (Old)
 and      /work/SRC/openSUSE:Factory/.kimageformats.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kimageformats"

Fri Mar  3 15:54:13 2017 rev:39 rq:461431 version:5.31.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes      
2017-02-03 17:45:10.673204823 +0100
+++ /work/SRC/openSUSE:Factory/.kimageformats.new/kimageformats.changes 
2017-03-03 15:54:14.537370990 +0100
@@ -1,0 +2,7 @@
+Thu Feb  9 09:29:42 UTC 2017 - [email protected]
+
+- Update to 5.31.0
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.31.0.php
+
+-------------------------------------------------------------------

Old:
----
  kimageformats-5.30.0.tar.xz

New:
----
  kimageformats-5.31.0.tar.xz

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

Other differences:
------------------
++++++ kimageformats.spec ++++++
--- /var/tmp/diff_new_pack.gLmsRt/_old  2017-03-03 15:54:15.653212971 +0100
+++ /var/tmp/diff_new_pack.gLmsRt/_new  2017-03-03 15:54:15.657212404 +0100
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.30
+%define _tar_path 5.31
 Name:           kimageformats
-Version:        5.30.0
+Version:        5.31.0
 Release:        0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
@@ -27,12 +27,12 @@
 BuildRequires:  openexr
 BuildRequires:  openexr-devel
 BuildRequires:  cmake(KF5Archive) >= %{_tar_path}
-BuildRequires:  cmake(Qt5Gui) >= 5.5.0
-BuildRequires:  cmake(Qt5PrintSupport) >= 5.5.0
-BuildRequires:  cmake(Qt5Test) >= 5.5.0
+BuildRequires:  cmake(Qt5Gui) >= 5.6.0
+BuildRequires:  cmake(Qt5PrintSupport) >= 5.6.0
+BuildRequires:  cmake(Qt5Test) >= 5.6.0
 %requires_ge libQt5Gui5
 %requires_ge libQt5PrintSupport5
-Recommends:     libqt5-qtimageformats >= 5.5.0
+Recommends:     libqt5-qtimageformats >= 5.6.0
 Summary:        Image format plugins for Qt
 License:        LGPL-2.1+
 Group:          System/GUI/KDE

++++++ kimageformats-5.30.0.tar.xz -> kimageformats-5.31.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/CMakeLists.txt 
new/kimageformats-5.31.0/CMakeLists.txt
--- old/kimageformats-5.30.0/CMakeLists.txt     2017-01-08 16:31:27.000000000 
+0100
+++ new/kimageformats-5.31.0/CMakeLists.txt     2017-02-04 19:20:08.000000000 
+0100
@@ -3,7 +3,7 @@
 project(KImageFormats)
 
 include(FeatureSummary)
-find_package(ECM 5.30.0  NO_MODULE)
+find_package(ECM 5.31.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,7 +17,7 @@
 
 include(CheckIncludeFiles)
 
-set(REQUIRED_QT_VERSION 5.5.0)
+set(REQUIRED_QT_VERSION 5.6.0)
 find_package(Qt5Gui ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 
 find_package(KF5Archive)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/eps.cpp 
new/kimageformats-5.31.0/src/imageformats/eps.cpp
--- old/kimageformats-5.30.0/src/imageformats/eps.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/eps.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -337,10 +337,10 @@
         return Capabilities(CanRead | CanWrite);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/exr.cpp 
new/kimageformats-5.31.0/src/imageformats/exr.cpp
--- old/kimageformats-5.30.0/src/imageformats/exr.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/exr.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -218,10 +218,10 @@
         return Capabilities(CanRead);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/kra.cpp 
new/kimageformats-5.31.0/src/imageformats/kra.cpp
--- old/kimageformats-5.30.0/src/imageformats/kra.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/kra.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -66,10 +66,10 @@
         return Capabilities(CanRead);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/ora.cpp 
new/kimageformats-5.31.0/src/imageformats/ora.cpp
--- old/kimageformats-5.30.0/src/imageformats/ora.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/ora.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -65,10 +65,10 @@
         return Capabilities(CanRead);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/pcx.cpp 
new/kimageformats-5.31.0/src/imageformats/pcx.cpp
--- old/kimageformats-5.30.0/src/imageformats/pcx.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/pcx.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -667,10 +667,10 @@
         return Capabilities(CanRead | CanWrite);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/pic.cpp 
new/kimageformats-5.31.0/src/imageformats/pic.cpp
--- old/kimageformats-5.30.0/src/imageformats/pic.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/pic.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -449,10 +449,10 @@
         return Capabilities(CanRead | CanWrite);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/psd.cpp 
new/kimageformats-5.31.0/src/imageformats/psd.cpp
--- old/kimageformats-5.30.0/src/imageformats/psd.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/psd.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -300,10 +300,10 @@
         return Capabilities(CanRead);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/ras.cpp 
new/kimageformats-5.31.0/src/imageformats/ras.cpp
--- old/kimageformats-5.30.0/src/imageformats/ras.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/ras.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -282,10 +282,10 @@
         return Capabilities(CanRead);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/rgb.cpp 
new/kimageformats-5.31.0/src/imageformats/rgb.cpp
--- old/kimageformats-5.30.0/src/imageformats/rgb.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/rgb.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -111,8 +111,8 @@
 };
 
 SGIImage::SGIImage(QIODevice *io) :
-    _starttab(0),
-    _lengthtab(0)
+    _starttab(nullptr),
+    _lengthtab(nullptr)
 {
     _dev = io;
     _stream.setDevice(_dev);
@@ -714,10 +714,10 @@
         return Capabilities(CanRead | CanWrite);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/tga.cpp 
new/kimageformats-5.31.0/src/imageformats/tga.cpp
--- old/kimageformats-5.30.0/src/imageformats/tga.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/tga.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -414,10 +414,10 @@
         return Capabilities(CanRead | CanWrite);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.30.0/src/imageformats/xcf.cpp 
new/kimageformats-5.31.0/src/imageformats/xcf.cpp
--- old/kimageformats-5.30.0/src/imageformats/xcf.cpp   2017-01-08 
16:31:27.000000000 +0100
+++ new/kimageformats-5.31.0/src/imageformats/xcf.cpp   2017-02-04 
19:20:08.000000000 +0100
@@ -107,7 +107,7 @@
         //! copied in different ways.
         void (*assignBytes)(Layer &layer, uint i, uint j);
 
-        Layer(void) : name(0) {}
+        Layer(void) : name(nullptr) {}
         ~Layer(void)
         {
             delete[] name;
@@ -416,7 +416,7 @@
                 property.readBytes(tag, size);
 
                 quint32 flags;
-                char *data = 0;
+                char *data = nullptr;
                 property >> flags >> data;
 
                 if (tag && strncmp(tag, "gimp-comment", 
strlen("gimp-comment")) == 0) {
@@ -474,7 +474,7 @@
     xcf_io >> foo;
     type = PropType(foo); // TODO urks
 
-    char *data = 0;
+    char *data = nullptr;
     quint32 size;
 
     // The colormap property size is not the correct number of bytes:
@@ -1442,7 +1442,7 @@
 {
     Layer &layer(xcf_image.layer);
     QImage &image(xcf_image.image);
-    PixelCopyOperation copy = 0;
+    PixelCopyOperation copy = nullptr;
 
     switch (layer.type) {
     case RGB_GIMAGE:
@@ -1725,7 +1725,7 @@
     Layer &layer(xcf_image.layer);
     QImage &image(xcf_image.image);
 
-    PixelMergeOperation merge = 0;
+    PixelMergeOperation merge = nullptr;
 
     if (!layer.opacity) {
         return;    // don't bother doing anything
@@ -2686,10 +2686,10 @@
         return Capabilities(CanRead);
     }
     if (!format.isEmpty()) {
-        return 0;
+        return nullptr;
     }
     if (!device->isOpen()) {
-        return 0;
+        return nullptr;
     }
 
     Capabilities cap;


Reply via email to