Hello community,

here is the log from the commit of package kimageformats for openSUSE:Factory 
checked in at 2019-07-26 12:15:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kimageformats (Old)
 and      /work/SRC/openSUSE:Factory/.kimageformats.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kimageformats"

Fri Jul 26 12:15:20 2019 rev:70 rq:715885 version:5.60.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes      
2019-06-22 11:12:01.912571367 +0200
+++ /work/SRC/openSUSE:Factory/.kimageformats.new.4126/kimageformats.changes    
2019-07-26 12:15:25.250802285 +0200
@@ -1,0 +2,10 @@
+Sun Jul 14 06:41:38 UTC 2019 - [email protected]
+
+- Update to 5.60.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.60.0.php
+- Changes since 5.59.0:
+  * QImage::byteCount -> QImage::sizeInByes
+
+-------------------------------------------------------------------

Old:
----
  kimageformats-5.59.0.tar.xz

New:
----
  kimageformats-5.60.0.tar.xz

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

Other differences:
------------------
++++++ kimageformats.spec ++++++
--- /var/tmp/diff_new_pack.hFPvtC/_old  2019-07-26 12:15:26.506802052 +0200
+++ /var/tmp/diff_new_pack.hFPvtC/_new  2019-07-26 12:15:26.510802051 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.59
+%define _tar_path 5.60
 # 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: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:           kimageformats
-Version:        5.59.0
+Version:        5.60.0
 Release:        0
 Summary:        Image format plugins for Qt
 License:        LGPL-2.1-or-later

++++++ kimageformats-5.59.0.tar.xz -> kimageformats-5.60.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.59.0/CMakeLists.txt 
new/kimageformats-5.60.0/CMakeLists.txt
--- old/kimageformats-5.59.0/CMakeLists.txt     2019-06-01 18:38:28.000000000 
+0200
+++ new/kimageformats-5.60.0/CMakeLists.txt     2019-07-06 15:15:48.000000000 
+0200
@@ -3,7 +3,7 @@
 project(KImageFormats)
 
 include(FeatureSummary)
-find_package(ECM 5.59.0  NO_MODULE)
+find_package(ECM 5.60.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.10.0)
+set(REQUIRED_QT_VERSION 5.11.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.59.0/autotests/pictest.cpp 
new/kimageformats-5.60.0/autotests/pictest.cpp
--- old/kimageformats-5.59.0/autotests/pictest.cpp      2019-06-01 
18:38:28.000000000 +0200
+++ new/kimageformats-5.60.0/autotests/pictest.cpp      2019-07-06 
15:15:48.000000000 +0200
@@ -210,11 +210,11 @@
             QFile picDumpFile(fileNameBase + QStringLiteral("-expected.data"));
             QVERIFY2(picDumpFile.open(QIODevice::WriteOnly), 
qPrintable(picDumpFile.errorString()));
             picDumpFile.write(reinterpret_cast<const char 
*>(inputImage.bits()),
-                              inputImage.byteCount());
+                              inputImage.sizeInBytes());
             QFile pngDumpFile(fileNameBase + QStringLiteral("-actual.data"));
             QVERIFY2(pngDumpFile.open(QIODevice::WriteOnly), 
qPrintable(pngDumpFile.errorString()));
             pngDumpFile.write(reinterpret_cast<const char *>(expImage.bits()),
-                              expImage.byteCount());
+                              expImage.sizeInBytes());
             QString msg = QStringLiteral("Read image (")
                         + picDumpFile.fileName()
                         + QStringLiteral(") differed from expected image (")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.59.0/autotests/readtest.cpp 
new/kimageformats-5.60.0/autotests/readtest.cpp
--- old/kimageformats-5.59.0/autotests/readtest.cpp     2019-06-01 
18:38:28.000000000 +0200
+++ new/kimageformats-5.60.0/autotests/readtest.cpp     2019-07-06 
15:15:48.000000000 +0200
@@ -35,8 +35,8 @@
 {
     QFile file(filename);
     if (file.open(QIODevice::WriteOnly)) {
-        qint64 written = file.write(reinterpret_cast<const char 
*>(image.bits()), image.byteCount());
-        if (written == image.byteCount()) {
+        qint64 written = file.write(reinterpret_cast<const char 
*>(image.bits()), image.sizeInBytes());
+        if (written == image.sizeInBytes()) {
             QTextStream(stdout) << "       " << name
                                 << " written to " << filename << "\n";
         } else {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.59.0/tests/imagedump.cpp 
new/kimageformats-5.60.0/tests/imagedump.cpp
--- old/kimageformats-5.59.0/tests/imagedump.cpp        2019-06-01 
18:38:28.000000000 +0200
+++ new/kimageformats-5.60.0/tests/imagedump.cpp        2019-07-06 
15:15:48.000000000 +0200
@@ -116,8 +116,8 @@
         }
         img = img.convertToFormat(qformat);
     }
-    qint64 written = output.write(reinterpret_cast<const char *>(img.bits()), 
img.byteCount());
-    if (written != img.byteCount()) {
+    qint64 written = output.write(reinterpret_cast<const char *>(img.bits()), 
img.sizeInBytes());
+    if (written != img.sizeInBytes()) {
         QTextStream(stderr) << "Could not write image data to " << files.at(1)
                             << ":" << output.errorString() << "\n";
         return 5;


Reply via email to