Mk: unregister expired nodejs 14
This commit is contained in:
parent
c11f3d7c8f
commit
a753989eff
2 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
# - build use node as build-time dependency
|
||||
# - run use node as runtime dependency
|
||||
# - env set the environment (NODEJS_VERSION and NODEJS_SUFFIX)
|
||||
# - version available version: lts, current, 14, 16, 18, 19, 20
|
||||
# - version available version: lts, current, 16, 18, 19, 20
|
||||
#
|
||||
# Note:
|
||||
# - The supported versions follow upstream release schedule
|
||||
|
@ -22,13 +22,13 @@
|
|||
.if !defined(_INCLUDE_USES_NODEJS_MK)
|
||||
_INCLUDE_USES_NODEJS_MK= yes
|
||||
|
||||
_VALID_NODEJS_VERSIONS= 14 16 18 19 20 current lts
|
||||
_VALID_NODEJS_VERSIONS= 16 18 19 20 current lts
|
||||
|
||||
. if ! ${_VALID_NODEJS_VERSIONS:M${NODEJS_DEFAULT}}
|
||||
IGNORE= Invalid default nodejs version ${NODEJS_DEFAULT}; valid versions are ${_VALID_NODEJS_VERSIONS}
|
||||
. endif
|
||||
|
||||
. if !empty(nodejs_ARGS:Nbuild:Nenv:Nrun:Nlts:Ncurrent:N14:N16:N18:N19:N20)
|
||||
. if !empty(nodejs_ARGS:Nbuild:Nenv:Nrun:Nlts:Ncurrent:N16:N18:N19:N20)
|
||||
IGNORE= USES=nodejs has invalid arguments ${nodejs_ARGS}
|
||||
. endif
|
||||
|
||||
|
|
|
@ -97,7 +97,7 @@ MONO_DEFAULT?= 5.10
|
|||
MYSQL_DEFAULT?= 8.0
|
||||
# Possible values: ninja, samurai
|
||||
NINJA_DEFAULT?= ninja
|
||||
# Possible value: 14, 16, 18, 19, 20, current, lts (Note: current = 20 and lts = 18)
|
||||
# Possible value: 16, 18, 19, 20, current, lts (Note: current = 20 and lts = 18)
|
||||
NODEJS_DEFAULT?= lts
|
||||
# Possible value: 24, 25, 26
|
||||
OPENLDAP_DEFAULT?= 26
|
||||
|
|
Loading…
Reference in a new issue