mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 07:19:39 +01:00
The 3.10.1 version has been in Dec 13, 2017, and has a great set of features and improvements since the last upgrade. The release notes of 3.10 release is available at: https://cmake.org/cmake/help/v3.10/release/3.10.html Patches updates: - cmake-Prevent-the-detection-of-Qt5.patch: so it replaces the sed command calls inside the cmake.inc - 0001-FindCUDA-Use-find_program-if-find_host_program-is-no.patch: merged upstream, so it has been removed. - support-oe-qt4-tools-names.patch: rebased. License-checksum-change: added new contributors (From OE-Core rev: 9e58926f1cea9d5cb18cb923855d1ae98f88a8ac) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
1.0 KiB
PHP
25 lines
1.0 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"
|
|
HOMEPAGE = "http://www.cmake.org/"
|
|
BUGTRACKER = "http://public.kitware.com/Bug/my_view_page.php"
|
|
SECTION = "console/utils"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://Copyright.txt;md5=79b5b78197c74d5c5f9c7ccadeee4e8c \
|
|
file://Source/cmake.h;md5=4494dee184212fc89c469c3acd555a14;beginline=1;endline=3 \
|
|
"
|
|
|
|
CMAKE_MAJOR_VERSION = "${@'.'.join(d.getVar('PV').split('.')[0:2])}"
|
|
|
|
SRC_URI = "https://cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz \
|
|
file://support-oe-qt4-tools-names.patch \
|
|
file://qt4-fail-silent.patch \
|
|
file://cmake-Prevent-the-detection-of-Qt5.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "9a726e5ec69618b172aa4b06d18c3998"
|
|
SRC_URI[sha256sum] = "7be36ee24b0f5928251b644d29f5ff268330a916944ef4a75e23ba01e7573284"
|
|
|
|
UPSTREAM_CHECK_REGEX = "cmake-(?P<pver>\d+(\.\d+)+)\.tar"
|