Hello community,
here is the log from the commit of package extra-cmake-modules for
openSUSE:Factory checked in at 2015-07-14 17:21:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-06-23 12:05:32.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.extra-cmake-modules.new/extra-cmake-modules.changes
2015-07-14 17:21:27.000000000 +0200
@@ -1,0 +2,8 @@
+Sun Jul 5 18:44:44 UTC 2015 - [email protected]
+
+- Update to 5.12.0
+ * Improve error reporting of query_qmake macro
+ * For more details please see:
+ https://www.kde.org/announcements/kde-frameworks-5.12.0.php
+
+-------------------------------------------------------------------
Old:
----
extra-cmake-modules-5.11.0.tar.xz
New:
----
extra-cmake-modules-5.12.0.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ extra-cmake-modules.spec ++++++
--- /var/tmp/diff_new_pack.M6whIT/_old 2015-07-14 17:21:28.000000000 +0200
+++ /var/tmp/diff_new_pack.M6whIT/_new 2015-07-14 17:21:28.000000000 +0200
@@ -16,13 +16,13 @@
#
-%define _tar_path 5.11
+%define _tar_path 5.12
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.11.0
+Version: 5.12.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.11.0.tar.xz -> extra-cmake-modules-5.12.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/extra-cmake-modules-5.11.0/CMakeLists.txt
new/extra-cmake-modules-5.12.0/CMakeLists.txt
--- old/extra-cmake-modules-5.11.0/CMakeLists.txt 2015-06-06
10:10:46.000000000 +0200
+++ new/extra-cmake-modules-5.12.0/CMakeLists.txt 2015-06-23
22:54:11.000000000 +0200
@@ -3,7 +3,7 @@
project(extra-cmake-modules NONE)
set(ECM_MAJOR_VERSION 5)
-set(ECM_MINOR_VERSION 11)
+set(ECM_MINOR_VERSION 12)
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.11.0/modules/ECMQueryQmake.cmake
new/extra-cmake-modules-5.12.0/modules/ECMQueryQmake.cmake
--- old/extra-cmake-modules-5.11.0/modules/ECMQueryQmake.cmake 2015-06-06
10:10:46.000000000 +0200
+++ new/extra-cmake-modules-5.12.0/modules/ECMQueryQmake.cmake 2015-06-23
22:54:11.000000000 +0200
@@ -19,6 +19,7 @@
file(TO_CMAKE_PATH "${output}" output_path)
set(${result_variable} "${output_path}" PARENT_SCOPE)
else()
- message(FATAL "QMake call failed: ${error}")
+ message(WARNING "Failed call: ${QMAKE_EXECUTABLE} -query
\"${qt_variable}\"")
+ message(FATAL_ERROR "QMake call failed: ${return_code}")
endif()
endfunction()