Hello community,

here is the log from the commit of package libqt5-qtimageformats for 
openSUSE:Factory checked in at 2014-06-30 21:44:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libqt5-qtimageformats (Old)
 and      /work/SRC/openSUSE:Factory/.libqt5-qtimageformats.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libqt5-qtimageformats"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/libqt5-qtimageformats/libqt5-qtimageformats.changes  
    2014-06-04 18:38:32.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtimageformats.new/libqt5-qtimageformats.changes
 2014-06-30 21:44:35.000000000 +0200
@@ -1,0 +2,7 @@
+Wed Jun 25 10:38:02 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.1
+  * Bugfix release, for more details please see:
+    http://blog.qt.digia.com/blog/2014/06/25/qt-5-3-1-released/
+
+-------------------------------------------------------------------

Old:
----
  qtimageformats-opensource-src-5.3.0.tar.xz

New:
----
  qtimageformats-opensource-src-5.3.1.tar.xz

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

Other differences:
------------------
++++++ libqt5-qtimageformats.spec ++++++
--- /var/tmp/diff_new_pack.z6WFRn/_old  2014-06-30 21:44:37.000000000 +0200
+++ /var/tmp/diff_new_pack.z6WFRn/_new  2014-06-30 21:44:37.000000000 +0200
@@ -19,15 +19,15 @@
 %define qt5_snapshot 0
 
 Name:           libqt5-qtimageformats
-Version:        5.3.0
+Version:        5.3.1
 Release:        0
 Summary:        Qt 5 Image Format Plugins
 License:        SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
 Group:          Development/Libraries/X11
 Url:            http://qt.digia.com
 %define base_name libqt5
-%define real_version 5.3.0
-%define so_version 5.3.0
+%define real_version 5.3.1
+%define so_version 5.3.1
 %if %qt5_snapshot
 %define tar_version qtimageformats-%{real_version}
 %else

++++++ qtimageformats-opensource-src-5.3.0.tar.xz -> 
qtimageformats-opensource-src-5.3.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtimageformats-opensource-src-5.3.0/.qmake.conf 
new/qtimageformats-opensource-src-5.3.1/.qmake.conf
--- old/qtimageformats-opensource-src-5.3.0/.qmake.conf 2014-05-15 
19:12:47.000000000 +0200
+++ new/qtimageformats-opensource-src-5.3.1/.qmake.conf 2014-06-19 
12:08:33.000000000 +0200
@@ -1,3 +1,3 @@
 load(qt_build_config)
 
-MODULE_VERSION = 5.3.0
+MODULE_VERSION = 5.3.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtimageformats-opensource-src-5.3.0/.tag 
new/qtimageformats-opensource-src-5.3.1/.tag
--- old/qtimageformats-opensource-src-5.3.0/.tag        2014-05-15 
19:12:48.000000000 +0200
+++ new/qtimageformats-opensource-src-5.3.1/.tag        2014-06-19 
12:08:34.000000000 +0200
@@ -1 +1 @@
-554d617762c86964dfa074074304993ccdfbe2c9
+1c66c5786c35a7d841e0004757cff06da3f9a2cc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qtimageformats-opensource-src-5.3.0/src/plugins/imageformats/webp/qwebphandler.cpp
 
new/qtimageformats-opensource-src-5.3.1/src/plugins/imageformats/webp/qwebphandler.cpp
--- 
old/qtimageformats-opensource-src-5.3.0/src/plugins/imageformats/webp/qwebphandler.cpp
      2014-05-15 19:12:48.000000000 +0200
+++ 
new/qtimageformats-opensource-src-5.3.1/src/plugins/imageformats/webp/qwebphandler.cpp
      2014-06-19 12:08:34.000000000 +0200
@@ -137,8 +137,13 @@
     }
 
     QImage srcImage = image;
+#if Q_BYTE_ORDER == Q_LITTLE_ENDIAN
     if (srcImage.format() != QImage::Format_ARGB32)
         srcImage = srcImage.convertToFormat(QImage::Format_ARGB32);
+#else /* Q_BIG_ENDIAN */
+    if (srcImage.format() != QImage::Format_RGBA8888)
+        srcImage = srcImage.convertToFormat(QImage::Format_RGBA8888);
+#endif
 
     WebPPicture picture;
     WebPConfig config;
@@ -151,7 +156,11 @@
     picture.width = srcImage.width();
     picture.height = srcImage.height();
     picture.use_argb = 1;
+#if Q_BYTE_ORDER == Q_LITTLE_ENDIAN
     if (!WebPPictureImportBGRA(&picture, srcImage.bits(), 
srcImage.bytesPerLine())) {
+#else /* Q_BIG_ENDIAN */
+    if (!WebPPictureImportRGBA(&picture, srcImage.bits(), 
srcImage.bytesPerLine())) {
+#endif
         qWarning() << "failed to import image data to webp picture.";
 
         WebPPictureFree(&picture);

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to