prerm is in mythbuntu-common 0.78.2.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
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 28 29 30 31 32 33 | #!/bin/sh
case "$1" in
remove|purge)
release=$(lsb_release -c -s)
RMBLDS="`cat /usr/share/mythbuntu/plugins/mythbuntu-repos.db | grep $release | cut -f 2`"
for version in $RMBLDS
do
## Fixes for 0.21 and 0.22 PPA's
if [ "$version" = "0.21" ]; then
version="fixes-0.21"
elif [ "$version" = "0.22" ]; then
version="trunk-0.22"
elif [ "$version" = "0.24.x" ]; then
version="0.24"
fi
apt-add-repository -r -y ppa:mythbuntu/$version || true
done
apt-add-repository -r -y ppa:mythbuntu/testing || true
apt-add-repository -r -y ppa:mythbuntu/xmltv || true
;;
esac
# Automatically added by dhpython:
if which py3clean >/dev/null 2>&1; then
py3clean -p mythbuntu-common
else
dpkg -L mythbuntu-common | perl -ne 's,/([^/]*)\.py$,/__pycache__/\1.*, or next; unlink $_ or die $! foreach glob($_)'
find /usr/lib/python3/dist-packages/ -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir
fi
# End automatically added section
|