Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kf6-extra-cmake-modules for 
openSUSE:Factory checked in at 2024-06-09 20:19:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-extra-cmake-modules (Old)
 and      /work/SRC/openSUSE:Factory/.kf6-extra-cmake-modules.new.19518 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kf6-extra-cmake-modules"

Sun Jun  9 20:19:10 2024 rev:4 rq:1179254 version:6.3.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/kf6-extra-cmake-modules/kf6-extra-cmake-modules.changes
  2024-05-11 18:21:52.491693108 +0200
+++ 
/work/SRC/openSUSE:Factory/.kf6-extra-cmake-modules.new.19518/kf6-extra-cmake-modules.changes
       2024-06-09 20:22:04.933525111 +0200
@@ -1,0 +2,12 @@
+Wed Jun  5 10:11:18 UTC 2024 - Christophe Marin <[email protected]>
+
+- Update to 6.3.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/6/6.3.0/
+- Changes since 6.2.0:
+  * Skip app template packaging when cross-compiling
+  * Remove explicit maintainer from metainfo
+  * ECMQueryQt: Provide better error message when Qt6 qpaths is not found
+
+-------------------------------------------------------------------

Old:
----
  extra-cmake-modules-6.2.0.tar.xz
  extra-cmake-modules-6.2.0.tar.xz.sig

New:
----
  extra-cmake-modules-6.3.0.tar.xz
  extra-cmake-modules-6.3.0.tar.xz.sig

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

Other differences:
------------------
++++++ kf6-extra-cmake-modules.spec ++++++
--- /var/tmp/diff_new_pack.5R4Ncu/_old  2024-06-09 20:22:05.389541566 +0200
+++ /var/tmp/diff_new_pack.5R4Ncu/_new  2024-06-09 20:22:05.389541566 +0200
@@ -23,14 +23,14 @@
 
 %define rname extra-cmake-modules
 
-# Full KF6 version (e.g. 6.2.0)
+# Full KF6 version (e.g. 6.3.0)
 %{!?_kf6_version: %global _kf6_version %{version}}
 # Last major and minor KF6 version (e.g. 6.0)
 %{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without doc
 %bcond_without released
 Name:           kf6-extra-cmake-modules%{?pkg_suffix}
-Version:        6.2.0
+Version:        6.3.0
 Release:        0
 Summary:        CMake modules
 License:        BSD-3-Clause

++++++ extra-cmake-modules-6.2.0.tar.xz -> extra-cmake-modules-6.3.0.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-6.2.0/CMakeLists.txt 
new/extra-cmake-modules-6.3.0/CMakeLists.txt
--- old/extra-cmake-modules-6.2.0/CMakeLists.txt        2024-05-03 
14:23:08.000000000 +0200
+++ new/extra-cmake-modules-6.3.0/CMakeLists.txt        2024-05-31 
15:23:48.000000000 +0200
@@ -11,7 +11,7 @@
 # Preliminary setup
 #
 
-set(VERSION "6.2.0") # handled by release scripts
+set(VERSION "6.3.0") # handled by release scripts
 
 project(ECM
     VERSION "${VERSION}"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/extra-cmake-modules-6.2.0/kde-modules/KDEPackageAppTemplates.cmake 
new/extra-cmake-modules-6.3.0/kde-modules/KDEPackageAppTemplates.cmake
--- old/extra-cmake-modules-6.2.0/kde-modules/KDEPackageAppTemplates.cmake      
2024-05-03 14:23:08.000000000 +0200
+++ new/extra-cmake-modules-6.3.0/kde-modules/KDEPackageAppTemplates.cmake      
2024-05-31 15:23:48.000000000 +0200
@@ -64,11 +64,17 @@
 
 Multiple templates can be passed at once.
 
+This function does nothing when cross-compiling.
+
 
 Since 5.18
 #]=======================================================================]
 
 function(kde_package_app_templates)
+    if (CMAKE_CROSSCOMPILING)
+        return()
+    endif()
+
     set(_oneValueArgs INSTALL_DIR)
     set(_multiValueArgs TEMPLATES)
     cmake_parse_arguments(ARG "" "${_oneValueArgs}" "${_multiValueArgs}" 
${ARGN} )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-6.2.0/metainfo.yaml 
new/extra-cmake-modules-6.3.0/metainfo.yaml
--- old/extra-cmake-modules-6.2.0/metainfo.yaml 2024-05-03 14:23:08.000000000 
+0200
+++ new/extra-cmake-modules-6.3.0/metainfo.yaml 2024-05-31 15:23:48.000000000 
+0200
@@ -1,4 +1,3 @@
-maintainer: skelly
 description: Extra CMake modules
 tier: 1
 type: functional
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/extra-cmake-modules-6.2.0/modules/ECMQueryQt.cmake 
new/extra-cmake-modules-6.3.0/modules/ECMQueryQt.cmake
--- old/extra-cmake-modules-6.2.0/modules/ECMQueryQt.cmake      2024-05-03 
14:23:08.000000000 +0200
+++ new/extra-cmake-modules-6.3.0/modules/ECMQueryQt.cmake      2024-05-31 
15:23:48.000000000 +0200
@@ -47,23 +47,23 @@
 if (QT_MAJOR_VERSION STREQUAL "5")
     # QUIET to accommodate the TRY option
     find_package(Qt${QT_MAJOR_VERSION}Core QUIET)
+    set(_exec_name_text "Qt5 qmake")
     if(TARGET Qt5::qmake)
         get_target_property(_qmake_executable_default Qt5::qmake LOCATION)
 
         set(QUERY_EXECUTABLE ${_qmake_executable_default}
             CACHE FILEPATH "Location of the Qt5 qmake executable")
-        set(_exec_name_text "Qt5 qmake")
         set(_cli_option "-query")
     endif()
 elseif(QT_MAJOR_VERSION STREQUAL "6")
     # QUIET to accommodate the TRY option
     find_package(Qt6 COMPONENTS CoreTools QUIET CONFIG)
+    set(_exec_name_text "Qt6 qtpaths")
     if (TARGET Qt6::qtpaths)
         get_target_property(_qtpaths_executable Qt6::qtpaths LOCATION)
 
         set(QUERY_EXECUTABLE ${_qtpaths_executable}
             CACHE FILEPATH "Location of the Qt6 qtpaths executable")
-        set(_exec_name_text "Qt6 qtpaths")
         set(_cli_option "--query")
     endif()
 endif()

Reply via email to