/[python-modules]/packages/pycairo/trunk/debian/python-cairo.preinst
ViewVC logotype

Contents of /packages/pycairo/trunk/debian/python-cairo.preinst

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8100 - (hide annotations) (download)
Sat Mar 28 18:00:57 2009 UTC (4 years, 2 months ago) by shlomme
File size: 772 byte(s)
new upload, fixes uninstallable issues for new installations
1 shlomme 8077 #!/bin/sh -e
2    
3     #DEBHELPER#
4    
5     PYCENTRAL=/usr/bin/pycentral
6    
7     case "$1" in
8 shlomme 8100 upgrade)
9 shlomme 8077 if dpkg --compare-versions "$2" lt 1.8.4-2; then
10     if [ -x $PYCENTRAL ]; then
11     # explicitly remove old python-central files
12     pycentral pkgremove python-cairo
13     fi
14     # be really really sure about it, in case we update
15     # from 1.8.4-1
16     for pyversion in 2.4 2.5; do
17     if [ -d /usr/lib/python$pyversion/site-packages/cairo/ ]; then
18     rm -f /usr/lib/python$pyversion/site-packages/cairo/__init__.py*
19     rmdir --ignore-fail-on-non-empty /usr/lib/python$pyversion/site-packages/cairo
20     fi
21     done
22     fi
23     ;;
24     *)
25     ;;
26     esac

  ViewVC Help
Powered by ViewVC 1.1.5