summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/ninja/ninja_1.13.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-07-15 16:08:12 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-07-17 10:41:18 +0100
commitd3a2e5b032bf1d1fc77c67ad7fec454075410119 (patch)
treee2c6bb1403ecbe07f66d302e68dc9fc29c0f5df3 /meta/recipes-devtools/ninja/ninja_1.13.1.bb
parenta4be3f9e7b0c2d5463756ae6d1078add3ecbba6a (diff)
downloadpoky-d3a2e5b032bf1d1fc77c67ad7fec454075410119.tar.gz
ninja: upgrade 1.13.0 -> 1.13.1
(From OE-Core rev: 4b0a2f67cba6d126f06d38413eab36eff09bd217) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/ninja/ninja_1.13.1.bb')
-rw-r--r--meta/recipes-devtools/ninja/ninja_1.13.1.bb35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/ninja/ninja_1.13.1.bb b/meta/recipes-devtools/ninja/ninja_1.13.1.bb
new file mode 100644
index 0000000000..dcaa889c04
--- /dev/null
+++ b/meta/recipes-devtools/ninja/ninja_1.13.1.bb
@@ -0,0 +1,35 @@
1SUMMARY = "Ninja is a small build system with a focus on speed."
2HOMEPAGE = "https://ninja-build.org/"
3DESCRIPTION = "Ninja is a small build system with a focus on speed. \
4It differs from other build systems in two major respects: \
5it is designed to have its input files generated by a higher-level build system, \
6and it is designed to run builds as fast as possible."
7
8LICENSE = "Apache-2.0"
9LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e"
10
11DEPENDS = "re2c-native ninja-native"
12
13SRCREV = "79feac0f3e3bc9da9effc586cd5fea41e7550051"
14
15SRC_URI = "git://github.com/ninja-build/ninja.git;branch=release;protocol=https;tag=v${PV}"
16UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)"
17
18do_configure[noexec] = "1"
19
20do_compile:class-native() {
21 python3 ./configure.py --bootstrap
22}
23
24do_compile() {
25 python3 ./configure.py
26 ninja
27}
28
29do_install() {
30 install -D -m 0755 ${S}/ninja ${D}${bindir}/ninja
31}
32
33BBCLASSEXTEND = "native nativesdk"
34
35CVE_STATUS[CVE-2021-4336] = "cpe-incorrect: This is a different Ninja"