aboutsummaryrefslogtreecommitdiff
path: root/common/hooks/pre-pkg/03-rewrite-python-shebang.sh
blob: 3450c3a3a8fc7b1b68f2bfe0cbaad8d4e11daccc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This hook executes the following tasks:
#	- rewrites python shebangs with the corresponding python version

hook() {
	local pyver= shebang= off=

	if [ -d ${PKGDESTDIR}/usr/lib/python* ]; then
		pyver="$(find ${PKGDESTDIR}/usr/lib/python* -prune -type d | grep -o '[[:digit:]]\.[[:digit:]]$')"
	fi

	if [ -n "$python_version" ]; then
		pyver="$python_version"
	fi

	if [ -n "$pyver" ]; then
		shebang="#!/usr/bin/python${pyver%.*}"
	fi

	find "${PKGDESTDIR}" -type f -print0 | \
		while IFS= read -r -d '' file; do
			[ ! -s "$file" ] && continue
			[ -z "$(sed -n -E -e 2q -e '/^#!.*([[:space:]]|\/)python([0-9]\.[0-9])?([[:space:]]+|$)/p' "$file")" ] && continue
			[ -n "$shebang" ] || msg_error "cannot convert shebang, set python_version\n"
			echo "   Shebang converted to '$shebang': ${file#$PKGDESTDIR}"
			sed -i "1s@.*python.*@${shebang}@" -- "$file"
		done
}