mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
- Patch cmake_minimum_required from 2.8.6 to 3.10 in both CMakeLists.txt files to satisfy CMake 4 policy floor. - Removes the QA0023 nag and the eclass workaround injection. Closes: https://bugs.gentoo.org/975564 Signed-off-by: Huang Rui <vowstar@gmail.com>
44 lines
1.4 KiB
Diff
44 lines
1.4 KiB
Diff
From: Huang Rui <vowstar@gmail.com>
|
|
Date: Wed, 20 May 2026 19:45:00 +0800
|
|
Subject: [PATCH] cmake: raise cmake_minimum_required to 3.10
|
|
|
|
Upstream pins cmake_minimum_required to 2.8.6. CMake 4 dropped
|
|
compatibility with policies < 3.5 and warns that < 3.10 will be dropped
|
|
next, so cmake.eclass injects -DCMAKE_POLICY_VERSION_MINIMUM=3.5 and
|
|
emits a QA notice nudging maintainers to update the project. Bump to
|
|
3.10 so the build is clean under modern CMake without the eclass
|
|
workaround.
|
|
|
|
Bug: https://bugs.gentoo.org/975564
|
|
Upstream-Status: Not submitted (low-activity upstream)
|
|
Signed-off-by: Huang Rui <vowstar@gmail.com>
|
|
---
|
|
CMakeLists.txt | 2 +-
|
|
DSView/test/CMakeLists.txt | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -19,7 +19,7 @@
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
##
|
|
|
|
-cmake_minimum_required(VERSION 2.8.6)
|
|
+cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(DSView)
|
|
|
|
diff --git a/DSView/test/CMakeLists.txt b/DSView/test/CMakeLists.txt
|
|
--- a/DSView/test/CMakeLists.txt
|
|
+++ b/DSView/test/CMakeLists.txt
|
|
@@ -19,7 +19,7 @@
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
##
|
|
|
|
-cmake_minimum_required(VERSION 2.8.6)
|
|
+cmake_minimum_required(VERSION 3.10)
|
|
|
|
include(FindPkgConfig)
|
|
include(GNUInstallDirs)
|