Hello community,
here is the log from the commit of package extra-cmake-modules for
openSUSE:Leap:15.2 checked in at 2020-02-16 18:26:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/extra-cmake-modules (Old)
and /work/SRC/openSUSE:Leap:15.2/.extra-cmake-modules.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "extra-cmake-modules"
Sun Feb 16 18:26:21 2020 rev:50 rq:773890 version:5.67.0
Changes:
--------
---
/work/SRC/openSUSE:Leap:15.2/extra-cmake-modules/extra-cmake-modules.changes
2020-01-19 15:49:11.437763253 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.extra-cmake-modules.new.26092/extra-cmake-modules.changes
2020-02-16 18:27:32.502693538 +0100
@@ -1,0 +2,17 @@
+Sun Feb 2 18:06:41 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Replace %make_jobs with %cmake_build.
+
+-------------------------------------------------------------------
+Sun Feb 2 14:32:26 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.67.0
+ * New feature release
+ * For more details please see:
+ * https://www.kde.org/announcements/kde-frameworks-5.67.0.php
+- Changes since 5.66.0:
+ * Add missing Import Env Variable
+ * ECMAddAppIcon: Add sc in regex to extract extension from valid names
+ * ECMAddQch: support & document K_DOXYGEN macro usage
+
+-------------------------------------------------------------------
Old:
----
extra-cmake-modules-5.66.0.tar.xz
extra-cmake-modules-5.66.0.tar.xz.sig
New:
----
extra-cmake-modules-5.67.0.tar.xz
extra-cmake-modules-5.67.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ extra-cmake-modules.spec ++++++
--- /var/tmp/diff_new_pack.v3NV0G/_old 2020-02-16 18:27:32.838693715 +0100
+++ /var/tmp/diff_new_pack.v3NV0G/_new 2020-02-16 18:27:32.842693716 +0100
@@ -16,7 +16,7 @@
#
-%define _tar_path 5.66
+%define _tar_path 5.67
# Full KF5 version (e.g. 5.33.0)
%{!?_kf5_version: %global _kf5_version %{version}}
# Last major and minor KF5 version (e.g. 5.33)
@@ -29,7 +29,7 @@
# Only needed for the package signature condition
%bcond_without lang
Name: extra-cmake-modules
-Version: 5.66.0
+Version: 5.67.0
Release: 0
Summary: CMake modules
License: BSD-3-Clause
@@ -78,7 +78,7 @@
%build
%cmake_kf5 -d build
- %make_jobs
+ %cmake_build
%install
%kf5_makeinstall -C build
++++++ extra-cmake-modules-5.66.0.tar.xz -> extra-cmake-modules-5.67.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/extra-cmake-modules-5.66.0/CMakeLists.txt
new/extra-cmake-modules-5.67.0/CMakeLists.txt
--- old/extra-cmake-modules-5.66.0/CMakeLists.txt 2020-01-04
01:14:20.000000000 +0100
+++ new/extra-cmake-modules-5.67.0/CMakeLists.txt 2020-01-28
17:26:25.000000000 +0100
@@ -32,7 +32,7 @@
# Preliminary setup
#
-set(VERSION "5.66.0") # handled by release scripts
+set(VERSION "5.67.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.66.0/kde-modules/prefix.sh.cmake
new/extra-cmake-modules-5.67.0/kde-modules/prefix.sh.cmake
--- old/extra-cmake-modules-5.66.0/kde-modules/prefix.sh.cmake 2020-01-04
01:14:20.000000000 +0100
+++ new/extra-cmake-modules-5.67.0/kde-modules/prefix.sh.cmake 2020-01-28
17:26:25.000000000 +0100
@@ -8,3 +8,5 @@
export QT_PLUGIN_PATH=@KDE_INSTALL_FULL_QTPLUGINDIR@:$QT_PLUGIN_PATH
export QML2_IMPORT_PATH=@KDE_INSTALL_FULL_QMLDIR@:$QML2_IMPORT_PATH
+
+export
QT_QUICK_CONTROLS_STYLE_PATH=@KDE_INSTALL_FULL_QMLDIR@/QtQuick/Controls.2/:$QT_QUICK_CONTROLS_STYLE_PATH
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.66.0/modules/ECMAddAppIcon.cmake
new/extra-cmake-modules-5.67.0/modules/ECMAddAppIcon.cmake
--- old/extra-cmake-modules-5.66.0/modules/ECMAddAppIcon.cmake 2020-01-04
01:14:20.000000000 +0100
+++ new/extra-cmake-modules-5.67.0/modules/ECMAddAppIcon.cmake 2020-01-28
17:26:25.000000000 +0100
@@ -374,7 +374,7 @@
message(AUTHOR_WARNING "${icon_full} does not exist, ignoring")
else()
get_filename_component(icon_name ${icon} NAME)
- string(REGEX MATCH "([0-9]+)\\-[^/]+\\.([a-z]+)$"
+ string(REGEX MATCH "([0-9]+|sc)\\-[^/]+\\.([a-z]+)$"
_dummy "${icon_name}")
set(size "${CMAKE_MATCH_1}")
set(ext "${CMAKE_MATCH_2}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/extra-cmake-modules-5.66.0/modules/ECMAddQch.cmake
new/extra-cmake-modules-5.67.0/modules/ECMAddQch.cmake
--- old/extra-cmake-modules-5.66.0/modules/ECMAddQch.cmake 2020-01-04
01:14:20.000000000 +0100
+++ new/extra-cmake-modules-5.67.0/modules/ECMAddQch.cmake 2020-01-28
17:26:25.000000000 +0100
@@ -145,6 +145,12 @@
# VERBOSE tells the API dox generation tool to be more verbose about its
# activity.
#
+# The default config file for the API dox generation tool, so the one when not
+# using CONFIG_TEMPLATE, allows code to handle the case of being processed by
+# the tool by defining the C/C++ preprocessor macro ``K_DOXYGEN`` when run
+# (since v5.67.0). For backward-compatibility also the definition
+# ``DOXYGEN_SHOULD_SKIP_THIS`` is set, but its usage is deprecated.
+#
# Example usage:
#
# .. code-block:: cmake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.66.0/modules/ECMQchDoxygen.config.in
new/extra-cmake-modules-5.67.0/modules/ECMQchDoxygen.config.in
--- old/extra-cmake-modules-5.66.0/modules/ECMQchDoxygen.config.in
2020-01-04 01:14:20.000000000 +0100
+++ new/extra-cmake-modules-5.67.0/modules/ECMQchDoxygen.config.in
2020-01-28 17:26:25.000000000 +0100
@@ -204,7 +204,10 @@
"mit=<a
href=\"https://www.opensource.org/licenses/mit-license.php\">MIT</a>" \
"qpl=<a
href=\"https://opensource.org/licenses/QPL-1.0\">QPL</a>"
+# K_DOXYGEN set to have preprocessor macros know that kapidox/doxygen
processes them
+# DOXYGEN_SHOULD_SKIP_THIS is the deprecated variant (remove for KF6)
PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS \
+ K_DOXYGEN \
\
Q_WS_X11= \
Q_WS_WIN= \