Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package threadweaver for openSUSE:Factory checked in at 2025-03-24 13:25:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/threadweaver (Old) and /work/SRC/openSUSE:Factory/.threadweaver.new.2696 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "threadweaver" Mon Mar 24 13:25:20 2025 rev:125 rq:1255011 version:5.116.0 Changes: -------- --- /work/SRC/openSUSE:Factory/threadweaver/threadweaver.changes 2024-05-20 18:12:05.723365842 +0200 +++ /work/SRC/openSUSE:Factory/.threadweaver.new.2696/threadweaver.changes 2025-03-24 13:25:23.346641185 +0100 @@ -1,0 +2,6 @@ +Fri Mar 21 13:06:53 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Backport upstream change: + * threadweaver-cmake4.patch + +------------------------------------------------------------------- New: ---- threadweaver-cmake4.patch BETA DEBUG BEGIN: New:- Backport upstream change: * threadweaver-cmake4.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ threadweaver.spec ++++++ --- /var/tmp/diff_new_pack.X6qSkN/_old 2025-03-24 13:25:24.454687353 +0100 +++ /var/tmp/diff_new_pack.X6qSkN/_new 2025-03-24 13:25:24.458687519 +0100 @@ -34,6 +34,8 @@ Source1: %{name}-%{version}.tar.xz.sig Source2: frameworks.keyring %endif +# PATCH-FIX-UPSTREAM -- cmake 4 compat +Patch0: threadweaver-cmake4.patch BuildRequires: extra-cmake-modules >= %{_kf5_version} BuildRequires: fdupes BuildRequires: cmake(Qt5Core) >= %{qt5_version} ++++++ threadweaver-cmake4.patch ++++++ >From 7049a1591d23f6bc2835ad7982c5c6e63985aaa0 Mon Sep 17 00:00:00 2001 From: Nicolas Fella <nicolas.fe...@gmx.de> Date: Wed, 19 Feb 2025 22:33:09 +0100 Subject: [PATCH] Increase required CMake version for example CMake 4.0 will drop support for min. versions < 3.5, so we need to bump this 3.16 was chosen because it's the current min. for threadweaver itself --- examples/HelloWorld/CMakeLists.txt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/examples/HelloWorld/CMakeLists.txt b/examples/HelloWorld/CMakeLists.txt index 64c7ae2..8860a5d 100644 --- a/examples/HelloWorld/CMakeLists.txt +++ b/examples/HelloWorld/CMakeLists.txt @@ -2,15 +2,10 @@ # https://cmake.org/documentation/ # https://community.kde.org/Guidelines_and_HOWTOs/CMake ##@@snippet_begin(adding_tw_1) -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.16) find_package(ECM 1.1.0 REQUIRED NO_MODULE) ##@@snippet_end -if(POLICY CMP0063) - cmake_policy(SET CMP0063 NEW) -endif() - - if (NOT TARGET KF5ThreadWeaver) # Find the ThreadWeaver framework when we compiling this example stand-alone ##@@snippet_begin(adding_tw_2) -- 2.49.0