@nodenv/node-build 5.0.4 → 5.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -117,29 +117,30 @@ definitions.
117
117
 
118
118
  The build process may be configured through the following environment variables:
119
119
 
120
- | Variable | Function |
121
- | ------------------------ | -------------------------------------------------------------------------------------------------- |
122
- | `TMPDIR` | Where temporary files are stored. |
123
- | `NODE_BUILD_BUILD_PATH` | Where sources are downloaded and built. (Default: a timestamped subdirectory of `TMPDIR`) |
124
- | `NODE_BUILD_CACHE_PATH` | Where to cache downloaded package files. (Default: `~/.nodenv/cache` if invoked as nodenv plugin) |
125
- | `NODE_BUILD_HTTP_CLIENT` | One of `aria2c`, `curl`, or `wget` to use for downloading. (Default: first one found in PATH) |
126
- | `NODE_BUILD_ARIA2_OPTS` | Additional options to pass to `aria2c` for downloading. |
127
- | `NODE_BUILD_CURL_OPTS` | Additional options to pass to `curl` for downloading. |
128
- | `NODE_BUILD_WGET_OPTS` | Additional options to pass to `wget` for downloading. |
129
- | `NODE_BUILD_MIRROR_CMD` | A command to construct the package mirror URL. |
130
- | `NODE_BUILD_MIRROR_URL` | Custom mirror URL root. |
131
- | `NODE_BUILD_SKIP_MIRROR` | Bypass the download mirror and fetch all package files from their original URLs. |
132
- | `NODE_BUILD_ROOT` | Custom build definition directory. (Default: `share/node-build`) |
133
- | `NODE_BUILD_DEFINITIONS` | Additional paths to search for build definitions. (Colon-separated list) |
134
- | `CC` | Path to the C compiler. |
135
- | `NODE_CFLAGS` | Additional `CFLAGS` options (_e.g.,_ to override `-O3`). |
136
- | `CONFIGURE_OPTS` | Additional `./configure` options. |
137
- | `MAKE` | Custom `make` command (_e.g.,_ `gmake`). |
138
- | `MAKE_OPTS` / `MAKEOPTS` | Additional `make` options. |
139
- | `MAKE_INSTALL_OPTS` | Additional `make install` options. |
140
- | `NODE_CONFIGURE_OPTS` | Additional `./configure` options (applies only to Node source). |
141
- | `NODE_MAKE_OPTS` | Additional `make` options (applies only to Node source). |
142
- | `NODE_MAKE_INSTALL_OPTS` | Additional `make install` options (applies only to Node source). |
120
+ | Variable | Function |
121
+ | ------------------------------- | -------------------------------------------------------------------------------------------------- |
122
+ | `TMPDIR` | Where temporary files are stored. |
123
+ | `NODE_BUILD_BUILD_PATH` | Where sources are downloaded and built. (Default: a timestamped subdirectory of `TMPDIR`) |
124
+ | `NODE_BUILD_CACHE_PATH` | Where to cache downloaded package files. (Default: `~/.nodenv/cache` if invoked as nodenv plugin) |
125
+ | `NODE_BUILD_HTTP_CLIENT` | One of `aria2c`, `curl`, or `wget` to use for downloading. (Default: first one found in PATH) |
126
+ | `NODE_BUILD_ARIA2_OPTS` | Additional options to pass to `aria2c` for downloading. |
127
+ | `NODE_BUILD_CURL_OPTS` | Additional options to pass to `curl` for downloading. |
128
+ | `NODE_BUILD_WGET_OPTS` | Additional options to pass to `wget` for downloading. |
129
+ | `NODE_BUILD_MIRROR_CMD` | A command to construct the package mirror URL. |
130
+ | `NODE_BUILD_MIRROR_URL` | Custom mirror URL root. |
131
+ | `NODE_BUILD_MIRROR_PACKAGE_URL` | Custom complete mirror URL (e.g. http://mirror.example.com/package-1.0.0.tar.gz). |
132
+ | `NODE_BUILD_SKIP_MIRROR` | Bypass the download mirror and fetch all package files from their original URLs. |
133
+ | `NODE_BUILD_ROOT` | Custom build definition directory. (Default: `share/node-build`) |
134
+ | `NODE_BUILD_DEFINITIONS` | Additional paths to search for build definitions. (Colon-separated list) |
135
+ | `CC` | Path to the C compiler. |
136
+ | `NODE_CFLAGS` | Additional `CFLAGS` options (_e.g.,_ to override `-O3`). |
137
+ | `CONFIGURE_OPTS` | Additional `./configure` options. |
138
+ | `MAKE` | Custom `make` command (_e.g.,_ `gmake`). |
139
+ | `MAKE_OPTS` / `MAKEOPTS` | Additional `make` options. |
140
+ | `MAKE_INSTALL_OPTS` | Additional `make install` options. |
141
+ | `NODE_CONFIGURE_OPTS` | Additional `./configure` options (applies only to Node source). |
142
+ | `NODE_MAKE_OPTS` | Additional `make` options (applies only to Node source). |
143
+ | `NODE_MAKE_INSTALL_OPTS` | Additional `make install` options (applies only to Node source). |
143
144
 
144
145
  #### Applying Patches
145
146
 
@@ -169,21 +170,17 @@ definition. All definitions bundled with node-build include checksums.
169
170
 
170
171
  #### Package Mirrors
171
172
 
172
- By default, node-build downloads package files from the official URL specified in the definition file.
173
+ To speed up downloads, node-build can fetch package files from a mirror.
174
+ To benefit from this, the packages must specify their checksum:
173
175
 
174
176
  ```sh
175
177
  # example:
176
178
  install_package "node-v12.0.0" "https://nodejs.org/dist/v12.0.0/node-v12.0.0.tar.gz#<SHA2>"
177
179
  ```
178
180
 
179
- node-build will attempt to construct a mirror url by invoking `NODE_BUILD_MIRROR_CMD` with two arguments: `package_url` and `checksum`.
180
- The provided command should print the desired mirror's complete package URL.
181
- If `NODE_BUILD_MIRROR_CMD` is unset, package mirror URL construction defaults to replacing `https://nodejs.org/dist` with `NODE_BUILD_MIRROR_URL`.
182
-
183
181
  node-build will first try to fetch this package from `$NODE_BUILD_MIRROR_URL/<SHA2>`
184
- (note: this is the complete URL), where `<SHA2>` is the checksum for the file.
185
-
186
- It will fall back to downloading the package from the original location if:
182
+ (note: this is the complete URL), where `<SHA2>` is the checksum for the file. It
183
+ will fall back to downloading the package from the original location if:
187
184
  - the package was not found on the mirror;
188
185
  - the mirror is down;
189
186
  - the download is corrupt, i.e. the file's checksum doesn't match;
@@ -192,6 +189,15 @@ It will fall back to downloading the package from the original location if:
192
189
 
193
190
  You may specify a custom mirror by setting `NODE_BUILD_MIRROR_URL`.
194
191
 
192
+ If a mirror site doesn't conform to the above URL format, you can specify the
193
+ complete URL by setting `NODE_BUILD_MIRROR_PACKAGE_URL`. It behaves the same as
194
+ `NODE_BUILD_MIRROR_URL` except being a complete URL.
195
+
196
+ For more control over the construction of the mirror url, you can specify a command
197
+ by setting `NODE_BUILD_MIRROR_CMD`. node-build will invoke `NODE_BUILD_MIRROR_CMD`
198
+ with two arguments: `package_url` and `checksum`. The provided command should
199
+ print the desired mirror's complete package URL to `STDOUT`.
200
+
195
201
  #### Keeping the build directory after installation
196
202
 
197
203
  Both `node-build` and `nodenv install` accept the `-k` or `--keep` flag, which
package/bin/node-build CHANGED
@@ -15,13 +15,14 @@
15
15
  # --version Show version of node-build
16
16
  #
17
17
 
18
- NODE_BUILD_VERSION=5.0.4
18
+ NODE_BUILD_VERSION=5.2.0
19
19
 
20
20
  OLDIFS="$IFS"
21
21
 
22
22
  set -E
23
23
  exec 3<&2 # preserve original stderr at fd 3
24
24
 
25
+
25
26
  lib() {
26
27
  parse_options() {
27
28
  OPTIONS=()
@@ -213,7 +214,11 @@ mirror() {
213
214
  local package_url="$1"
214
215
  local checksum="$2"
215
216
 
216
- echo "${package_url/https:\/\/nodejs.org\/dist/$NODE_BUILD_MIRROR_URL}"
217
+ if [ -n "$NODE_BUILD_MIRROR_URL" ]; then
218
+ echo "${package_url/https:\/\/nodejs.org\/dist/$NODE_BUILD_MIRROR_URL}"
219
+ elif [ -n "$NODE_BUILD_MIRROR_PACKAGE_URL" ]; then
220
+ echo "$NODE_BUILD_MIRROR_PACKAGE_URL"
221
+ fi
217
222
  }
218
223
 
219
224
  try_binary(){
@@ -698,10 +703,11 @@ build_package_standard_build() {
698
703
  export CC=clang
699
704
  fi
700
705
  ${!PACKAGE_CONFIGURE:-./configure} --prefix="${!PACKAGE_PREFIX_PATH:-$PREFIX_PATH}" \
701
- $CONFIGURE_OPTS ${!PACKAGE_CONFIGURE_OPTS} ${!PACKAGE_CONFIGURE_OPTS_ARRAY} || return 1
706
+ "${!PACKAGE_CONFIGURE_OPTS_ARRAY}" $CONFIGURE_OPTS ${!PACKAGE_CONFIGURE_OPTS} || return 1
702
707
  ) >&4 2>&1
703
708
 
704
- "$MAKE" $MAKE_OPTS ${!PACKAGE_MAKE_OPTS} ${!PACKAGE_MAKE_OPTS_ARRAY} >&4 2>&1
709
+ { "$MAKE" "${!PACKAGE_MAKE_OPTS_ARRAY}" $MAKE_OPTS ${!PACKAGE_MAKE_OPTS}
710
+ } >&4 2>&1
705
711
  }
706
712
 
707
713
  build_package_standard_install() {
@@ -712,7 +718,8 @@ build_package_standard_install() {
712
718
  local PACKAGE_MAKE_INSTALL_OPTS="${package_var_name}_MAKE_INSTALL_OPTS"
713
719
  local PACKAGE_MAKE_INSTALL_OPTS_ARRAY="${package_var_name}_MAKE_INSTALL_OPTS_ARRAY[@]"
714
720
 
715
- "$MAKE" install $MAKE_INSTALL_OPTS ${!PACKAGE_MAKE_INSTALL_OPTS} ${!PACKAGE_MAKE_INSTALL_OPTS_ARRAY} >&4 2>&1
721
+ { "$MAKE" ${MAKE_INSTALL_TARGET:-install} "${!PACKAGE_MAKE_INSTALL_OPTS_ARRAY}" $MAKE_INSTALL_OPTS ${!PACKAGE_MAKE_INSTALL_OPTS}
722
+ } >&4 2>&1
716
723
  }
717
724
 
718
725
  build_package_standard() {
@@ -721,15 +728,10 @@ build_package_standard() {
721
728
  }
722
729
 
723
730
  build_package_autoconf() {
724
- { autoconf
731
+ { autoreconf -i
725
732
  } >&4 2>&1
726
733
  }
727
734
 
728
- clean_prefix_path() {
729
- # Make sure there are no leftover files in $PREFIX_PATH
730
- rm -rf "$PREFIX_PATH"
731
- }
732
-
733
735
  build_package_copy_to() {
734
736
  to="$1"
735
737
  mkdir -p "$to"
@@ -737,7 +739,6 @@ build_package_copy_to() {
737
739
  }
738
740
 
739
741
  build_package_copy() {
740
- clean_prefix_path
741
742
  build_package_copy_to "$PREFIX_PATH"
742
743
  }
743
744
 
@@ -814,7 +815,9 @@ build_package_ldflags_dirs() {
814
815
  }
815
816
 
816
817
  build_package_enable_shared() {
818
+ if [[ " ${NODE_CONFIGURE_OPTS} " != *" --disable-shared"* ]]; then
817
819
  package_option node configure --enable-shared
820
+ fi
818
821
  }
819
822
 
820
823
  apply_node_patch() {
@@ -1011,7 +1014,7 @@ WGET_OPTS="${NODE_BUILD_WGET_OPTS} ${IPV4+--inet4-only} ${IPV6+--inet6-only}"
1011
1014
  NODE_BUILD_MIRROR_URL="${NODE_BUILD_MIRROR_URL%/}"
1012
1015
 
1013
1016
  if ! has_checksum_support compute_sha2 ||
1014
- { [ -z "$NODE_BUILD_MIRROR_URL" ] && [ -z "$NODE_BUILD_MIRROR_CMD" ]; } then
1017
+ [ -z "$NODE_BUILD_MIRROR_URL" -a -z "$NODE_BUILD_MIRROR_CMD" -a -z "$NODE_BUILD_MIRROR_PACKAGE_URL" ]; then
1015
1018
  NODE_BUILD_SKIP_MIRROR=true
1016
1019
  fi
1017
1020
 
@@ -1031,6 +1034,10 @@ if [ -n "$VERBOSE" ]; then
1031
1034
  tail -f "$LOG_PATH" &
1032
1035
  TAIL_PID=$!
1033
1036
  trap "kill $TAIL_PID" SIGINT SIGTERM EXIT
1037
+ else
1038
+ if [ -z "$NODE_BUILD_TESTING" ]; then
1039
+ echo "To follow progress, use 'tail -f $LOG_PATH' or pass --verbose" >&2
1040
+ fi
1034
1041
  fi
1035
1042
 
1036
1043
  export LDFLAGS="-L${PREFIX_PATH}/lib ${LDFLAGS}"
@@ -89,7 +89,7 @@ for option in "${OPTIONS[@]}"; do
89
89
  {
90
90
  echo
91
91
  echo "Only latest stable releases for each Node implementation are shown."
92
- echo "Use 'nodenv install --list-all' to show all local versions."
92
+ echo "Use 'nodenv install --list-all / -L' to show all local versions."
93
93
  } 1>&2
94
94
  exit
95
95
  ;;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nodenv/node-build",
3
- "version": "5.0.4",
3
+ "version": "5.2.0",
4
4
  "description": "Install NodeJS versions",
5
5
  "homepage": "https://github.com/nodenv/node-build#readme",
6
6
  "license": "MIT",
@@ -41,10 +41,10 @@
41
41
  "preversion": "script/preversion",
42
42
  "version": "script/version-sync",
43
43
  "postversion": "git push --follow-tags",
44
- "unmerged": "git for-each-ref refs/rbenv-tags --format='%(refname)' --no-merged"
44
+ "unmerged": "git for-each-ref refs/rbtags --format='%(refname)' --no-merged"
45
45
  },
46
46
  "devDependencies": {
47
- "@nodenv/node-build-update-defs": "^2.11.0",
47
+ "@nodenv/node-build-update-defs": "^2.11.1",
48
48
  "bats": "^1.11.0",
49
49
  "bats-assert": "jasonkarns/bats-assert-1",
50
50
  "bats-mock": "^1",
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.0.0/node-v21.0.0-aix-ppc64.tar.gz#15f8e2fe78be11fd59ba730af57fe5ba95ec1f24555effcf3570f80744622448"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.0.0/node-v21.0.0-darwin-arm64.tar.gz#d49aae353ab9e264a1d8c75f80eb26dcc4006f50b35ba05bda3a9c33f5554609"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.0.0/node-v21.0.0-darwin-x64.tar.gz#2ec98307e388407cfa62d1fb8abc4d6dc1e54c11bc70329d6675ed0595326763"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.1.0/node-v21.1.0-aix-ppc64.tar.gz#691672195af440401e4957d9d5e148d361e686aa26c9e529505edf89bab4b089"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.1.0/node-v21.1.0-darwin-arm64.tar.gz#4872463830381785b91d13a7fbb9b6f4a9c7658e10d964f6c421951cec8833ad"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.1.0/node-v21.1.0-darwin-x64.tar.gz#6b526c08320fcf41ced0ceee7588828ea2cb07ba826af4ff82b0ec53958fd8a4"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.2.0/node-v21.2.0-aix-ppc64.tar.gz#fbe1a66068e0ca1900d9795e3b8da027c62073062f78040d453aed9d86189001"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.2.0/node-v21.2.0-darwin-arm64.tar.gz#e085e9e695a5fc715c24d0d2ee73a2cebfc2a2b456a28b58f31077609591f4a0"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.2.0/node-v21.2.0-darwin-x64.tar.gz#ff6483bdf4f9817d9915f5fdf1b9154c7689f47ef310eac5ab3c40f6a6e4b700"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.3.0/node-v21.3.0-aix-ppc64.tar.gz#67c8eca0b56333a7c35b2f09f416e4797adf3747a320e693afe03731b7d5ece3"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.3.0/node-v21.3.0-darwin-arm64.tar.gz#0dcb82d52dffacd0e0072c01cd919806432dd40be5d7ae37cc1fb2df9cd85c75"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.3.0/node-v21.3.0-darwin-x64.tar.gz#abe6226f030e4affb37c964628abac19356153223f97c7b663754197ba89c3ce"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.4.0/node-v21.4.0-aix-ppc64.tar.gz#91f69ef2501efe9908b5adddc740c1b614054551abe1087a475b3f8e8bcd4f51"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.4.0/node-v21.4.0-darwin-arm64.tar.gz#459a23a6044003c6cb5d24867da0c473bd8c2e4cb5689517051be182eed46c2b"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.4.0/node-v21.4.0-darwin-x64.tar.gz#438cf09d2b48116170f1b2bf351f19a77e62c85b939524d4cf3c0a5b7bd0dba9"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.5.0/node-v21.5.0-aix-ppc64.tar.gz#e4b4c3214a8dc59f511f50cb949b4ef5c05a59bc15c6376c1b98bcfd43dcbb4c"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.5.0/node-v21.5.0-darwin-arm64.tar.gz#66af9055dcceacc2fcd01ccbb47a565a1dd8f4314300a0f37f13771059490a09"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.5.0/node-v21.5.0-darwin-x64.tar.gz#de858cb5257f101dc0681cd65493b589a35ac61f69f46b62cbc1cdaf7cb51a1b"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.6.0/node-v21.6.0-aix-ppc64.tar.gz#a70b758f571fad0df2a6cd22d2814bc2e55704aa5a97486088575ad75bc9339c"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.6.0/node-v21.6.0-darwin-arm64.tar.gz#425d80f28edf6ec2e4d53388d839cf45e0ec771e6276028559d433348ca75f7b"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.6.0/node-v21.6.0-darwin-x64.tar.gz#a2310fbfe0109d764ed8024f17c6fcdba5ef9327fb810c03bca9011eccae777b"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.6.1/node-v21.6.1-aix-ppc64.tar.gz#0dbffde04695933f508e964a103657d6ef55ddadf3d8e9c39e0191c6ee2b4ead"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.6.1/node-v21.6.1-darwin-arm64.tar.gz#94c280bba809fa66867e363ec9e990217aedf893116660b8c75a1c4fda3baea5"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.6.1/node-v21.6.1-darwin-x64.tar.gz#5c4821c62a1f61cf3219bc244d30a5b1cdec197c8acabc1ee7cd9ff17bbba947"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.6.2/node-v21.6.2-aix-ppc64.tar.gz#e06dff53a5e2a88caff9735c076165a6a53f4c45960a8887410684e1fea6c7cb"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.6.2/node-v21.6.2-darwin-arm64.tar.gz#120c8205654c640865864dc464389b3ffe6d7ebe310dffdbe3fd8718a512e14f"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.6.2/node-v21.6.2-darwin-x64.tar.gz#0f75d9b46b986100c6faeec040ee46adf4981eb6abb5dd63e7a6ca4868d280f4"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.7.0/node-v21.7.0-aix-ppc64.tar.gz#c31d5b60c4a284c6855bd468d4aae4436a16b351362b2971d3c0db2a471d3f24"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.7.0/node-v21.7.0-darwin-arm64.tar.gz#f48ad51cf3c2814bbf61c8c26efd810e5e22dcac980786fd7ac5b54365233d2c"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.7.0/node-v21.7.0-darwin-x64.tar.gz#3f81adca80b523b413e26f03f855f4a2ae52d9af20f0cda2e259dd26a0608607"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.7.1/node-v21.7.1-aix-ppc64.tar.gz#cba4d1d6c05684edeb88f06351c61c3acdb3d8d6df46b9dcd8ca89af847268e5"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.7.1/node-v21.7.1-darwin-arm64.tar.gz#0a4dde483479dcf272f3d4d7afb509c3d45cf7a1ea451ce108f434dad4fa43e4"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.7.1/node-v21.7.1-darwin-x64.tar.gz#a406f4fbe68ff33319d513fa645aa7b9508c2cb65299f0a2de1757c2a6333c85"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.7.2/node-v21.7.2-aix-ppc64.tar.gz#6290bc006ee81332da8345b2d254ecf75674de0898a6dd5e348c7685ca0df325"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.7.2/node-v21.7.2-darwin-arm64.tar.gz#d00a2b5002db121d798f1c9556342abb6ec6a4fac9d6197bc86c922a796812ae"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.7.2/node-v21.7.2-darwin-x64.tar.gz#6211829236013582fb654b4b9f8c6528dcb07620f6f82878ef514fae1b30685e"
@@ -1,8 +1,7 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
-
6
5
  binary aix-ppc64 "https://nodejs.org/dist/v21.7.3/node-v21.7.3-aix-ppc64.tar.gz#3ae059cab0a4f18ce79676bbc37112cd428b2f22ba66277bf12873ef9eb34143"
7
6
  binary darwin-arm64 "https://nodejs.org/dist/v21.7.3/node-v21.7.3-darwin-arm64.tar.gz#165d3ba3500cfc8708f85d3815aaaa21ce418164c933d5419c30825ccad3a99c"
8
7
  binary darwin-x64 "https://nodejs.org/dist/v21.7.3/node-v21.7.3-darwin-x64.tar.gz#58d0212e169764c3424d2d5bec73e8a098d34b4e82fca6e1dd54083ea3049c5f"
@@ -1,5 +1,5 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
5
  install_git "21.x-dev" "https://github.com/nodejs/node.git" "v21.x-staging" standard
@@ -1,5 +1,5 @@
1
1
  before_install_package() {
2
- build_package_warn_lts_maintenance "$1"
2
+ build_package_warn_eol "$1"
3
3
  }
4
4
 
5
5
  install_git "21.x-next" "https://github.com/nodejs/node.git" "v21.x" standard