mirror of
https://git.yoctoproject.org/poky
synced 2026-03-28 19:02:22 +01:00
Changes made since CMake 3.27.6: Brad King (6): Android: Require Clang 18 for -std=c++23 Tests: Clarify RunCMake.CTestTimeout case name ctest: Restore support for --timeout values higher than default test timeout Help: Document CMP0124 behavior on already-set variables FindPostgreSQL: Add support for version 16 CMake 3.27.7 Orkun Tokdemir (1): Linting: Fix empty evaluated genex (From OE-Core rev: 3f3f3118dd6976259e8d971ebf76f2eeaf96f930) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> (cherry picked from commit 0faec0c8606b31216702252d0db7aa88388df231) Signed-off-by: Steve Sakoman <steve@sakoman.com>
27 lines
1.2 KiB
PHP
27 lines
1.2 KiB
PHP
# Copyright (C) 2005, Koninklijke Philips Electronics NV. All Rights Reserved
|
|
# Released under the MIT license (see packages/COPYING)
|
|
|
|
SUMMARY = "Cross-platform, open-source make system"
|
|
DESCRIPTION = "CMake is used to control the software compilation process \
|
|
using simple platform and compiler independent configuration files. CMake \
|
|
generates native makefiles and workspaces that can be used in the compiler \
|
|
environment of your choice."
|
|
HOMEPAGE = "http://www.cmake.org/"
|
|
BUGTRACKER = "http://public.kitware.com/Bug/my_view_page.php"
|
|
SECTION = "console/utils"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://Copyright.txt;md5=9d3d12c5f3b4c1f83650adcc65b59c06 \
|
|
file://Source/cmake.h;beginline=1;endline=2;md5=a5f70e1fef8614734eae0d62b4f5891b \
|
|
"
|
|
|
|
CMAKE_MAJOR_VERSION = "${@'.'.join(d.getVar('PV').split('.')[0:2])}"
|
|
|
|
SRC_URI = "https://cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "08f71a106036bf051f692760ef9558c0577c42ac39e96ba097e7662bd4158d8e"
|
|
|
|
UPSTREAM_CHECK_REGEX = "cmake-(?P<pver>\d+(\.\d+)+)\.tar"
|
|
|
|
CVE_STATUS[CVE-2016-10642] = "cpe-incorrect: This is specific to the npm package that installs cmake, so isn't relevant to OpenEmbedded"
|