alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

commit dfb8c6f1bd7a3988625cace4e6f638a7cb311f4a
parent d6cc732977085f7e7b4d861163a509576068175a
Author: emmett1 <emmett1.2miligrams@protonmail.com>
Date:   Tue,  9 Dec 2025 08:52:21 +0000

nodejs: updated to 24.11.1

Diffstat:
Mrepos/extra/nodejs/.checksum | 3++-
Mrepos/extra/nodejs/.files | 11-----------
Mrepos/extra/nodejs/abuild | 4++--
Mrepos/extra/nodejs/depends | 1-
Arepos/extra/nodejs/nodejs-allow-build-with-python-3.14.patch | 19+++++++++++++++++++
5 files changed, 23 insertions(+), 15 deletions(-)

diff --git a/repos/extra/nodejs/.checksum b/repos/extra/nodejs/.checksum @@ -1,2 +1,3 @@ e2a30a8a611234b5438df78bf7299a705d9ae267f7ea3d28c556168a57dde4a0 0001-no-libatomic.patch -36ee37b6e002838d1da8ea42468ddf336056a62c223d6a7a7758c3ba4f1d55f3 node-v24.10.0.tar.xz +9c638ccb9469487bc9e05a23022371a0e968e92383ff0ffe346dd36552bb5f58 node-v24.11.1.tar.xz +29812b7aedc182949cec9d60b1121d9f33225ffc352813e15174c123127574a3 nodejs-allow-build-with-python-3.14.patch diff --git a/repos/extra/nodejs/.files b/repos/extra/nodejs/.files @@ -5336,17 +5336,6 @@ drwxr-xr-x root/root usr/lib/node_modules/npm/node_modules/nopt/lib/ -rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/nopt/lib/nopt.js -rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/nopt/lib/type-defs.js -rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/nopt/package.json -drwxr-xr-x root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/ --rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/LICENSE -drwxr-xr-x root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/lib/ --rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js --rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js --rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js --rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js --rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js --rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/lib/typos.json --rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json --rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/normalize-package-data/package.json drwxr-xr-x root/root usr/lib/node_modules/npm/node_modules/npm-audit-report/ -rw-r--r-- root/root usr/lib/node_modules/npm/node_modules/npm-audit-report/LICENSE drwxr-xr-x root/root usr/lib/node_modules/npm/node_modules/npm-audit-report/lib/ diff --git a/repos/extra/nodejs/abuild b/repos/extra/nodejs/abuild @@ -1,7 +1,8 @@ name=nodejs -version=24.10.0 +version=24.11.1 release=1 source="https://$name.org/dist/v$version/node-v$version.tar.xz + nodejs-allow-build-with-python-3.14.patch 0001-no-libatomic.patch" build() { @@ -18,7 +19,6 @@ build() { --shared-cares \ --shared-libuv \ --shared-nghttp2 \ - --shared-nghttp3 \ --shared-zlib \ --with-intl=system-icu \ $_opt diff --git a/repos/extra/nodejs/depends b/repos/extra/nodejs/depends @@ -1,4 +1,3 @@ c-ares libuv nghttp2 -nghttp3 diff --git a/repos/extra/nodejs/nodejs-allow-build-with-python-3.14.patch b/repos/extra/nodejs/nodejs-allow-build-with-python-3.14.patch @@ -0,0 +1,19 @@ +--- node-v24.11.1-orig/configure ++++ node-v24.11.1/configure +@@ -4,6 +4,7 @@ + # Note that the mix of single and double quotes is intentional, + # as is the fact that the ] goes on a new line. + _=[ 'exec' '/bin/sh' '-c' ''' ++command -v python3.14 >/dev/null && exec python3.14 "$0" "$@" + command -v python3.13 >/dev/null && exec python3.13 "$0" "$@" + command -v python3.12 >/dev/null && exec python3.12 "$0" "$@" + command -v python3.11 >/dev/null && exec python3.11 "$0" "$@" +@@ -22,7 +23,7 @@ + from distutils.spawn import find_executable as which + + print('Node.js configure: Found Python {}.{}.{}...'.format(*sys.version_info)) +-acceptable_pythons = ((3, 13), (3, 12), (3, 11), (3, 10), (3, 9)) ++acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10), (3, 9)) + if sys.version_info[:2] in acceptable_pythons: + import configure + else: