nodeenv: update to 1.7.0.
This commit is contained in:
parent
b2ec76a8bc
commit
cf81c868b4
2 changed files with 21 additions and 15 deletions
|
@ -1,5 +1,5 @@
|
||||||
--- a/tests/nodeenv_test.py.orig 2021-04-09 01:10:31.000000000 -0700
|
--- a/tests/nodeenv_test.py
|
||||||
+++ b/tests/nodeenv_test.py 2021-11-06 15:08:23.169976189 -0700
|
+++ b/tests/nodeenv_test.py
|
||||||
@@ -108,7 +108,7 @@ def test_mirror_option():
|
@@ -108,7 +108,7 @@ def test_mirror_option():
|
||||||
('',
|
('',
|
||||||
'https://nodejs.org/download/release/index.json')]
|
'https://nodejs.org/download/release/index.json')]
|
||||||
|
@ -9,9 +9,9 @@
|
||||||
# Check if running on musl system and delete last mirror if it is
|
# Check if running on musl system and delete last mirror if it is
|
||||||
if sys_type in musl_type:
|
if sys_type in musl_type:
|
||||||
urls.pop()
|
urls.pop()
|
||||||
--- a/nodeenv.py.orig 2021-04-09 01:10:31.000000000 -0700
|
--- a/nodeenv.py
|
||||||
+++ b/nodeenv.py 2021-12-06 12:55:47.748645252 -0700
|
+++ b/nodeenv.py
|
||||||
@@ -510,8 +510,21 @@ def get_root_url(version):
|
@@ -526,8 +526,21 @@ def get_root_url(version):
|
||||||
return src_base_url
|
return src_base_url
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
|
|
||||||
def get_node_bin_url(version):
|
def get_node_bin_url(version):
|
||||||
@@ -1057,13 +1070,17 @@ def main():
|
@@ -1082,13 +1095,17 @@ def main():
|
||||||
else:
|
else:
|
||||||
src_domain = opt.mirror
|
src_domain = opt.mirror
|
||||||
# use unofficial builds only if musl and no explicitly chosen mirror
|
# use unofficial builds only if musl and no explicitly chosen mirror
|
||||||
|
@ -46,10 +46,10 @@
|
||||||
if src_base_url is None:
|
if src_base_url is None:
|
||||||
src_base_url = 'https://%s/download/release' % src_domain
|
src_base_url = 'https://%s/download/release' % src_domain
|
||||||
|
|
||||||
+ if opt.prebuilt and is_musl() and not is_x86_64_musl():
|
+ if args.prebuilt and is_musl() and not is_x86_64_musl():
|
||||||
+ logger.error('No prebuilt Node.js for MUSL libc exists!')
|
+ logger.error('No prebuilt Node.js for MUSL libc exists!')
|
||||||
+ exit(1)
|
+ exit(1)
|
||||||
+
|
+
|
||||||
if not opt.node or opt.node.lower() == 'latest':
|
if not args.node or args.node.lower() == 'latest':
|
||||||
opt.node = get_last_stable_node_version()
|
args.node = get_last_stable_node_version()
|
||||||
elif opt.node.lower() == 'lts':
|
elif args.node.lower() == 'lts':
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'nodeenv'
|
# Template file for 'nodeenv'
|
||||||
pkgname=nodeenv
|
pkgname=nodeenv
|
||||||
version=1.6.0
|
version=1.7.0
|
||||||
revision=2
|
revision=1
|
||||||
build_style=python3-module
|
build_style=python3-module
|
||||||
hostmakedepends="python3-setuptools"
|
hostmakedepends="python3-setuptools"
|
||||||
depends="make python3-setuptools"
|
depends="make python3-setuptools"
|
||||||
|
@ -9,9 +9,15 @@ checkdepends="nodejs python3-coverage python3-mock python3-pytest which"
|
||||||
short_desc="Node.js virtual environment builder"
|
short_desc="Node.js virtual environment builder"
|
||||||
maintainer="Joseph Benden <joe@benden.us>"
|
maintainer="Joseph Benden <joe@benden.us>"
|
||||||
license="BSD-3-Clause"
|
license="BSD-3-Clause"
|
||||||
homepage="https://github.com/ekalinin/nodeenv"
|
homepage="https://ekalinin.github.io/nodeenv/"
|
||||||
distfiles="https://github.com/ekalinin/nodeenv/archive/${version}.tar.gz"
|
distfiles="https://github.com/ekalinin/nodeenv/archive/refs/tags/${version}.tar.gz"
|
||||||
checksum=87b04b0832d38bd825e004e7c8ed82d75524efaa6b8a72e3a55088d93e4e17f7
|
checksum=a9e9e36e1be6439e877c53e7f27ce068f75b82cc08201f2c68471687199cfd7b
|
||||||
|
|
||||||
|
if [ "$XBPS_WORDSIZE" -eq 32 ]; then
|
||||||
|
# nodejs upstream doesn't provide 32-bit pre-built binaries
|
||||||
|
# for linux, which is required for testing
|
||||||
|
make_check=no
|
||||||
|
fi
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vlicense LICENSE
|
vlicense LICENSE
|
||||||
|
|
Loading…
Add table
Reference in a new issue