mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 23:00:06 -07:00
nodejs: python 3.11 compatibility
This commit is contained in:
parent
50bc41dc45
commit
6b796c29c5
@ -1,5 +1,7 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
patch -p1 < python-3.11.patch
|
||||
|
||||
# Fix build when libatomic.so does not exist in the system.
|
||||
# This may be provided by compiler-rt which requires no additional
|
||||
# linker flags to be used.
|
||||
|
21
extra/nodejs/patches/python-3.11.patch
Normal file
21
extra/nodejs/patches/python-3.11.patch
Normal file
@ -0,0 +1,21 @@
|
||||
diff --git a/configure b/configure
|
||||
index 6ef2da2..fefb313 100755
|
||||
--- a/configure
|
||||
+++ b/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.11 >/dev/null && exec python3.11 "$0" "$@"
|
||||
command -v python3.10 >/dev/null && exec python3.10 "$0" "$@"
|
||||
command -v python3.9 >/dev/null && exec python3.9 "$0" "$@"
|
||||
command -v python3.8 >/dev/null && exec python3.8 "$0" "$@"
|
||||
@@ -22,7 +23,7 @@ except ImportError:
|
||||
from distutils.spawn import find_executable as which
|
||||
|
||||
print('Node.js configure: Found Python {}.{}.{}...'.format(*sys.version_info))
|
||||
-acceptable_pythons = ((3, 10), (3, 9), (3, 8), (3, 7), (3, 6))
|
||||
+acceptable_pythons = ((3, 11), (3, 10), (3, 9), (3, 8), (3, 7), (3, 6))
|
||||
if sys.version_info[:2] in acceptable_pythons:
|
||||
import configure
|
||||
else:
|
@ -1 +1,2 @@
|
||||
https://nodejs.org/download/release/vVERSION/node-vVERSION.tar.xz
|
||||
patches/python-3.11.patch
|
||||
|
Loading…
Reference in New Issue
Block a user