Skip to content

Commit

Permalink
Node.js: sync with upstream source
Browse files Browse the repository at this point in the history
Signed-off-by: Tianling Shen <[email protected]>
  • Loading branch information
1715173329 committed Dec 8, 2023
1 parent b24e86a commit 6421aee
Show file tree
Hide file tree
Showing 38 changed files with 474 additions and 99 deletions.
114 changes: 114 additions & 0 deletions lang/node-aminya-node-gyp-build/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NPM_SCOPE:=aminya
PKG_NPM_NAME:=node-gyp-build
PKG_NAME:=node-$(PKG_NPM_SCOPE)-$(PKG_NPM_NAME)
PKG_VERSION:=4.5.0-aminya.5
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NPM_SCOPE)-$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL_FILE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://registry.npmjs.org/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/-/
PKG_HASH:=b442a2bc27c07e2d904459ebde8027e268901e3a3a6faf3bac02bb6d7b1e23f7

PKG_MAINTAINER:=Hirokazu MORIKAWA <[email protected]>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE

HOST_BUILD_DEPENDS:=node/host
HOST_BUILD_PARALLEL:=1

PKG_BUILD_DEPENDS:=node/host
PKG_BUILD_PARALLEL:=1
PKG_BUILD_FLAGS:=no-mips16

include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/package.mk

define Package/node-aminya-node-gyp-build
SUBMENU:=Node.js
SECTION:=lang
CATEGORY:=Languages
TITLE:=Build tool and bindings loader for node-gyp that supports prebuilds
URL:=https://www.npmjs.com/package/@aminya/node-gyp-build
DEPENDS:=+node +node-gyp
endef

define Package/node-aminya-node-gyp-build/description
Build tool and bindings loader for node-gyp that supports prebuilds
Fork created because of https://github.com/prebuild/node-gyp-build/pull/55
endef

TAR_OPTIONS+= --strip-components 1
TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)

NODEJS_CPU:=$(subst powerpc,ppc,$(subst aarch64,arm64,$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))))
TMPNPM:=$(shell mktemp -u XXXXXXXXXX)
HOSTTMPNPM:=$(shell mktemp -u XXXXXXXXXX)
NPM_CACHE_DIR:=$(if $(call qstrip,$(CONFIG_NODEJS_NPM_CACHE_DIR)),$(call qstrip,$(CONFIG_NODEJS_NPM_CACHE_DIR)),$(TMP_DIR))

TARGET_CFLAGS+=$(FPIC)
TARGET_CPPFLAGS+=$(FPIC)

define Build/Compile
cd $(PKG_BUILD_DIR); \
$(MAKE_VARS) \
$(MAKE_FLAGS) \
npm_config_nodedir=$(STAGING_DIR)/usr/ \
$(if $(CONFIG_NODEJS_NPM_KEEP_CACHE), npm_config_cache=$(NPM_CACHE_DIR)/npm-cache-$(PKG_NPM_NAME),npm_config_cache=$(TMP_DIR)/npm-cache-$(TMPNPM)) \
npm install --prefer-offline --no-audit --global-style --install-strategy=shallow --no-save --omit=dev --no-package-lock --ignore-scripts
rm -rf $(TMP_DIR)/npm-cache-$(TMPNPM)
rm -f $(PKG_BUILD_DIR)/node_modules/.package-lock.json
find $(PKG_BUILD_DIR)/node_modules -type d -empty -print0 | xargs -0 rmdir || true
endef

define Package/node-aminya-node-gyp-build/install
$(INSTALL_DIR) $(1)/usr/lib/node/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)
$(CP) $(PKG_BUILD_DIR)/{package.json,LICENSE} \
$(1)/usr/lib/node/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/
$(CP) $(PKG_BUILD_DIR)/{*.js,*.md} \
$(1)/usr/lib/node/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/
$(INSTALL_DIR) $(1)/usr/bin
$(LN) ../lib/node/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/bin.js $(1)/usr/bin/aminya-node-gyp-build
$(LN) ../lib/node/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/optional.js $(1)/usr/bin/aminya-node-gyp-build-optional
$(LN) ../lib/node/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/build-test.js $(1)/usr/bin/aminya-node-gyp-build-test
$(INSTALL_DIR) $(1)/usr/lib/node_modules/@$(PKG_NPM_SCOPE)
$(LN) ../../node/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME) \
$(1)/usr/lib/node_modules/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)
endef

define Package/node-aminya-node-gyp-build/postrm
#!/bin/sh
rm /usr/lib/node_modules/@aminya/node-gyp-build || true
rm -rf /usr/lib/node/@aminya/node-gyp-build || true
endef

define Host/Compile
cd $(HOST_BUILD_DIR); \
$(HOST_MAKE_VARS) \
npm_config_nodedir=$(STAGING_DIR)/usr/ \
$(if $(CONFIG_NODEJS_NPM_KEEP_CACHE), npm_config_cache=$(NPM_CACHE_DIR)/host-npm-cache-$(PKG_NPM_NAME),npm_config_cache=$(TMP_DIR)/npm-cache-$(HOSTTMPNPM)) \
npm install --prefer-offline --no-audit --global-style --install-strategy=shallow --no-save --omit=dev --no-package-lock --ignore-scripts
rm -rf $(TMP_DIR)/npm-cache-$(HOSTTMPNPM)
rm -f $(HOST_BUILD_DIR)/node_modules/.package-lock.json
find $(HOST_BUILD_DIR)/node_modules -type d -empty -print0 | xargs -0 rmdir || true
endef

define Host/Install
$(INSTALL_DIR) $(1)/lib/node_modules/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)
$(CP) $(HOST_BUILD_DIR)/{package.json,LICENSE} \
$(1)/lib/node_modules/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/
$(CP) $(HOST_BUILD_DIR)/{*.js,*.md} \
$(1)/lib/node_modules/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/
$(INSTALL_DIR) $(1)/bin
$(LN) ../lib/node_modules/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/bin.js $(1)/bin/aminya-node-gyp-build
$(LN) ../lib/node_modules/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/optional.js $(1)/bin/aminya-node-gyp-build-optional
$(LN) ../lib/node_modules/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/build-test.js $(1)/bin/aminya-node-gyp-build-test
endef

$(eval $(call HostBuild))
$(eval $(call BuildPackage,node-aminya-node-gyp-build))
4 changes: 2 additions & 2 deletions lang/node-aws-sdk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ include $(TOPDIR)/rules.mk

PKG_NPM_NAME:=aws-sdk
PKG_NAME:=node-$(PKG_NPM_NAME)
PKG_VERSION:=2.1496.0
PKG_VERSION:=2.1514.0
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
PKG_HASH:=1ae2403ce31af5a7a148e26a04d1d7599bf47b680b8385948a7878193add9a57
PKG_HASH:=33a8e8aa228df702ae26cb4131050397aa24eb753d58895a915d00403c6b64d5

PKG_MAINTAINER:=Hirokazu MORIKAWA <[email protected]>
PKG_LICENSE:=Apache-2.0
Expand Down
109 changes: 109 additions & 0 deletions lang/node-cross-env/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NPM_NAME:=cross-env
PKG_NAME:=node-$(PKG_NPM_NAME)
PKG_VERSION:=7.0.3
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
PKG_HASH:=d44ad3b6925ff024f64fc4eec88a7da8b8291dd66de858c34866be611ad3c5de

PKG_MAINTAINER:=Hirokazu MORIKAWA <[email protected]>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE

HOST_BUILD_DEPENDS:=node/host
HOST_BUILD_PARALLEL:=1

PKG_BUILD_DEPENDS:=node/host
PKG_BUILD_PARALLEL:=1
PKG_BUILD_FLAGS:=no-mips16

include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/package.mk

define Package/node-cross-env
SUBMENU:=Node.js
SECTION:=lang
CATEGORY:=Languages
TITLE:=Run scripts that set and use environment variables across platforms
URL:=https://www.npmjs.com/package/cross-env
DEPENDS:=+node
endef

define Package/node-cross-env/description
Run scripts that set and use environment variables across platforms
endef

TAR_OPTIONS+= --strip-components 1
TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)

NODEJS_CPU:=$(subst powerpc,ppc,$(subst aarch64,arm64,$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))))
TMPNPM:=$(shell mktemp -u XXXXXXXXXX)
HOSTTMPNPM:=$(shell mktemp -u XXXXXXXXXX)
NPM_CACHE_DIR:=$(if $(call qstrip,$(CONFIG_NODEJS_NPM_CACHE_DIR)),$(call qstrip,$(CONFIG_NODEJS_NPM_CACHE_DIR)),$(TMP_DIR))

TARGET_CFLAGS+=$(FPIC)
TARGET_CPPFLAGS+=$(FPIC)

define Build/Compile
cd $(PKG_BUILD_DIR); \
$(MAKE_VARS) \
$(MAKE_FLAGS) \
npm_config_nodedir=$(STAGING_DIR)/usr/ \
$(if $(CONFIG_NODEJS_NPM_KEEP_CACHE), npm_config_cache=$(NPM_CACHE_DIR)/npm-cache-$(PKG_NPM_NAME),npm_config_cache=$(TMP_DIR)/npm-cache-$(TMPNPM)) \
npm install --prefer-offline --no-audit --global-style --install-strategy=shallow --no-save --omit=dev --no-package-lock --ignore-scripts
rm -rf $(TMP_DIR)/npm-cache-$(TMPNPM)
rm -f $(PKG_BUILD_DIR)/node_modules/.package-lock.json
find $(PKG_BUILD_DIR)/node_modules -type d -empty -print0 | xargs -0 rmdir || true
endef

define Package/node-cross-env/install
$(INSTALL_DIR) $(1)/usr/lib/node/$(PKG_NPM_NAME)
$(CP) $(PKG_BUILD_DIR)/{package.json,LICENSE,*.md} \
$(1)/usr/lib/node/$(PKG_NPM_NAME)/
$(CP) $(PKG_BUILD_DIR)/{src,node_modules} \
$(1)/usr/lib/node/$(PKG_NPM_NAME)/
$(INSTALL_DIR) $(1)/usr/bin
$(LN) ../lib/node/$(PKG_NPM_NAME)/src/bin/cross-env.js $(1)/usr/bin/cross-env
$(LN) ../lib/node/$(PKG_NPM_NAME)/src/bin/cross-env-shell.js $(1)/usr/bin/cross-env-shell
$(INSTALL_DIR) $(1)/usr/lib/node_modules
$(LN) ../node/$(PKG_NPM_NAME) $(1)/usr/lib/node_modules/$(PKG_NPM_NAME)
endef

define Package/node-cross-env/postrm
#!/bin/sh
rm /usr/lib/node_modules/cross-env || true
rm -rf /usr/lib/node/cross-env || true
endef

define Host/Compile
cd $(HOST_BUILD_DIR); \
$(HOST_MAKE_VARS) \
npm_config_nodedir=$(STAGING_DIR)/usr/ \
$(if $(CONFIG_NODEJS_NPM_KEEP_CACHE), npm_config_cache=$(NPM_CACHE_DIR)/host-npm-cache-$(PKG_NPM_NAME),npm_config_cache=$(TMP_DIR)/npm-cache-$(HOSTTMPNPM)) \
npm install --prefer-offline --no-audit --global-style --install-strategy=shallow --no-save --omit=dev --no-package-lock --ignore-scripts
rm -rf $(TMP_DIR)/npm-cache-$(HOSTTMPNPM)
rm -f $(HOST_BUILD_DIR)/node_modules/.package-lock.json
find $(HOST_BUILD_DIR)/node_modules -type d -empty -print0 | xargs -0 rmdir || true
endef

define Host/Install
$(INSTALL_DIR) $(1)/lib/node_modules/$(PKG_NPM_NAME)
$(CP) $(HOST_BUILD_DIR)/{package.json,LICENSE,*.md} \
$(1)/lib/node_modules/$(PKG_NPM_NAME)/
$(CP) $(HOST_BUILD_DIR)/{src,node_modules} \
$(1)/lib/node_modules/$(PKG_NPM_NAME)/
$(INSTALL_DIR) $(1)/bin
$(LN) ../lib/node_modules/$(PKG_NPM_NAME)/src/bin/cross-env.js $(1)/bin/cross-env
$(LN) ../lib/node_modules/$(PKG_NPM_NAME)/src/bin/cross-env-shell.js $(1)/bin/cross-env-shell
endef

$(eval $(call HostBuild))
$(eval $(call BuildPackage,node-cross-env))
8 changes: 4 additions & 4 deletions lang/node-gyp-build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ include $(TOPDIR)/rules.mk

PKG_NPM_NAME:=node-gyp-build
PKG_NAME:=$(PKG_NPM_NAME)
PKG_VERSION:=4.6.1
PKG_RELEASE:=1
PKG_VERSION:=4.7.1
PKG_RELEASE:=3

PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
PKG_HASH:=b34dddd54327fe46e3e868b79cbce6b57988c735f4986201e11ca1c7656140bf
PKG_HASH:=8a1c2c9eaa79ae9362e4ac8c8100bcceebd5f4d0767d7dcede1d10b9e6c5dd47

PKG_MAINTAINER:=Hirokazu MORIKAWA <[email protected]>
PKG_LICENSE:=MIT
Expand All @@ -34,7 +34,7 @@ define Package/node-gyp-build
CATEGORY:=Languages
TITLE:=Build tool and bindings loader for node-gyp that supports prebuilds
URL:=https://www.npmjs.com/package/node-gyp-build
DEPENDS:=+node
DEPENDS:=+node +node-gyp
endef

define Package/node-gyp-build/description
Expand Down
4 changes: 2 additions & 2 deletions lang/node-hid/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ include $(TOPDIR)/rules.mk

PKG_NPM_NAME:=node-hid
PKG_NAME:=$(PKG_NPM_NAME)
PKG_VERSION:=2.1.2
PKG_VERSION:=3.0.0
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
PKG_HASH:=a10c108bb98146af5419eedf5a3a288b14bc94258c126e11939d5b8caa814505
PKG_HASH:=251c1cb8f81fd7c778f7db52c71dc47de63ff31f0d817ca566594f4fd05e2fee

PKG_MAINTAINER:=Hirokazu MORIKAWA <[email protected]>
PKG_LICENSE:=MIT OR X11
Expand Down
4 changes: 2 additions & 2 deletions lang/node-homebridge-config-ui-x/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ include $(TOPDIR)/rules.mk

PKG_NPM_NAME:=homebridge-config-ui-x
PKG_NAME:=node-$(PKG_NPM_NAME)
PKG_VERSION:=4.52.3
PKG_VERSION:=4.54.0
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
PKG_HASH:=01e5c010af08dc544cc2f639a2e83f4bd7d5a82870a7e8ce732a4a78bcce2312
PKG_HASH:=fb823874572f6abd710b2d12ebe33f6c3f642d81eaf3c24787c7a05942195b17

PKG_BUILD_DEPENDS:=node/host node-clean-modules/host
PKG_BUILD_FLAGS:=no-mips16
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
--- a/package.json
+++ b/package.json
@@ -56,7 +56,6 @@
@@ -57,7 +57,6 @@
"@fastify/helmet": "11.1.1",
"@fastify/multipart": "8.0.0",
"@fastify/static": "6.12.0",
"@fastify/swagger": "8.12.0",
- "@homebridge/node-pty-prebuilt-multiarch": "0.11.10",
- "@homebridge/node-pty-prebuilt-multiarch": "0.11.12",
"@nestjs/axios": "3.0.1",
"@nestjs/common": "10.2.8",
"@nestjs/core": "10.2.8",
"@nestjs/common": "10.2.10",
"@nestjs/core": "10.2.10",
4 changes: 2 additions & 2 deletions lang/node-homebridge-hue/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ include $(TOPDIR)/rules.mk

PKG_NPM_NAME:=homebridge-hue
PKG_NAME:=node-$(PKG_NPM_NAME)
PKG_VERSION:=0.13.68
PKG_VERSION:=0.13.69
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
PKG_HASH:=5a0d07c387fbea849c003fbf9840a81624a6f33e54d5165d0d7c79444f723306
PKG_HASH:=65fa9168e069a8b331291c02a55d817b4fa982b6e50a013a10720d417125bc2e

PKG_MAINTAINER:=Hirokazu MORIKAWA <[email protected]>
PKG_LICENSE:=Apache-2.0
Expand Down
4 changes: 2 additions & 2 deletions lang/node-homebridge-node-pty-prebuilt-multiarch/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ include $(TOPDIR)/rules.mk
PKG_NPM_SCOPE:=homebridge
PKG_NPM_NAME:=node-pty-prebuilt-multiarch
PKG_NAME:=node-$(PKG_NPM_SCOPE)-$(PKG_NPM_NAME)
PKG_VERSION:=0.11.11
PKG_VERSION:=0.11.12
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NPM_SCOPE)-$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL_FILE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://registry.npmjs.org/@$(PKG_NPM_SCOPE)/$(PKG_NPM_NAME)/-/
PKG_HASH:=5c6742cc3f478b8a0dd12b4b015208340d12ea531bb5dbaaa08936af82b70752
PKG_HASH:=ee575002d843ff8cd8ab620909c075473c3f81e4bea43e07af64c5972c127568

PKG_MAINTAINER:=Hirokazu MORIKAWA <[email protected]>
PKG_LICENSE:=MIT
Expand Down
2 changes: 1 addition & 1 deletion lang/node-homebridge/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
PKG_NPM_NAME:=homebridge
PKG_NAME:=node-$(PKG_NPM_NAME)
PKG_VERSION:=1.7.0
PKG_RELEASE:=1
PKG_RELEASE:=2

PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
Expand Down
2 changes: 1 addition & 1 deletion lang/node-homebridge/files/homebridge.init
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ start_service() {
}
procd_open_instance
procd_set_param env HOME=/usr/share/homebridge
procd_set_param command /usr/bin/homebridge -U /usr/share/homebridge
procd_set_param command /usr/bin/node --optimize_for_size --max_old_space_size=128 --gc_interval=100 /usr/bin/homebridge -U /usr/share/homebridge
procd_set_param user homebridge
procd_set_param stdout 1
procd_set_param stderr 1
Expand Down
4 changes: 2 additions & 2 deletions lang/node-lambda/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ include $(TOPDIR)/rules.mk

PKG_NPM_NAME:=node-lambda
PKG_NAME:=$(PKG_NPM_NAME)
PKG_VERSION:=1.2.0
PKG_VERSION:=1.2.1
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
PKG_HASH:=d59b907104f05eaaf13d08931a02097cd3c7dceae6d803cc4afba3fa45072eac
PKG_HASH:=56da1b3497f054f03caa24716e35a9082e861e1bbbfb658a9a9d8250531bb527

PKG_MAINTAINER:=Hirokazu MORIKAWA <[email protected]>
PKG_LICENSE:=BSD-2-Clause
Expand Down
4 changes: 2 additions & 2 deletions lang/node-modbus-serial/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ include $(TOPDIR)/rules.mk

PKG_NPM_NAME:=modbus-serial
PKG_NAME:=node-$(PKG_NPM_NAME)
PKG_VERSION:=8.0.13
PKG_VERSION:=8.0.16
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
PKG_HASH:=ab2e4e644c89b4115ab53a7d5d30a88fb6712c0824cc2e5217d403114d81b2af
PKG_HASH:=16927b135021e37b5f39156e658eb127b8305d36db5721ce9272328da4c3c90d

PKG_MAINTAINER:=Hirokazu MORIKAWA <[email protected]>
PKG_LICENSE:=ISC
Expand Down
Loading

0 comments on commit 6421aee

Please sign in to comment.