From 526f8b43edb7ac1dbf9b86afc183a95b389a7bab Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Sun, 12 Jul 2026 13:10:48 +0200 Subject: [PATCH] package/cmake: bump version to 4.4.0 https://cmake.org/cmake/help/latest/release/4.4.html Signed-off-by: Bernd Kuhls Signed-off-by: Julien Olivain --- package/cmake/Config.in.host | 5 +++++ package/cmake/cmake.hash | 4 ++-- package/cmake/cmake.mk | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/package/cmake/Config.in.host b/package/cmake/Config.in.host index 0d96ee2233..b8221a7d22 100644 --- a/package/cmake/Config.in.host +++ b/package/cmake/Config.in.host @@ -79,10 +79,15 @@ config BR2_HOST_CMAKE_AT_LEAST_4_3 bool select BR2_HOST_CMAKE_AT_LEAST_4_2 +config BR2_HOST_CMAKE_AT_LEAST_4_4 + bool + select BR2_HOST_CMAKE_AT_LEAST_4_3 + # This order guarantees that the highest version is set, as kconfig # stops affecting a value on the first matching default. config BR2_HOST_CMAKE_AT_LEAST string + default "4.4" if BR2_HOST_CMAKE_AT_LEAST_4_4 default "4.3" if BR2_HOST_CMAKE_AT_LEAST_4_3 default "4.2" if BR2_HOST_CMAKE_AT_LEAST_4_2 default "4.1" if BR2_HOST_CMAKE_AT_LEAST_4_1 diff --git a/package/cmake/cmake.hash b/package/cmake/cmake.hash index 8b6572c558..8a2942493d 100644 --- a/package/cmake/cmake.hash +++ b/package/cmake/cmake.hash @@ -1,5 +1,5 @@ -# From https://cmake.org/files/v4.3/cmake-4.3.4-SHA-256.txt -sha256 fdeff897b9eb49d764539f2b1edc6eb7e1440df325678a97c1978499e931adda cmake-4.3.4.tar.gz +# From https://cmake.org/files/v4.4/cmake-4.4.0-SHA-256.txt +sha256 65757f442fdd242e27f1728fc26dc0cba4164f7a0791a5c788631c00080369bc cmake-4.4.0.tar.gz # Locally calculated sha256 4382e7c1879ac90e3f101a395d23846fa4dbcaa1eed7265b43681e348754825d LICENSE.rst diff --git a/package/cmake/cmake.mk b/package/cmake/cmake.mk index 1422f80a70..007a1efa0b 100644 --- a/package/cmake/cmake.mk +++ b/package/cmake/cmake.mk @@ -5,8 +5,8 @@ ################################################################################ # When updating the version, please also update BR2_HOST_CMAKE_AT_LEAST_X_Y -CMAKE_VERSION_MAJOR = 4.3 -CMAKE_VERSION = $(CMAKE_VERSION_MAJOR).4 +CMAKE_VERSION_MAJOR = 4.4 +CMAKE_VERSION = $(CMAKE_VERSION_MAJOR).0 CMAKE_SITE = https://cmake.org/files/v$(CMAKE_VERSION_MAJOR) CMAKE_LICENSE = BSD-3-Clause CMAKE_LICENSE_FILES = LICENSE.rst