diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-07-15 16:08:12 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-07-17 10:41:18 +0100 |
| commit | d3a2e5b032bf1d1fc77c67ad7fec454075410119 (patch) | |
| tree | e2c6bb1403ecbe07f66d302e68dc9fc29c0f5df3 /meta/recipes-devtools/ninja/ninja_1.13.1.bb | |
| parent | a4be3f9e7b0c2d5463756ae6d1078add3ecbba6a (diff) | |
| download | poky-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.bb | 35 |
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 @@ | |||
| 1 | SUMMARY = "Ninja is a small build system with a focus on speed." | ||
| 2 | HOMEPAGE = "https://ninja-build.org/" | ||
| 3 | DESCRIPTION = "Ninja is a small build system with a focus on speed. \ | ||
| 4 | It differs from other build systems in two major respects: \ | ||
| 5 | it is designed to have its input files generated by a higher-level build system, \ | ||
| 6 | and it is designed to run builds as fast as possible." | ||
| 7 | |||
| 8 | LICENSE = "Apache-2.0" | ||
| 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" | ||
| 10 | |||
| 11 | DEPENDS = "re2c-native ninja-native" | ||
| 12 | |||
| 13 | SRCREV = "79feac0f3e3bc9da9effc586cd5fea41e7550051" | ||
| 14 | |||
| 15 | SRC_URI = "git://github.com/ninja-build/ninja.git;branch=release;protocol=https;tag=v${PV}" | ||
| 16 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)" | ||
| 17 | |||
| 18 | do_configure[noexec] = "1" | ||
| 19 | |||
| 20 | do_compile:class-native() { | ||
| 21 | python3 ./configure.py --bootstrap | ||
| 22 | } | ||
| 23 | |||
| 24 | do_compile() { | ||
| 25 | python3 ./configure.py | ||
| 26 | ninja | ||
| 27 | } | ||
| 28 | |||
| 29 | do_install() { | ||
| 30 | install -D -m 0755 ${S}/ninja ${D}${bindir}/ninja | ||
| 31 | } | ||
| 32 | |||
| 33 | BBCLASSEXTEND = "native nativesdk" | ||
| 34 | |||
| 35 | CVE_STATUS[CVE-2021-4336] = "cpe-incorrect: This is a different Ninja" | ||
