Hello community,

here is the log from the commit of package extra-cmake-modules for 
openSUSE:Factory checked in at 2015-05-11 19:33:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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  
2015-04-13 20:22:35.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.extra-cmake-modules.new/extra-cmake-modules.changes 
    2015-05-11 19:47:31.000000000 +0200
@@ -1,0 +2,7 @@
+Sun May  3 19:42:15 UTC 2015 - [email protected]
+
+- Update to 5.10.0
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.10.0.php
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ extra-cmake-modules.spec ++++++
--- /var/tmp/diff_new_pack.73H1Ns/_old  2015-05-11 19:47:32.000000000 +0200
+++ /var/tmp/diff_new_pack.73H1Ns/_new  2015-05-11 19:47:32.000000000 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define _tar_path 5.9
+%define _tar_path 5.10
 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.9.0
+Version:        5.10.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.9.0.tar.xz -> extra-cmake-modules-5.10.0.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-5.9.0/CMakeLists.txt 
new/extra-cmake-modules-5.10.0/CMakeLists.txt
--- old/extra-cmake-modules-5.9.0/CMakeLists.txt        2015-04-04 
10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/CMakeLists.txt       2015-04-25 
17:11:39.000000000 +0200
@@ -3,7 +3,7 @@
 project(extra-cmake-modules NONE)
 
 set(ECM_MAJOR_VERSION 5)
-set(ECM_MINOR_VERSION 9)
+set(ECM_MINOR_VERSION 10)
 set(ECM_PATCH_VERSION 0)
 
 set(ECM_VERSION ${ECM_MAJOR_VERSION}.${ECM_MINOR_VERSION}.${ECM_PATCH_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-5.9.0/find-modules/FindEGL.cmake 
new/extra-cmake-modules-5.10.0/find-modules/FindEGL.cmake
--- old/extra-cmake-modules-5.9.0/find-modules/FindEGL.cmake    2015-04-04 
10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/find-modules/FindEGL.cmake   2015-04-25 
17:11:39.000000000 +0200
@@ -60,12 +60,9 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #=============================================================================
 
-if(CMAKE_VERSION VERSION_LESS 2.8.12)
-    message(FATAL_ERROR "CMake 2.8.12 is required by FindEGL.cmake")
-endif()
-if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.12)
-    message(AUTHOR_WARNING "Your project should require at least CMake 2.8.12 
to use FindEGL.cmake")
-endif()
+include(${CMAKE_CURRENT_LIST_DIR}/ECMFindModuleHelpersStub.cmake)
+
+ecm_find_package_version_check(EGL)
 
 # Use pkg-config to get the directories and then use these values
 # in the FIND_PATH() and FIND_LIBRARY() calls
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-5.9.0/find-modules/FindKF5.cmake 
new/extra-cmake-modules-5.10.0/find-modules/FindKF5.cmake
--- old/extra-cmake-modules-5.9.0/find-modules/FindKF5.cmake    2015-04-04 
10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/find-modules/FindKF5.cmake   2015-04-25 
17:11:39.000000000 +0200
@@ -47,12 +47,9 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #=============================================================================
 
-if(CMAKE_VERSION VERSION_LESS 2.8.12)
-    message(FATAL_ERROR "CMake 2.8.12 is required by FindKF5.cmake")
-endif()
-if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.12)
-    message(AUTHOR_WARNING "Your project should require at least CMake 2.8.12 
to use FindKF5.cmake")
-endif()
+include(${CMAKE_CURRENT_LIST_DIR}/ECMFindModuleHelpersStub.cmake)
+
+ecm_find_package_version_check(KF5)
 
 if (NOT KF5_FIND_COMPONENTS)
     set(KF5_NOT_FOUND_MESSAGE "The KF5 package requires at least one 
component")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.9.0/find-modules/FindLibGit2.cmake 
new/extra-cmake-modules-5.10.0/find-modules/FindLibGit2.cmake
--- old/extra-cmake-modules-5.9.0/find-modules/FindLibGit2.cmake        
2015-04-04 10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/find-modules/FindLibGit2.cmake       
2015-04-25 17:11:39.000000000 +0200
@@ -60,12 +60,9 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #=============================================================================
 
-if(CMAKE_VERSION VERSION_LESS 2.8.12)
-    message(FATAL_ERROR "CMake 2.8.12 is required by FindLibGit2.cmake")
-endif()
-if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.12)
-    message(AUTHOR_WARNING "Your project should require at least CMake 2.8.12 
to use FindLibGit2.cmake")
-endif()
+include(${CMAKE_CURRENT_LIST_DIR}/ECMFindModuleHelpersStub.cmake)
+
+ecm_find_package_version_check(LibGit2)
 
 # Use pkg-config to get the directories and then use these values
 # in the FIND_PATH() and FIND_LIBRARY() calls
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.9.0/find-modules/FindOpenEXR.cmake 
new/extra-cmake-modules-5.10.0/find-modules/FindOpenEXR.cmake
--- old/extra-cmake-modules-5.9.0/find-modules/FindOpenEXR.cmake        
2015-04-04 10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/find-modules/FindOpenEXR.cmake       
2015-04-25 17:11:39.000000000 +0200
@@ -54,10 +54,9 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #=============================================================================
 
+include(${CMAKE_CURRENT_LIST_DIR}/ECMFindModuleHelpersStub.cmake)
 
-if(${CMAKE_VERSION} VERSION_LESS 2.8.12)
-    message(FATAL_ERROR "CMake 2.8.12 is required by FindOpenEXR.cmake")
-endif()
+ecm_find_package_version_check(OpenEXR)
 
 # use pkg-config to get the directories and then use these values
 # in the FIND_PATH() and FIND_LIBRARY() calls
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.9.0/find-modules/FindPng2Ico.cmake 
new/extra-cmake-modules-5.10.0/find-modules/FindPng2Ico.cmake
--- old/extra-cmake-modules-5.9.0/find-modules/FindPng2Ico.cmake        
2015-04-04 10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/find-modules/FindPng2Ico.cmake       
2015-04-25 17:11:39.000000000 +0200
@@ -87,6 +87,7 @@
     execute_process(
         COMMAND "${Png2Ico_EXECUTABLE}" --help
         OUTPUT_VARIABLE _png2ico_help_text
+        ERROR_VARIABLE _png2ico_help_text
     )
     if (_png2ico_help_text MATCHES ".*--rcfile .*")
         set(Png2Ico_HAS_RCFILE_ARGUMENT TRUE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.9.0/find-modules/FindSharedMimeInfo.cmake 
new/extra-cmake-modules-5.10.0/find-modules/FindSharedMimeInfo.cmake
--- old/extra-cmake-modules-5.9.0/find-modules/FindSharedMimeInfo.cmake 
2015-04-04 10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/find-modules/FindSharedMimeInfo.cmake        
2015-04-25 17:11:39.000000000 +0200
@@ -54,12 +54,9 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #=============================================================================
 
-if(CMAKE_VERSION VERSION_LESS 2.8.12)
-    message(FATAL_ERROR "CMake 2.8.12 is required by FindSharedMimeInfo.cmake")
-endif()
-if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.12)
-    message(AUTHOR_WARNING "Your project should require at least CMake 2.8.12 
to use FindSharedMimeInfo.cmake")
-endif()
+include(${CMAKE_CURRENT_LIST_DIR}/ECMFindModuleHelpersStub.cmake)
+
+ecm_find_package_version_check(SharedMimeInfo)
 
 find_program (UPDATE_MIME_DATABASE_EXECUTABLE NAMES update-mime-database)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.9.0/find-modules/FindX11_XCB.cmake 
new/extra-cmake-modules-5.10.0/find-modules/FindX11_XCB.cmake
--- old/extra-cmake-modules-5.9.0/find-modules/FindX11_XCB.cmake        
2015-04-04 10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/find-modules/FindX11_XCB.cmake       
2015-04-25 17:11:39.000000000 +0200
@@ -63,12 +63,9 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #=============================================================================
 
-if(CMAKE_VERSION VERSION_LESS 2.8.12)
-    message(FATAL_ERROR "CMake 2.8.12 is required by FindX11_XCB.cmake")
-endif()
-if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.12)
-    message(AUTHOR_WARNING "Your project should require at least CMake 2.8.12 
to use FindX11_XCB.cmake")
-endif()
+include(${CMAKE_CURRENT_LIST_DIR}/ECMFindModuleHelpersStub.cmake)
+
+ecm_find_package_version_check(X11_XCB)
 
 # use pkg-config to get the directories and then use these values
 # in the FIND_PATH() and FIND_LIBRARY() calls
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-5.9.0/modules/ECMCreateQmFromPoFiles.cmake 
new/extra-cmake-modules-5.10.0/modules/ECMCreateQmFromPoFiles.cmake
--- old/extra-cmake-modules-5.9.0/modules/ECMCreateQmFromPoFiles.cmake  
2015-04-04 10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/modules/ECMCreateQmFromPoFiles.cmake 
2015-04-25 17:11:39.000000000 +0200
@@ -145,7 +145,7 @@
             COMMAND ${lconvert_executable}
                 ARGS -i ${it} -o ${tsfile} -target-language ${language}
             COMMAND Qt5::lrelease
-                ARGS -compress -removeidentical -silent ${tsfile} -qm ${qmfile}
+                ARGS -removeidentical -silent ${tsfile} -qm ${qmfile}
             DEPENDS ${it}
             )
         install(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-5.9.0/modules/ECMPoQmTools.cmake 
new/extra-cmake-modules-5.10.0/modules/ECMPoQmTools.cmake
--- old/extra-cmake-modules-5.9.0/modules/ECMPoQmTools.cmake    2015-04-04 
10:52:03.000000000 +0200
+++ new/extra-cmake-modules-5.10.0/modules/ECMPoQmTools.cmake   2015-04-25 
17:11:39.000000000 +0200
@@ -155,7 +155,7 @@
             COMMAND ${lconvert_executable}
                 ARGS -i ${po_file} -o ${ts_file} -target-language ${lang}
             COMMAND Qt5::lrelease
-                ARGS -compress -removeidentical -silent ${ts_file} -qm 
${qm_file}
+                ARGS -removeidentical -silent ${ts_file} -qm ${qm_file}
             DEPENDS ${po_file}
             )
         if (ARGS_INSTALL_DESTINATION)


Reply via email to