From ab8ed3776bafe241611c930b5e0a212c0ae2462e Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Sun, 9 Nov 2025 08:27:10 +0200 Subject: [PATCH] libssh: Add compatibility with cmake 4.x, remove absent maintainer * Add compatibility with cmake 4.x * Remove maintainer who has been absent since 2019 Signed-off-by: Hannu Nyman --- libs/libssh/Makefile | 4 ++-- libs/libssh/patches/001-fix-cmake4.patch | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 libs/libssh/patches/001-fix-cmake4.patch diff --git a/libs/libssh/Makefile b/libs/libssh/Makefile index 1f51a9820a..960e37302d 100644 --- a/libs/libssh/Makefile +++ b/libs/libssh/Makefile @@ -9,13 +9,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libssh PKG_VERSION:=0.10.6 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://www.libssh.org/files/0.10/ PKG_HASH:=1861d498f5b6f1741b6abc73e608478491edcf9c9d4b6630eef6e74596de9dc1 -PKG_MAINTAINER:=Mislav Novakovic +PKG_MAINTAINER:= PKG_LICENSE:=LGPL-2.1-or-later BSD-2-Clause PKG_LICENSE_FILES:=COPYING PKG_CPE_ID:=cpe:/a:libssh:libssh diff --git a/libs/libssh/patches/001-fix-cmake4.patch b/libs/libssh/patches/001-fix-cmake4.patch new file mode 100644 index 0000000000..71b7b0c2ad --- /dev/null +++ b/libs/libssh/patches/001-fix-cmake4.patch @@ -0,0 +1,8 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,4 +1,4 @@ +-cmake_minimum_required(VERSION 3.3.0) ++cmake_minimum_required(VERSION 3.10.0) + cmake_policy(SET CMP0048 NEW) + + # Specify search path for CMake modules to be loaded by include() -- 2.30.2