Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package innoextract for openSUSE:Factory checked in at 2025-07-30 11:44:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/innoextract (Old) and /work/SRC/openSUSE:Factory/.innoextract.new.13279 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "innoextract" Wed Jul 30 11:44:52 2025 rev:13 rq:1296273 version:1.9 Changes: -------- --- /work/SRC/openSUSE:Factory/innoextract/innoextract.changes 2024-04-30 17:27:38.714793829 +0200 +++ /work/SRC/openSUSE:Factory/.innoextract.new.13279/innoextract.changes 2025-07-30 11:45:57.744176479 +0200 @@ -1,0 +2,6 @@ +Sun Jul 27 15:43:57 UTC 2025 - Christoph G <f...@grueninger.de> + +- Add upstream cmake-version-range.patch for compatibility with + CMake 4.0 and newer. + +------------------------------------------------------------------- New: ---- cmake-version-range.patch ----------(New B)---------- New: - Add upstream cmake-version-range.patch for compatibility with CMake 4.0 and newer. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ innoextract.spec ++++++ --- /var/tmp/diff_new_pack.vQgTch/_old 2025-07-30 11:45:58.324200472 +0200 +++ /var/tmp/diff_new_pack.vQgTch/_new 2025-07-30 11:45:58.328200637 +0200 @@ -1,7 +1,7 @@ # # spec file for package innoextract # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # Copyright (c) 2012 Pascal Bleser <pascal.ble...@opensuse.org> # # All modifications and additions to the file contributed by third parties @@ -28,7 +28,9 @@ Source1: http://constexpr.org/innoextract/files/%{name}-%{version}.tar.gz.sig Source2: %{name}.keyring Patch0: https://github.com/dscharrer/innoextract/pull/169.patch -BuildRequires: cmake >= 2.8.0 +# patch from upstream +Patch1: cmake-version-range.patch +BuildRequires: cmake >= 3.5 BuildRequires: gcc-c++ BuildRequires: libboost_date_time-devel BuildRequires: libboost_filesystem-devel ++++++ cmake-version-range.patch ++++++ >From 83d0bf4365b09ddd17dddb400ba5d262ddf16fb8 Mon Sep 17 00:00:00 2001 From: Daniel Scharrer <dan...@constexpr.org> Date: Wed, 20 Jan 2021 08:39:19 +0100 Subject: [PATCH] cmake: Fix warning with newer cmake versions --- cmake/VersionScript.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/VersionScript.cmake b/cmake/VersionScript.cmake index be04b36..47c8542 100644 --- a/cmake/VersionScript.cmake +++ b/cmake/VersionScript.cmake @@ -17,7 +17,7 @@ # misrepresented as being the original software. # 3. This notice may not be removed or altered from any source distribution. -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8...3.19) # CMake script that reads a VERSION file and the current git history and the calls configure_file(). # This is used by version_file() in VersionString.cmake -- 2.50.1