sci-electronics/dsview: add 1.3.2-r2, drop 1.3.2-r1

- 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>
This commit is contained in:
Huang Rui
2026-05-20 19:46:45 +08:00
parent 3e2b0aa2e9
commit aee780ae91
2 changed files with 45 additions and 0 deletions

View File

@@ -54,6 +54,8 @@ PATCHES=(
"${FILESDIR}/${PN}-1.3.0-fix-flags.patch"
# Upstream commit c428bd66: fix Qt6 nativeEvent override signature.
"${FILESDIR}/${PN}-1.3.2-qt6.patch"
# bug 975564
"${FILESDIR}/${PN}-1.3.2-cmake4.patch"
)
src_configure() {

View File

@@ -0,0 +1,43 @@
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)