diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-12-09 08:52:21 +0000 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-12-09 08:52:21 +0000 |
| commit | dfb8c6f1bd7a3988625cace4e6f638a7cb311f4a (patch) | |
| tree | 602979223a660dacaa67890ad2fa72d489007ab4 /repos/extra/nodejs/nodejs-allow-build-with-python-3.14.patch | |
| parent | d6cc732977085f7e7b4d861163a509576068175a (diff) | |
| download | alicelinux-dfb8c6f1bd7a3988625cace4e6f638a7cb311f4a.tar.gz alicelinux-dfb8c6f1bd7a3988625cace4e6f638a7cb311f4a.zip | |
nodejs: updated to 24.11.1
Diffstat (limited to 'repos/extra/nodejs/nodejs-allow-build-with-python-3.14.patch')
| -rw-r--r-- | repos/extra/nodejs/nodejs-allow-build-with-python-3.14.patch | 19 |
1 files changed, 19 insertions, 0 deletions
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 new file mode 100644 index 00000000..bd27a414 --- /dev/null +++ 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: |