Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package metis for openSUSE:Factory checked in at 2025-07-17 17:17:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/metis (Old) and /work/SRC/openSUSE:Factory/.metis.new.8875 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "metis" Thu Jul 17 17:17:10 2025 rev:12 rq:1293803 version:5.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/metis/metis.changes 2025-04-03 16:46:06.713357301 +0200 +++ /work/SRC/openSUSE:Factory/.metis.new.8875/metis.changes 2025-07-17 17:17:30.512615826 +0200 @@ -1,0 +2,8 @@ +Wed Jul 16 11:29:00 UTC 2025 - Dominique Leuenberger <dims...@opensuse.org> + +- Add metis-min-cmake-3.5.patch: declare cmake 3.5 as minimal + required version in order to allow building using cmake 4, which + sets 3.5 as arbitrary lower limit. CMake 3.5 was release in 2016, + so we can get away with simply not caring for older things. + +------------------------------------------------------------------- New: ---- metis-min-cmake-3.5.patch ----------(New B)---------- New: - Add metis-min-cmake-3.5.patch: declare cmake 3.5 as minimal required version in order to allow building using cmake 4, which ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ metis.spec ++++++ --- /var/tmp/diff_new_pack.w4PIjV/_old 2025-07-17 17:17:32.196685862 +0200 +++ /var/tmp/diff_new_pack.w4PIjV/_new 2025-07-17 17:17:32.208686361 +0200 @@ -32,7 +32,9 @@ # PATCH-FIX-OPENSUSE metis-programs-no-compilation-time.patch -- Fix W: file-contains-date-and-time Patch2: metis-programs-no-compilation-time.patch Patch3: metis-makefile-c-directives.patch -BuildRequires: cmake >= 2.8 +# PATCH-FIX-OPENSUSE: require at least cmake 3.5 in order to allow building against cmake 4 +Patch4: metis-min-cmake-3.5.patch +BuildRequires: cmake >= 3.5 BuildRequires: gcc BuildRequires: gcc-c++ ++++++ metis-min-cmake-3.5.patch ++++++ Index: metis-5.1.0/CMakeLists.txt =================================================================== --- metis-5.1.0.orig/CMakeLists.txt +++ metis-5.1.0/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.5) project(METIS) set(GKLIB_PATH "${CMAKE_SOURCE_DIR}/GKlib" CACHE PATH "path to GKlib") Index: metis-5.1.0/GKlib/CMakeLists.txt =================================================================== --- metis-5.1.0.orig/GKlib/CMakeLists.txt +++ metis-5.1.0/GKlib/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.5) project(GKlib) get_filename_component(abs "." ABSOLUTE)