Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kdbg for openSUSE:Leap:16.0 checked in at 2025-08-01 08:31:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:16.0/kdbg (Old) and /work/SRC/openSUSE:Leap:16.0/.kdbg.new.1944 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdbg" Fri Aug 1 08:31:21 2025 rev:2 rq:1292706 version:3.1.0 Changes: -------- --- /work/SRC/openSUSE:Leap:16.0/kdbg/kdbg.changes 2025-03-19 11:47:34.311877786 +0100 +++ /work/SRC/openSUSE:Leap:16.0/.kdbg.new.1944/kdbg.changes 2025-08-01 08:31:31.686404217 +0200 @@ -1,0 +2,6 @@ +Thu Mar 20 12:57:45 UTC 2025 - Christophe Marin <[email protected]> + +- Add patch: + * kdbg-cmake4.patch + +------------------------------------------------------------------- New: ---- kdbg-cmake4.patch ----------(New B)---------- New:- Add patch: * kdbg-cmake4.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdbg.spec ++++++ --- /var/tmp/diff_new_pack.z6nmS7/_old 2025-08-01 08:31:32.030418538 +0200 +++ /var/tmp/diff_new_pack.z6nmS7/_new 2025-08-01 08:31:32.034418704 +0200 @@ -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 <[email protected]> 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
