summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_20.5.bb
diff options
context:
space:
mode:
authorArchana Polampalli <archana.polampalli@windriver.com>2023-09-28 09:13:04 +0000
committerArmin Kuster <akuster808@gmail.com>2023-10-04 07:52:48 -0700
commit470af9d6bb76c7d9d15fdb3ed462611f2768be67 (patch)
tree05f7152ae82ceb97e5bfd5f22ddd7df267dbe5dd /meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_20.5.bb
parent6cbcfb97a2e3e14c3965fbbfec9823f611943361 (diff)
downloadmeta-openembedded-470af9d6bb76c7d9d15fdb3ed462611f2768be67.tar.gz
nodejs: upgrade 18.17.1 -> 20.5.1
Update to latest release of latest LTS 20 release * node v20 introduces several new features and fixes many bugs and CVEs as shown in [1] * Refresh 0001-liftoff-Correct-function-signatures.patch against 20.5.1 * License-Update: - Change zlib version 1.2.13, October 13th, 2022 to version 1.2.13.1, October xxth, 2022 [2] - Change Copyright 2023 from Ada authors to Yagiz Nizipli and Daniel Lemire [4] * Remove big-endian.patch as it is merged in v20.x [5] [6] * Remove below list of patches since mips32 is deleted from v8 as part of update V8 to 10.7.193.13 [7] [8] - mips-less-memory.patch - 0001-mips-Use-32bit-cast-for-operand-on-mips32.patch * Update Using-native-binaries.patch for node_js2c, it resolved below do_compile error [9] Error: /bin/sh: line 1: build/tmp/work/core2-64-poky-linux/nodejs/20.5.1/node-v20.5.1/out/Release/node_js2c: No such file or directory * Remove obsolete dtrace & etw configure options (we had: --without-<feature>) from the recipe [10] https://github.com/nodejs/node/releases/tag/v20.5.1 [1] https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V20.md [2] https://github.com/nodejs/node/commit/f1007325753e62b13083f6e9e499fdc33f753d7d [3] https://github.com/nodejs/node/commit/900ae1bda76caaa7213431a5268560b578ed2d55 [4] https://github.com/nodejs/node/commit/d2465369243bc4313d9840b62c2393c4f179ffbb [5] https://github.com/v8/v8/commit/3cea5d5425c3a0d7d1768b3758269ac98875de77 [6] https://github.com/nodejs/node/commit/f226350fcbebd4449fb0034fdaffa147e4de28ea [7] https://github.com/v8/v8/commit/a26ca5ed147dde47f02d70c5b38d8befc1c93cb3 [8] https://github.com/nodejs/node/commit/6bd756d7c6dfb7dc25daee329ad70df68c14223e [9] https://github.com/nodejs/node/commit/4da7bc915c714989eba7eab753db9eb9ebd8451a [10] https://github.com/nodejs/node/commit/aa3a572e6bee116cde69508dc29478b40f40551a Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 13e83bd009200f42741083c5a6f1fbc653205c49) Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_20.5.bb')
-rw-r--r--meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_20.5.bb21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_20.5.bb b/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_20.5.bb
new file mode 100644
index 0000000000..a61dd5018f
--- /dev/null
+++ b/meta-oe/recipes-devtools/nodejs/nodejs-oe-cache-native_20.5.bb
@@ -0,0 +1,21 @@
1DESCRIPTION = "OE helper for manipulating npm cache"
2LICENSE = "Apache-2.0"
3LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
4
5SRC_URI = "\
6 file://oe-npm-cache \
7"
8
9inherit native
10
11B = "${WORKDIR}/build"
12
13do_configure() {
14 sed -e 's!@@libdir@@!${libdir}!g' < '${WORKDIR}/oe-npm-cache' > '${B}/oe-npm-cache'
15}
16
17do_install() {
18 install -D -p -m 0755 ${B}/oe-npm-cache ${D}${bindir}/oe-npm-cache
19}
20
21RDEPENDS:${PN} = "nodejs-native"