bin: add wrapper to run scripts in a python venv
authorEric Engestrom <eric@igalia.com>
Wed, 3 May 2023 16:52:57 +0000 (17:52 +0100)
committerMarge Bot <emma+marge@anholt.net>
Thu, 3 Aug 2023 23:21:31 +0000 (23:21 +0000)
This isolates the script environment from the rest of the machine,
avoiding missing/incompatible dependencies and avoiding polluting the
rest of the machine with python packages.

Signed-off-by: Eric Engestrom <eric@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24367>

bin/python-venv.sh [new file with mode: 0755]

diff --git a/bin/python-venv.sh b/bin/python-venv.sh
new file mode 100755 (executable)
index 0000000..2c4f6dc
--- /dev/null
@@ -0,0 +1,27 @@
+#!/usr/bin/env bash
+set -eu
+
+readonly requirements_file=$1
+shift
+
+venv_dir="$(dirname "$requirements_file")"/.venv
+readonly venv_dir
+readonly venv_req=$venv_dir/requirements.txt
+
+if ! [ -r "$venv_dir/bin/activate" ]
+then
+  echo "Creating Python environment..."
+  python -m venv "$venv_dir"
+fi
+
+# shellcheck disable=1091
+source "$venv_dir/bin/activate"
+
+if ! cmp --quiet "$requirements_file" "$venv_req"
+then
+  echo "$(realpath --relative-to="$PWD" "$requirements_file") has changed, re-installing..."
+  pip --disable-pip-version-check install --requirement "$requirements_file"
+  cp "$requirements_file" "$venv_req"
+fi
+
+python "$@"