From 5bce61c04e589e368d534c4797711ac73c1e1f23 Mon Sep 17 00:00:00 2001 From: Achil Date: Tue, 6 Sep 2022 18:56:51 +0200 Subject: Daniel Etienne pre release for Bullseye --- debian/zinc-python/DEBIAN/postinst | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 debian/zinc-python/DEBIAN/postinst (limited to 'debian/zinc-python/DEBIAN/postinst') diff --git a/debian/zinc-python/DEBIAN/postinst b/debian/zinc-python/DEBIAN/postinst new file mode 100755 index 0000000..0f85b0a --- /dev/null +++ b/debian/zinc-python/DEBIAN/postinst @@ -0,0 +1,23 @@ +#! /bin/bash -e +# +# Debian postinst script for Python hierarchical modules +# Written by Gregor Hoffleit +# + +NAME=zinc-python +DEFAULT_VERSION_PYTHON=`dpkg -p python| grep -e "^Version:" |cut -d" " -f2|cut -d"." -f1-2` +DIRLIST="/usr/lib/python${DEFAULT_VERSION_PYTHON}/site-packages" + +case "$1" in + configure|abort-upgrade|abort-remove|abort-deconfigure) + for i in $DIRLIST ; do + python -O /usr/lib/python${DEFAULT_VERSION_PYTHON}/compileall.py -q $i + python /usr/lib/python${DEFAULT_VERSION_PYTHON}/compileall.py -q $i + done + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac -- cgit v1.1