From: Hirokazu MORIKAWA Date: Mon, 26 Aug 2024 02:26:15 +0000 (+0900) Subject: node: bump to v20.17.0 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=0d50f273b23c5fda819264914f63db514d7e7ba8;p=openwrt-packages.git node: bump to v20.17.0 Notable Changes module: support require()ing synchronous ESM graphs path: add matchesGlob method stream: expose DuplexPair API Signed-off-by: Hirokazu MORIKAWA --- diff --git a/lang/node/Makefile b/lang/node/Makefile index 3530a6ee2..ae149edf2 100644 --- a/lang/node/Makefile +++ b/lang/node/Makefile @@ -8,12 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=node -PKG_VERSION:=v20.16.0 +PKG_VERSION:=20.17.0 PKG_RELEASE:=1 -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=https://nodejs.org/dist/$(PKG_VERSION) -PKG_HASH:=8f24bf9abe455a09ab30f9ae8edda1e945ed678a4b1c3b07ee0f901fdc0ff4fd +PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://nodejs.org/dist/v$(PKG_VERSION) +PKG_HASH:=409bda5f1896c7c20866610d778d1760991884ad2e7940837cd3f2854cf73747 +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION) +HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-v$(PKG_VERSION) PKG_MAINTAINER:=Hirokazu MORIKAWA , Adrian Panella PKG_LICENSE:=MIT diff --git a/lang/node/patches/003-path.patch b/lang/node/patches/003-path.patch index e36bcf10b..e60ae236b 100644 --- a/lang/node/patches/003-path.patch +++ b/lang/node/patches/003-path.patch @@ -1,6 +1,6 @@ --- a/lib/internal/modules/cjs/loader.js +++ b/lib/internal/modules/cjs/loader.js -@@ -1518,7 +1518,8 @@ Module._initPaths = function() { +@@ -1650,7 +1650,8 @@ Module._initPaths = function() { path.resolve(process.execPath, '..') : path.resolve(process.execPath, '..', '..');