Hello community,

here is the log from the commit of package libkdcraw for openSUSE:Factory 
checked in at 2014-03-18 17:08:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libkdcraw (Old)
 and      /work/SRC/openSUSE:Factory/.libkdcraw.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libkdcraw"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libkdcraw/libkdcraw.changes      2014-02-20 
07:55:26.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libkdcraw.new/libkdcraw.changes 2014-03-18 
17:08:38.000000000 +0100
@@ -1,0 +2,14 @@
+Thu Mar 13 20:11:50 UTC 2014 - [email protected]
+
+- Update to 4.12.90
+   * KDE 4.13 Beta 2  release
+   * See http://www.kde.org/announcements/announce-4.13-beta2.php
+
+-------------------------------------------------------------------
+Fri Mar  7 10:01:18 UTC 2014 - [email protected]
+
+- Update to 4.12.80
+   * KDE 4.13 Beta 1  release
+   * See http://www.kde.org/announcements/announce-4.13-beta1.php
+
+-------------------------------------------------------------------

Old:
----
  libkdcraw-4.12.2.tar.xz

New:
----
  libkdcraw-4.12.90.tar.xz

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

Other differences:
------------------
++++++ libkdcraw.spec ++++++
--- /var/tmp/diff_new_pack.e4fLh1/_old  2014-03-18 17:08:39.000000000 +0100
+++ /var/tmp/diff_new_pack.e4fLh1/_new  2014-03-18 17:08:39.000000000 +0100
@@ -19,7 +19,7 @@
 %define _so 23
 
 Name:           libkdcraw
-Version:        4.12.2
+Version:        4.12.90
 Release:        0
 Summary:        Shared library interface around dcraw
 License:        LGPL-2.0+ and GPL-2.0+ and GPL-3.0+

++++++ libkdcraw-4.12.2.tar.xz -> libkdcraw-4.12.90.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdcraw-4.12.2/CMakeLists.txt 
new/libkdcraw-4.12.90/CMakeLists.txt
--- old/libkdcraw-4.12.2/CMakeLists.txt 2013-11-30 13:30:13.000000000 +0100
+++ new/libkdcraw-4.12.90/CMakeLists.txt        2013-12-10 17:26:18.000000000 
+0100
@@ -37,7 +37,16 @@
 
 # NOTE: Libraw 0.16.x is prefered version to use because it's ported to Cmake 
with full features supported.
 # Until libraw 0.16.0 is release (ends of 2013), we will support previous 
version (with limited support)
-FIND_PACKAGE(LibRaw 0.15 REQUIRED)
+FIND_PACKAGE(LibRaw 0.15)
+SET_PACKAGE_PROPERTIES(LibRaw PROPERTIES DESCRIPTION "library that provides 
image Raw file demosaicing" URL "http://www.libraw.org"; TYPE REQUIRED PURPOSE 
"Required to build libkdcraw")
+IF(NOT LIBRAW_FOUND)
+  FEATURE_SUMMARY(
+    WHAT ALL
+    INCLUDE_QUIET_PACKAGES
+    FATAL_ON_MISSING_REQUIRED_PACKAGES
+  )
+  RETURN()
+ENDIF()
 
 # Check LibRaw config header.
 MESSAGE(STATUS "LibRaw version: ${LibRaw_VERSION_STRING}")
@@ -133,4 +142,8 @@
     INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libkdcraw.pc DESTINATION 
${LIB_INSTALL_DIR}/pkgconfig)
 ENDIF(NOT WIN32)
 
-MACRO_DISPLAY_FEATURE_LOG()
+FEATURE_SUMMARY(
+  WHAT ALL
+  INCLUDE_QUIET_PACKAGES
+  FATAL_ON_MISSING_REQUIRED_PACKAGES
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdcraw-4.12.2/libkdcraw/kdcraw.cpp 
new/libkdcraw-4.12.90/libkdcraw/kdcraw.cpp
--- old/libkdcraw-4.12.2/libkdcraw/kdcraw.cpp   2013-11-30 13:30:13.000000000 
+0100
+++ new/libkdcraw-4.12.90/libkdcraw/kdcraw.cpp  2013-12-10 17:26:18.000000000 
+0100
@@ -36,6 +36,10 @@
 #include <QFileInfo>
 #include <QStringList>
 
+// KDE includes
+
+#include <klibloader.h>
+
 // LibRaw includes
 
 #include <libraw_version.h>
@@ -49,6 +53,8 @@
 #include "version.h"
 #include "rawfiles.h"
 
+static const KCatalogLoader loader("libkdcraw");
+
 namespace KDcrawIface
 {
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdcraw-4.12.2/libkdcraw/squeezedcombobox.cpp 
new/libkdcraw-4.12.90/libkdcraw/squeezedcombobox.cpp
--- old/libkdcraw-4.12.2/libkdcraw/squeezedcombobox.cpp 2013-11-30 
13:30:13.000000000 +0100
+++ new/libkdcraw-4.12.90/libkdcraw/squeezedcombobox.cpp        2013-12-10 
17:26:18.000000000 +0100
@@ -74,6 +74,7 @@
 
 SqueezedComboBox::~SqueezedComboBox()
 {
+    d->originalItems.clear();
     delete d->timer;
     delete d;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdcraw-4.12.2/profiles/CMakeLists.txt 
new/libkdcraw-4.12.90/profiles/CMakeLists.txt
--- old/libkdcraw-4.12.2/profiles/CMakeLists.txt        2013-11-30 
13:30:13.000000000 +0100
+++ new/libkdcraw-4.12.90/profiles/CMakeLists.txt       2013-12-10 
17:26:18.000000000 +0100
@@ -22,7 +22,7 @@
 #
 # ============================================================
 
-FILE(GLOB icmfiles *.icm)
+FILE(GLOB icmfiles *.icm *.icc)
 
 INSTALL(FILES  ${icmfiles}
         DESTINATION ${DATA_INSTALL_DIR}/libkdcraw/profiles )

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to