* [meta-oe][PATCH 1/2] libuv: update to 1.33.1
@ 2019-10-29 18:35 André Draszik
2019-10-29 18:35 ` [meta-oe][PATCH 2/2] nodejs: allow use of system libuv (and make default) André Draszik
0 siblings, 1 reply; 2+ messages in thread
From: André Draszik @ 2019-10-29 18:35 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: André Draszik <git@andred.net>
---
.../libuv/{libuv_1.32.0.bb => libuv_1.33.1.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta-oe/recipes-connectivity/libuv/{libuv_1.32.0.bb => libuv_1.33.1.bb} (90%)
diff --git a/meta-oe/recipes-connectivity/libuv/libuv_1.32.0.bb b/meta-oe/recipes-connectivity/libuv/libuv_1.33.1.bb
similarity index 90%
rename from meta-oe/recipes-connectivity/libuv/libuv_1.32.0.bb
rename to meta-oe/recipes-connectivity/libuv/libuv_1.33.1.bb
index c7fa3c10f..604568e62 100644
--- a/meta-oe/recipes-connectivity/libuv/libuv_1.32.0.bb
+++ b/meta-oe/recipes-connectivity/libuv/libuv_1.33.1.bb
@@ -4,7 +4,7 @@ BUGTRACKER = "https://github.com/libuv/libuv/issues"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=a68902a430e32200263d182d44924d47"
-SRCREV = "697bea87b3a0b0e9b4e5ff86b39d1dedb70ee46d"
+SRCREV = "07ad32138f4d2285ba2226b5e20462b27b091a59"
SRC_URI = "git://github.com/libuv/libuv;branch=v1.x"
S = "${WORKDIR}/git"
--
2.23.0.rc1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [meta-oe][PATCH 2/2] nodejs: allow use of system libuv (and make default)
2019-10-29 18:35 [meta-oe][PATCH 1/2] libuv: update to 1.33.1 André Draszik
@ 2019-10-29 18:35 ` André Draszik
0 siblings, 0 replies; 2+ messages in thread
From: André Draszik @ 2019-10-29 18:35 UTC (permalink / raw)
To: openembedded-devel
Use system libuv via PACKAGECONFIG by default. So far,
nodejs had been built using its embedded copy of libuv,
which we generally try to avoid, for the known reasons
(independent updates, cve & license checks, etc).
Signed-off-by: André Draszik <git@andred.net>
---
meta-oe/recipes-devtools/nodejs/nodejs_10.16.3.bb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta-oe/recipes-devtools/nodejs/nodejs_10.16.3.bb b/meta-oe/recipes-devtools/nodejs/nodejs_10.16.3.bb
index 6dacc2824..e86804124 100644
--- a/meta-oe/recipes-devtools/nodejs/nodejs_10.16.3.bb
+++ b/meta-oe/recipes-devtools/nodejs/nodejs_10.16.3.bb
@@ -49,9 +49,10 @@ ARCHFLAGS_arm = "${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', '-
GYP_DEFINES_append_mipsel = " mips_arch_variant='r1' "
ARCHFLAGS ?= ""
-PACKAGECONFIG ??= "ares icu zlib"
+PACKAGECONFIG ??= "ares icu libuv zlib"
PACKAGECONFIG[ares] = "--shared-cares,,c-ares"
PACKAGECONFIG[icu] = "--with-intl=system-icu,--without-intl,icu"
+PACKAGECONFIG[libuv] = "--shared-libuv,,libuv"
PACKAGECONFIG[zlib] = "--shared-zlib,,zlib"
# Node is way too cool to use proper autotools, so we install two wrappers to forcefully inject proper arch cflags to workaround gypi
--
2.23.0.rc1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-10-29 18:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-29 18:35 [meta-oe][PATCH 1/2] libuv: update to 1.33.1 André Draszik
2019-10-29 18:35 ` [meta-oe][PATCH 2/2] nodejs: allow use of system libuv (and make default) André Draszik
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.