~ubuntu-branches/ubuntu/vivid/nettle/vivid-proposed

« back to all changes in this revision

Viewing changes to debian/nettle-bin.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Magnus Holmgren
  • Date: 2009-04-13 22:52:44 UTC
  • Revision ID: james.westby@ubuntu.com-20090413225244-ac20g0ggvlkmw2u4
Tags: 1.15-6
* No longer install sexp-conv as an alternative; conflict with lsh-utils
  prior to 2.0.4-dfsg-1, which depends on nettle-bin instead of shipping
  a copy of sexp-conv (Closes: #510942). Drop nettle-bin.postinst and
  nettle-bin.prerm (nettle-bin.prerm will remove the alternative on
  upgrade, which is actually a bug, but works out fine in this case).
* Switch to Debhelper level 5. Remove files that don't exist from install
  lists (copied from a template, apparently).
* Upgrade to Standards-Version 3.8.1:
  + Add debian/README.source (§ 4.9).
* Add debian/libnettle2.symbols.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
# postinst script for pike7.6
3
 
#
4
 
# see: dh_installdeb(1)
5
 
6
 
# $Id: postinst,v 1.9 2004/04/30 17:12:43 grendel Exp $
7
 
#
8
 
 
9
 
set -e
10
 
 
11
 
PIKE=7.6
12
 
PIKEBIN=pike${PIKE}
13
 
 
14
 
# summary of how this script can be called:
15
 
#        * <postinst> `configure' <most-recently-configured-version>
16
 
#        * <old-postinst> `abort-upgrade' <new version>
17
 
#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
18
 
#          <new-version>
19
 
#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
20
 
#          <failed-install-package> <version> `removing'
21
 
#          <conflicting-package> <version>
22
 
# for details, see http://www.debian.org/doc/debian-policy/ or
23
 
# the debian-policy package
24
 
#
25
 
# quoting from the policy:
26
 
#     Any necessary prompting should almost always be confined to the
27
 
#     post-installation script, and should be protected with a conditional
28
 
#     so that unnecessary prompting doesn't happen if a package's
29
 
#     installation fails and the `postinst' is called with `abort-upgrade',
30
 
#     `abort-remove' or `abort-deconfigure'.
31
 
 
32
 
case "$1" in
33
 
    configure)
34
 
    /usr/sbin/update-alternatives --install /usr/bin/sexp-conv sexp-conv /usr/bin/sexp-conv.nettle 10 \
35
 
    --slave /usr/share/man/man1/sexp-conv.1.gz sexp-conv.1.gz /usr/share/man/man1/sexp-conv.nettle.1.gz
36
 
    ;;
37
 
 
38
 
    abort-upgrade|abort-remove|abort-deconfigure)
39
 
 
40
 
    ;;
41
 
 
42
 
    *)
43
 
        echo "postinst called with unknown argument \`$1'" >&2
44
 
        exit 1
45
 
    ;;
46
 
esac
47
 
 
48
 
# dh_installdeb will replace this with shell code automatically
49
 
# generated by other debhelper scripts.
50
 
 
51
 
#DEBHELPER#
52
 
 
53
 
exit 0