Hello community,

here is the log from the commit of package kimageformats for openSUSE:Factory 
checked in at 2017-07-05 23:51:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kimageformats (Old)
 and      /work/SRC/openSUSE:Factory/.kimageformats.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kimageformats"

Wed Jul  5 23:51:04 2017 rev:43 rq:502950 version:5.35.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes      
2017-06-01 16:19:45.720875479 +0200
+++ /work/SRC/openSUSE:Factory/.kimageformats.new/kimageformats.changes 
2017-07-05 23:51:07.702014841 +0200
@@ -1,0 +2,10 @@
+Sun Jun 11 09:27:43 CEST 2017 - [email protected]
+
+- Update to 5.35.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.35.0.php
+- Changes since 5.34.0:
+  * Use Q_FALLTHROUGH
+
+-------------------------------------------------------------------

Old:
----
  kimageformats-5.34.0.tar.xz

New:
----
  kimageformats-5.35.0.tar.xz

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

Other differences:
------------------
++++++ kimageformats.spec ++++++
--- /var/tmp/diff_new_pack.WmJfzJ/_old  2017-07-05 23:51:08.457908371 +0200
+++ /var/tmp/diff_new_pack.WmJfzJ/_new  2017-07-05 23:51:08.465907244 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define _tar_path 5.34
+%define _tar_path 5.35
 Name:           kimageformats
-Version:        5.34.0
+Version:        5.35.0
 Release:        0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}

++++++ kimageformats-5.34.0.tar.xz -> kimageformats-5.35.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.34.0/CMakeLists.txt 
new/kimageformats-5.35.0/CMakeLists.txt
--- old/kimageformats-5.34.0/CMakeLists.txt     2017-05-06 10:37:02.000000000 
+0200
+++ new/kimageformats-5.35.0/CMakeLists.txt     2017-06-03 11:02:51.000000000 
+0200
@@ -3,7 +3,7 @@
 project(KImageFormats)
 
 include(FeatureSummary)
-find_package(ECM 5.34.0  NO_MODULE)
+find_package(ECM 5.35.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/kimageformats-5.34.0/src/imageformats/tga.cpp 
new/kimageformats-5.35.0/src/imageformats/tga.cpp
--- old/kimageformats-5.34.0/src/imageformats/tga.cpp   2017-05-06 
10:37:02.000000000 +0200
+++ new/kimageformats-5.35.0/src/imageformats/tga.cpp   2017-06-03 
11:02:51.000000000 +0200
@@ -145,6 +145,9 @@
         switch (tga.image_type) {
         case TGA_TYPE_RLE_INDEXED:
             rle = true;
+#if QT_VERSION >= QT_VERSION_CHECK(5,8,0)
+        Q_FALLTHROUGH();
+#endif
         // no break is intended!
         case TGA_TYPE_INDEXED:
             pal = true;
@@ -152,6 +155,9 @@
 
         case TGA_TYPE_RLE_RGB:
             rle = true;
+#if QT_VERSION >= QT_VERSION_CHECK(5,8,0)
+        Q_FALLTHROUGH();
+#endif
         // no break is intended!
         case TGA_TYPE_RGB:
             rgb = true;
@@ -159,6 +165,9 @@
 
         case TGA_TYPE_RLE_GREY:
             rle = true;
+#if QT_VERSION >= QT_VERSION_CHECK(5,8,0)
+        Q_FALLTHROUGH();
+#endif
         // no break is intended!
         case TGA_TYPE_GREY:
             grey = true;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.34.0/src/imageformats/xcf.cpp 
new/kimageformats-5.35.0/src/imageformats/xcf.cpp
--- old/kimageformats-5.34.0/src/imageformats/xcf.cpp   2017-05-06 
10:37:02.000000000 +0200
+++ new/kimageformats-5.35.0/src/imageformats/xcf.cpp   2017-06-03 
11:02:51.000000000 +0200
@@ -1323,7 +1323,9 @@
             image.fill(qRgb(255, 255, 255));
             break;
         } // else, fall through to 32-bit representation
-
+#if QT_VERSION >= QT_VERSION_CHECK(5,8,0)
+        Q_FALLTHROUGH();
+#endif
     case RGBA_GIMAGE:
         image = QImage(xcf_image.width, xcf_image.height, 
QImage::Format_ARGB32);
         if (image.isNull()) {
@@ -1343,7 +1345,9 @@
             image.fill(255);
             break;
         } // else, fall through to 32-bit representation
-
+#if QT_VERSION >= QT_VERSION_CHECK(5,8,0)
+        Q_FALLTHROUGH();
+#endif
     case GRAYA_GIMAGE:
         image = QImage(xcf_image.width, xcf_image.height, 
QImage::Format_ARGB32);
         if (image.isNull()) {


Reply via email to