File: postrm

package info (click to toggle)
python-xml 0.4.19981014-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,124 kB
  • ctags: 3,099
  • sloc: ansic: 9,075; python: 8,150; xml: 7,940; makefile: 84; sh: 41
file content (14 lines) | stat: -rw-r--r-- 502 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e
#
PACKAGE=python-xml

if [ remove = "$1" ]; then
    dpkg-divert --package $PACKAGE --remove --rename \
	--divert /usr/lib/python1.5/xmllib.py.orig /usr/lib/python1.5/xmllib.py
    dpkg-divert --package $PACKAGE --remove --rename \
	--divert /usr/lib/python1.5/sgmllib.py.orig /usr/lib/python1.5/sgmllib.py
    if [ -e /usr/bin/python ]; then
        python -O /usr/lib/python1.5/compileall.py -q /usr/lib/python1.5
	python /usr/lib/python1.5/compileall.py -q /usr/lib/python1.5
    fi
fi