package/cmake: bump version to 3.27.1
Updated license hash due to various commits since Feb 08, 2021:
https://gitlab.kitware.com/cmake/cmake/-/commits/v3.27.0/Copyright.txt
Added option to disable optional cppdap support, buildroot does not
provide this package. Needed due to upstream commit:
5ec69eb58c
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
4ce0dacb60
commit
bb90cbdaa3
@ -12,10 +12,12 @@ This buildroot-specific patch makes sure ctest looks also for
|
||||
|
||||
[Vincent: tweak patch for 3.6.3]
|
||||
[James: tweak patch for 3.15.4]
|
||||
[Bernd: tweak patch for 3.27.0]
|
||||
|
||||
Signed-off-by: Davide Viti <zinosat@tiscali.it>
|
||||
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
||||
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
|
||||
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
|
||||
---
|
||||
Source/cmake.cxx | 7 ++++++-
|
||||
1 file changed, 6 insertions(+), 1 deletion(-)
|
||||
@ -24,8 +26,8 @@ diff --git a/Source/cmake.cxx b/Source/cmake.cxx
|
||||
index 3772f09985..c317e4af38 100644
|
||||
--- a/Source/cmake.cxx
|
||||
+++ b/Source/cmake.cxx
|
||||
@@ -1009,7 +1009,12 @@ int cmake::AddCMakePaths()
|
||||
"Path to cpack program executable.", cmStateEnums::INTERNAL);
|
||||
@@ -1891,7 +1891,12 @@ int cmake::AddCMakePaths()
|
||||
cmStateEnums::INTERNAL);
|
||||
#endif
|
||||
if (!cmSystemTools::FileExists(
|
||||
- (cmSystemTools::GetCMakeRoot() + "/Modules/CMake.cmake"))) {
|
||||
|
@ -27,10 +27,35 @@ config BR2_HOST_CMAKE_AT_LEAST_3_22
|
||||
bool
|
||||
select BR2_HOST_CMAKE_AT_LEAST_3_21
|
||||
|
||||
config BR2_HOST_CMAKE_AT_LEAST_3_23
|
||||
bool
|
||||
select BR2_HOST_CMAKE_AT_LEAST_3_22
|
||||
|
||||
config BR2_HOST_CMAKE_AT_LEAST_3_24
|
||||
bool
|
||||
select BR2_HOST_CMAKE_AT_LEAST_3_23
|
||||
|
||||
config BR2_HOST_CMAKE_AT_LEAST_3_25
|
||||
bool
|
||||
select BR2_HOST_CMAKE_AT_LEAST_3_24
|
||||
|
||||
config BR2_HOST_CMAKE_AT_LEAST_3_26
|
||||
bool
|
||||
select BR2_HOST_CMAKE_AT_LEAST_3_25
|
||||
|
||||
config BR2_HOST_CMAKE_AT_LEAST_3_27
|
||||
bool
|
||||
select BR2_HOST_CMAKE_AT_LEAST_3_26
|
||||
|
||||
# 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 "3.27" if BR2_HOST_CMAKE_AT_LEAST_3_27
|
||||
default "3.26" if BR2_HOST_CMAKE_AT_LEAST_3_26
|
||||
default "3.25" if BR2_HOST_CMAKE_AT_LEAST_3_25
|
||||
default "3.24" if BR2_HOST_CMAKE_AT_LEAST_3_24
|
||||
default "3.23" if BR2_HOST_CMAKE_AT_LEAST_3_23
|
||||
default "3.22" if BR2_HOST_CMAKE_AT_LEAST_3_22
|
||||
default "3.21" if BR2_HOST_CMAKE_AT_LEAST_3_21
|
||||
default "3.20" if BR2_HOST_CMAKE_AT_LEAST_3_20
|
||||
|
@ -1,5 +1,5 @@
|
||||
# From https://cmake.org/files/v3.22/cmake-3.22.3-SHA-256.txt
|
||||
sha256 9f8469166f94553b6978a16ee29227ec49a2eb5ceb608275dec40d8ae0d1b5a0 cmake-3.22.3.tar.gz
|
||||
# From https://cmake.org/files/v3.27/cmake-3.27.1-SHA-256.txt
|
||||
sha256 b1a6b0135fa11b94476e90f5b32c4c8fad480bf91cf22d0ded98ce22c5132004 cmake-3.27.1.tar.gz
|
||||
|
||||
# Locally calculated
|
||||
sha256 f1a4326266aada65b307dac05161a9d02d3dba4fb08b50cb26e3c24cc8a86e97 Copyright.txt
|
||||
sha256 4a01ccf2dc580ba570d02bc015bbe0ec92f1f318717aae9540ba841ba7946756 Copyright.txt
|
||||
|
@ -5,8 +5,8 @@
|
||||
################################################################################
|
||||
|
||||
# When updating the version, please also update BR2_HOST_CMAKE_AT_LEAST_X_Y
|
||||
CMAKE_VERSION_MAJOR = 3.22
|
||||
CMAKE_VERSION = $(CMAKE_VERSION_MAJOR).3
|
||||
CMAKE_VERSION_MAJOR = 3.27
|
||||
CMAKE_VERSION = $(CMAKE_VERSION_MAJOR).1
|
||||
CMAKE_SITE = https://cmake.org/files/v$(CMAKE_VERSION_MAJOR)
|
||||
CMAKE_LICENSE = BSD-3-Clause
|
||||
CMAKE_LICENSE_FILES = Copyright.txt
|
||||
@ -33,6 +33,7 @@ CMAKE_CONF_OPTS = \
|
||||
-DKWSYS_CHAR_IS_SIGNED=TRUE \
|
||||
-DCMAKE_USE_SYSTEM_LIBRARIES=1 \
|
||||
-DCTEST_USE_XMLRPC=OFF \
|
||||
-DCMake_ENABLE_DEBUGGER=0 \
|
||||
-DBUILD_CursesDialog=OFF
|
||||
|
||||
# Get rid of -I* options from $(HOST_CPPFLAGS) to prevent that a
|
||||
|
Loading…
Reference in New Issue
Block a user