Hello community,
here is the log from the commit of package extra-cmake-modules for
openSUSE:Factory checked in at 2019-06-22 11:07:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/extra-cmake-modules (Old)
and /work/SRC/openSUSE:Factory/.extra-cmake-modules.new.4615 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "extra-cmake-modules"
Sat Jun 22 11:07:16 2019 rev:66 rq:710712 version:5.59.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/extra-cmake-modules/extra-cmake-modules.changes
2019-05-21 10:24:51.363564498 +0200
+++
/work/SRC/openSUSE:Factory/.extra-cmake-modules.new.4615/extra-cmake-modules.changes
2019-06-22 11:09:53.720382745 +0200
@@ -1,0 +2,11 @@
+Sun Jun 09 07:35:11 UTC 2019 - [email protected]
+
+- Update to 5.59.0
+ * New feature release
+ * For more details please see:
+ * https://www.kde.org/announcements/kde-frameworks-5.59.0.php
+- Changes since 5.58.0:
+ * Create specific directory for Qt logging categories file
+ * Don't enable QT_STRICT_ITERATORS on Windows.
+
+-------------------------------------------------------------------
Old:
----
extra-cmake-modules-5.58.0.tar.xz
New:
----
extra-cmake-modules-5.59.0.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ extra-cmake-modules.spec ++++++
--- /var/tmp/diff_new_pack.tntcxC/_old 2019-06-22 11:09:55.492385356 +0200
+++ /var/tmp/diff_new_pack.tntcxC/_new 2019-06-22 11:09:55.492385356 +0200
@@ -16,7 +16,7 @@
#
-%define _tar_path 5.58
+%define _tar_path 5.59
# Full KF5 version (e.g. 5.33.0)
%{!?_kf5_version: %global _kf5_version %{version}}
# Last major and minor KF5 version (e.g. 5.33)
@@ -27,7 +27,7 @@
%bcond_with doc
%endif
Name: extra-cmake-modules
-Version: 5.58.0
+Version: 5.59.0
Release: 0
Summary: CMake modules
License: BSD-3-Clause
++++++ extra-cmake-modules-5.58.0.tar.xz -> extra-cmake-modules-5.59.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/extra-cmake-modules-5.58.0/CMakeLists.txt
new/extra-cmake-modules-5.59.0/CMakeLists.txt
--- old/extra-cmake-modules-5.58.0/CMakeLists.txt 2019-04-17
17:56:52.000000000 +0200
+++ new/extra-cmake-modules-5.59.0/CMakeLists.txt 2019-05-31
16:55:38.000000000 +0200
@@ -32,7 +32,7 @@
# Preliminary setup
#
-set(VERSION "5.58.0") # handled by release scripts
+set(VERSION "5.59.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.58.0/kde-modules/KDEFrameworkCompilerSettings.cmake
new/extra-cmake-modules-5.59.0/kde-modules/KDEFrameworkCompilerSettings.cmake
---
old/extra-cmake-modules-5.58.0/kde-modules/KDEFrameworkCompilerSettings.cmake
2019-04-17 17:56:52.000000000 +0200
+++
new/extra-cmake-modules-5.59.0/kde-modules/KDEFrameworkCompilerSettings.cmake
2019-05-31 16:55:38.000000000 +0200
@@ -55,9 +55,16 @@
-DQT_NO_SIGNALS_SLOTS_KEYWORDS
-DQT_USE_QSTRINGBUILDER
-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT
- -DQT_STRICT_ITERATORS
)
+if (NOT WIN32)
+ # Strict iterators can't be used on Windows, they lead to a link error
+ # when application code iterates over a QVector<QPoint> for instance,
unless
+ # Qt itself was also built with strict iterators.
+ # See example at https://bugreports.qt.io/browse/AUTOSUITE-946
+ add_definitions(-DQT_STRICT_ITERATORS)
+endif()
+
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID MATCHES
"Clang")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic")
endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.58.0/kde-modules/KDEInstallDirs.cmake
new/extra-cmake-modules-5.59.0/kde-modules/KDEInstallDirs.cmake
--- old/extra-cmake-modules-5.58.0/kde-modules/KDEInstallDirs.cmake
2019-04-17 17:56:52.000000000 +0200
+++ new/extra-cmake-modules-5.59.0/kde-modules/KDEInstallDirs.cmake
2019-05-31 16:55:38.000000000 +0200
@@ -128,6 +128,8 @@
# [``CONFIG_INSTALL_DIR``]
# ``AUTOSTARTDIR``
# autostart files (``CONFDIR/autostart``) [``AUTOSTART_INSTALL_DIR``]
+# ``LOGGINGCATEGORIESDIR``
+# Qt logging categories files directory
(``DATAROOTDIR/qlogging-categories5``) Since 5.59.0
#
# If ``KDE_INSTALL_USE_QT_SYS_PATHS`` is set to TRUE before including this
# module, the default values for some variables are instead queried from
@@ -582,6 +584,8 @@
KXMLGUI_INSTALL_DIR)
_define_relative(KTEMPLATESDIR DATAROOTDIR "kdevappwizard/templates"
"Kapptemplate and Kdevelop templates")
+_define_relative(LOGGINGCATEGORIESDIR DATAROOTDIR "qlogging-categories5"
+ "Qt Logging categories files")
# Cross-desktop or other system things
_define_relative(ICONDIR DATAROOTDIR "icons"