nodejs-allow-build-with-python-3.14.patch (848B)
1 --- node-v24.11.1-orig/configure 2 +++ node-v24.11.1/configure 3 @@ -4,6 +4,7 @@ 4 # Note that the mix of single and double quotes is intentional, 5 # as is the fact that the ] goes on a new line. 6 _=[ 'exec' '/bin/sh' '-c' ''' 7 +command -v python3.14 >/dev/null && exec python3.14 "$0" "$@" 8 command -v python3.13 >/dev/null && exec python3.13 "$0" "$@" 9 command -v python3.12 >/dev/null && exec python3.12 "$0" "$@" 10 command -v python3.11 >/dev/null && exec python3.11 "$0" "$@" 11 @@ -22,7 +23,7 @@ 12 from distutils.spawn import find_executable as which 13 14 print('Node.js configure: Found Python {}.{}.{}...'.format(*sys.version_info)) 15 -acceptable_pythons = ((3, 13), (3, 12), (3, 11), (3, 10), (3, 9)) 16 +acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10), (3, 9)) 17 if sys.version_info[:2] in acceptable_pythons: 18 import configure 19 else: