File: python-coverage.preinst

package info (click to toggle)
python-coverage 3.7.1%2Bdfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,808 kB
  • ctags: 1,522
  • sloc: python: 10,533; ansic: 530; makefile: 172; sh: 124; xml: 59
file content (41 lines) | stat: -rw-r--r-- 1,136 bytes parent folder | download | duplicates (2)
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
34
35
36
37
38
39
40
41
#! /bin/sh
# Pre-install script for ‘python-coverage’.
#
# Manpage: ‘dh_installdeb(1)’

set -e

# Summary of ways this script can be called:
#   * <new-preinst> install
#   * <new-preinst> install <old-version>
#   * <new-preinst> upgrade <old-version>
#   * <old-preinst> abort-upgrade <new-version>
# For details, see the Debian Policy §6.5 in the ‘debian-policy’ package
# or on the web at <URL:http://www.debian.org/doc/debian-policy/>.

action="$1"

case "$action" in
    upgrade)
        old_version="$2"
        for python in $(pyversions --supported) ; do
            htmlfiles_dir="/usr/lib/${python}/dist-packages/coverage/htmlfiles"
            if [ -d "$htmlfiles_dir" ] && [ ! -L "$htmlfiles_dir" ] ; then
                # The ‘htmlfiles’ location should be platform-independent.
                # The new package will replace the directory with a symlink.
                rm -rf "$htmlfiles_dir"
            fi
        done
        ;;

    install|abort-upgrade)
        ;;

    *)
        printf "preinst called with unknown action ‘%s’\n" "$action" >&2
        exit 1
        ;;

esac

#DEBHELPER#