-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tianling Shen <[email protected]>
- Loading branch information
1 parent
b24e86a
commit 6421aee
Showing
38 changed files
with
474 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
lang/node-homebridge-config-ui-x/patches/000-remove_depends.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
Oops, something went wrong.