hooks/pre-pkg/03-rewrite-python-shebang.sh: rewrite plain python shebang

Shebangs containing #!python are ignored currently, which causes a problem
since newer versions of python3-setuptools generate this, so replace them with
the proper shebang when encountered.

https://github.com/pypa/setuptools/issues/4863
This commit is contained in:
oreo639 2025-03-31 13:52:43 -07:00 committed by oreo639
parent 06f9d87d57
commit 59d2b25087

View file

@ -24,7 +24,7 @@ hook() {
while IFS= read -r -d '' file; do
[ ! -s "$file" ] && continue
pyinterp=$(sed -n -E -e 2q -e 's@^#!.*([[:space:]]|/)(python([0-9](\.[0-9]+)?)?)([[:space:]]+.*|$)@\2@p' "$file")
pyinterp=$(sed -n -E -e 2q -e 's@^#!(.*([[:space:]]|/))?(python([0-9](\.[0-9]+)?)?)([[:space:]]+.*|$)@\3@p' "$file")
[ -z "$pyinterp" ] && continue
pyver=${pyinterp#python}