File: mercurial.preinst

package info (click to toggle)
mercurial 1.6.4-1%2Bdeb6u1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 17,928 kB
  • ctags: 6,062
  • sloc: python: 44,238; sh: 20,985; tcl: 3,578; ansic: 2,557; lisp: 1,412; makefile: 176; xml: 15
file content (67 lines) | stat: -rw-r--r-- 1,959 bytes parent folder | download | duplicates (3)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#! /bin/sh
# preinst script for mercurial
#
# see: dh_installdeb(1)

set -e

# summary of how 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 http://www.debian.org/doc/debian-policy/ or
# the debian-policy package


case "$1" in
    install|upgrade)
        # Fixing a wrong name in a config file (package 6c-1)
	FILE=/etc/bash_completion.d/bash_completion
        if [ -f $FILE ] && grep -sq hg $FILE ; then
	    # Argh, there is the previous wrong named file
	    # Has it been modified ?
	    MD5="`md5sum $FILE | cut -f 1 -d \ `"
	    if [ "$MD5" != a78c4acd831bacee32fde42a42a5ae5e ]; then
		# conffile has been locally modified. Moving it so that
		# dpkg will ask what to do about
		mv $FILE /etc/bash_completion.d/mercurial
	    else
		# not changed. Removing it so that dpkg install quietly the
		# new (renamed) file
		rm $FILE
	    fi
	fi
	if [ "$2" = "0.7-3" ] && [ -f /etc/mercurial/hgrc.d/hgit.rc ]; then
	    # This release has never been official. Let's purge the
	    # old config file if someone installed the package from
	    # my web page. No need to take care of user's modifications:
	    # it was experimental stuff.
	    echo "Purging old config file '/etc/mercurial/hgrc.d/hgit.rc'"
	    rm -fv /etc/mercurial/hgrc.d/hgit.rc
	fi
	if [ -h /usr/share/doc/mercurial ] && [ "$(readlink /usr/share/doc/mercurial)" = mercurial-common ]; then
	    # /usr/share/doc/mercurial was a symlink to mercurial-common
	    # It is problematic in case of binary NMU
	    rm /usr/share/doc/mercurial
	fi
    ;;

    abort-upgrade)
    ;;

    *)
        echo "preinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0