Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package snorenotify-qt5 for openSUSE:Factory checked in at 2025-03-20 19:26:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/snorenotify-qt5 (Old) and /work/SRC/openSUSE:Factory/.snorenotify-qt5.new.2696 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "snorenotify-qt5" Thu Mar 20 19:26:03 2025 rev:5 rq:1254713 version:0.7.0 Changes: -------- --- /work/SRC/openSUSE:Factory/snorenotify-qt5/snorenotify-qt5.changes 2024-02-20 21:16:42.531161202 +0100 +++ /work/SRC/openSUSE:Factory/.snorenotify-qt5.new.2696/snorenotify-qt5.changes 2025-03-20 19:26:34.601568895 +0100 @@ -1,0 +2,6 @@ +Thu Mar 20 12:01:42 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Add patch to fix build failure with CMake 4: + * snorenotify-cmake4.patch + +------------------------------------------------------------------- New: ---- snorenotify-cmake4.patch BETA DEBUG BEGIN: New:- Add patch to fix build failure with CMake 4: * snorenotify-cmake4.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ snorenotify-qt5.spec ++++++ --- /var/tmp/diff_new_pack.1UieFv/_old 2025-03-20 19:26:35.289597373 +0100 +++ /var/tmp/diff_new_pack.1UieFv/_new 2025-03-20 19:26:35.289597373 +0100 @@ -26,6 +26,8 @@ Source: %{rname}-%{version}.tar.gz # PATCH-FIX-UPSTREAM fix_desktop_files.patch Patch0: fix_desktop_files.patch +# PATCH-FIX-UPSTREAM +Patch1: snorenotify-cmake4.patch BuildRequires: doxygen BuildRequires: extra-cmake-modules BuildRequires: fdupes ++++++ snorenotify-cmake4.patch ++++++ >From adfd8535e998d50aff25500bb818640629e3d8d1 Mon Sep 17 00:00:00 2001 From: Christophe Marin <christo...@krop.fr> Date: Thu, 20 Mar 2025 13:15:14 +0100 Subject: [PATCH] Make snorenotify compatible with CMake 4 required versions older than 3.5 will throw errors. Bump the minimum version to the ECM one. --- CMakeLists.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a6b337..f757c62 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,10 @@ -project( SnoreNotify ) -cmake_minimum_required( VERSION 2.8.12 ) +cmake_minimum_required(VERSION 3.16) + +set(SNORE_VERSION_MAJOR 0) +set(SNORE_VERSION_MINOR 7) +set(SNORE_VERSION_PATCH 0) + +project(SnoreNotify VERSION ${SNORE_VERSION_MAJOR}.${SNORE_VERSION_MINOR}.${SNORE_VERSION_PATCH}) include(FeatureSummary) @@ -27,11 +32,6 @@ include(ECMPackageConfigHelpers) include(ECMPoQmTools) include(ECMSetupVersion) - -set(SNORE_VERSION_MAJOR 0) -set(SNORE_VERSION_MINOR 7) -set(SNORE_VERSION_PATCH 0) - set(SNORE_SUFFIX "-qt5") set(SNORE_CamelCase_SUFFIX "Qt5") @@ -42,7 +42,7 @@ find_package(Qt5Gui REQUIRED) find_package(Qt5Widgets QUIET) set_package_properties(Qt5Widgets PROPERTIES - PURPOSE "Supprot for the daemon and the settings dialog as well as some backends." + PURPOSE "Support for the daemon and the settings dialog as well as some backends." TYPE OPTIONAL) -- 2.49.0