Hello community,

here is the log from the commit of package extra-cmake-modules for 
openSUSE:Factory checked in at 2016-04-12 19:07:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/extra-cmake-modules (Old)
 and      /work/SRC/openSUSE:Factory/.extra-cmake-modules.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "extra-cmake-modules"

Changes:
--------
--- /work/SRC/openSUSE:Factory/extra-cmake-modules/extra-cmake-modules.changes  
2016-03-16 10:26:55.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.extra-cmake-modules.new/extra-cmake-modules.changes 
    2016-04-12 19:07:52.000000000 +0200
@@ -1,0 +2,11 @@
+Mon Apr  4 14:18:07 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.21.0 (boo#974793)
+  * Fix _ecm_update_iconcache to only update the install location
+  * Revert "ECMQtDeclareLoggingCategory: Include <QDebug> with the
+    generated file"
+  * Upgrade Qt version requirement to 5.4.0
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.21.0.php
+
+-------------------------------------------------------------------

Old:
----
  extra-cmake-modules-5.20.0.tar.xz

New:
----
  extra-cmake-modules-5.21.0.tar.xz

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

Other differences:
------------------
++++++ extra-cmake-modules.spec ++++++
--- /var/tmp/diff_new_pack.zQXfi5/_old  2016-04-12 19:07:52.000000000 +0200
+++ /var/tmp/diff_new_pack.zQXfi5/_new  2016-04-12 19:07:52.000000000 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.20
+%define _tar_path 5.21
 Name:           extra-cmake-modules
 Summary:        CMake modules
 License:        BSD-3-Clause
 Group:          Development/Tools/Other
 Url:            
https://projects.kde.org/projects/kdesupport/extra-cmake-modules
-Version:        5.20.0
+Version:        5.21.0
 Release:        0
 Source:         
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ extra-cmake-modules-5.20.0.tar.xz -> extra-cmake-modules-5.21.0.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-5.20.0/CMakeLists.txt 
new/extra-cmake-modules-5.21.0/CMakeLists.txt
--- old/extra-cmake-modules-5.20.0/CMakeLists.txt       2016-02-13 
13:26:05.000000000 +0100
+++ new/extra-cmake-modules-5.21.0/CMakeLists.txt       2016-03-29 
20:13:23.000000000 +0200
@@ -16,7 +16,7 @@
 # Preliminary setup
 #
 
-set(VERSION "5.20.0") # handled by release scripts
+set(VERSION "5.21.0") # handled by release scripts
 
 if (POLICY CMP0048)
     cmake_policy(SET CMP0048 NEW)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.20.0/modules/ECMEnableSanitizers.cmake 
new/extra-cmake-modules-5.21.0/modules/ECMEnableSanitizers.cmake
--- old/extra-cmake-modules-5.20.0/modules/ECMEnableSanitizers.cmake    
2016-02-13 13:26:05.000000000 +0100
+++ new/extra-cmake-modules-5.21.0/modules/ECMEnableSanitizers.cmake    
2016-03-29 20:13:23.000000000 +0200
@@ -139,7 +139,9 @@
     # check option and enable appropriate flags
     enable_sanitizer_flags ( ${CUR_SANITIZER} )
     set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${XSAN_COMPILE_FLAGS}" )
-    link_libraries(${XSAN_LINKER_FLAGS})
+    if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
+      link_libraries(${XSAN_LINKER_FLAGS})
+    endif()
     if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
         string(REPLACE "-Wl,--no-undefined" "" CMAKE_SHARED_LINKER_FLAGS 
"${CMAKE_SHARED_LINKER_FLAGS}")
         string(REPLACE "-Wl,--no-undefined" "" CMAKE_MODULE_LINKER_FLAGS 
"${CMAKE_MODULE_LINKER_FLAGS}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.20.0/modules/ECMInstallIcons.cmake 
new/extra-cmake-modules-5.21.0/modules/ECMInstallIcons.cmake
--- old/extra-cmake-modules-5.20.0/modules/ECMInstallIcons.cmake        
2016-02-13 13:26:05.000000000 +0100
+++ new/extra-cmake-modules-5.21.0/modules/ECMInstallIcons.cmake        
2016-03-29 20:13:23.000000000 +0200
@@ -206,8 +206,7 @@
     install(CODE "
     set(DESTDIR_VALUE \"\$ENV{DESTDIR}\")
     if (NOT DESTDIR_VALUE)
-        file(WRITE \"${installdir}/${theme}/temp.txt\" \"update\")
-        file(REMOVE \"${installdir}/${theme}/temp.txt\")
+        execute_process(COMMAND \"${CMAKE_COMMAND}\" -E touch 
\"${CMAKE_INSTALL_PREFIX}/${installdir}/${theme}\")
         set(HAVE_GTK_UPDATE_ICON_CACHE_EXEC 
${GTK_UPDATE_ICON_CACHE_EXECUTABLE})
         if (HAVE_GTK_UPDATE_ICON_CACHE_EXEC)
             execute_process(COMMAND ${GTK_UPDATE_ICON_CACHE_EXECUTABLE} -q -t 
-i . WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}/${installdir}/${theme}\")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.20.0/modules/ECMQtDeclareLoggingCategory.cmake 
new/extra-cmake-modules-5.21.0/modules/ECMQtDeclareLoggingCategory.cmake
--- old/extra-cmake-modules-5.20.0/modules/ECMQtDeclareLoggingCategory.cmake    
2016-02-13 13:26:05.000000000 +0100
+++ new/extra-cmake-modules-5.21.0/modules/ECMQtDeclareLoggingCategory.cmake    
2016-03-29 20:13:23.000000000 +0200
@@ -30,9 +30,6 @@
 #
 # ``<identifier>`` may include namespaces (eg: ``foo::bar::IDENT``).
 #
-# Starting with Frameworks 5.18, the generated header also includes the 
<QDebug>
-# header, so you don't have to put extra #include <QDebug> anymore in your 
code.
-#
 # Since 5.14.0.
 
 #=============================================================================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.20.0/modules/ECMQtDeclareLoggingCategory.h.in 
new/extra-cmake-modules-5.21.0/modules/ECMQtDeclareLoggingCategory.h.in
--- old/extra-cmake-modules-5.20.0/modules/ECMQtDeclareLoggingCategory.h.in     
2016-02-13 13:26:05.000000000 +0100
+++ new/extra-cmake-modules-5.21.0/modules/ECMQtDeclareLoggingCategory.h.in     
2016-03-29 20:13:23.000000000 +0200
@@ -4,7 +4,6 @@
 #define @GUARD_NAME@
 
 #include <QLoggingCategory>
-#include <QDebug>
 @OPEN_NAMESPACES@
 Q_DECLARE_LOGGING_CATEGORY(@IDENTIFIER@)
 @CLOSE_NAMESPACES@


Reply via email to