Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kdbg for openSUSE:Factory checked in at 2025-03-20 19:26:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdbg (Old) and /work/SRC/openSUSE:Factory/.kdbg.new.2696 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdbg" Thu Mar 20 19:26:20 2025 rev:38 rq:1254727 version:3.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kdbg/kdbg.changes 2024-03-25 21:09:14.419478831 +0100 +++ /work/SRC/openSUSE:Factory/.kdbg.new.2696/kdbg.changes 2025-03-20 19:27:06.802901772 +0100 @@ -1,0 +2,6 @@ +Thu Mar 20 12:57:45 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Add patch: + * kdbg-cmake4.patch + +------------------------------------------------------------------- New: ---- kdbg-cmake4.patch BETA DEBUG BEGIN: New:- Add patch: * kdbg-cmake4.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdbg.spec ++++++ --- /var/tmp/diff_new_pack.fYxQKc/_old 2025-03-20 19:27:07.318923131 +0100 +++ /var/tmp/diff_new_pack.fYxQKc/_new 2025-03-20 19:27:07.318923131 +0100 @@ -1,7 +1,7 @@ # # spec file for package kdbg # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,7 +23,8 @@ License: GPL-2.0-or-later URL: https://www.kdbg.org/ Source0: https://github.com/j6t/kdbg/archive/refs/tags/%{name}-%{version}.tar.gz -BuildRequires: cmake >= 3.3 +# PATCH-FIX-UPSTREAM +Patch0: kdbg-cmake4.patch BuildRequires: extra-cmake-modules BuildRequires: fdupes BuildRequires: kf5-filesystem ++++++ kdbg-cmake4.patch ++++++ >From 8a291f61cac2988112a84fcb37b771b9e291eedd Mon Sep 17 00:00:00 2001 From: Christophe Marin <christo...@krop.fr> Date: Thu, 20 Mar 2025 13:55:40 +0100 Subject: [PATCH] Make kdbg compatible with CMake 4 Required CMake versions older than 3.5 will throw errors. Bump the minimum version to 3.16 --- CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f93b44..8108af0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,11 @@ -cmake_minimum_required(VERSION 3.3) -project(KDbg) +cmake_minimum_required(VERSION 3.16) + +set(KDBG_VERSION 3.1.0) +project(KDbg VERSION ${KDBG_VERSION}) + set(QT_MIN_VERSION "5.5.0") set(KF5_MIN_VERSION "5.2.0") -set(KDBG_VERSION 3.1.0) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/kdbg/version.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/kdbg/version.h) find_package(ECM REQUIRED NO_MODULE) -- 2.49.0