~ubuntu-branches/ubuntu/vivid/cl-csv/vivid-proposed

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Package Import Robot
  • Author(s): Dimitri Fontaine
  • Date: 2014-08-04 19:57:54 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140804195754-vo64b5r1daxwg8ld
Tags: 20140211-1
Quicklisp release update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
# prerm script for cl-inflate
3
 
#
4
 
# see: dh_installdeb(1)
5
 
 
6
 
set -e
7
 
 
8
 
# package name according to lisp
9
 
LISP_PKG=csv
10
 
 
11
 
# summary of how this script can be called:
12
 
#        * <prerm> `remove'
13
 
#        * <old-prerm> `upgrade' <new-version>
14
 
#        * <new-prerm> `failed-upgrade' <old-version>
15
 
#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
16
 
#        * <deconfigured's-prerm> `deconfigure' `in-favour'
17
 
#          <package-being-installed> <version> `removing'
18
 
#          <conflicting-package> <version>
19
 
# for details, see http://www.debian.org/doc/debian-policy/ or
20
 
# the debian-policy package
21
 
 
22
 
 
23
 
case "$1" in
24
 
    remove|upgrade|deconfigure)
25
 
        /usr/sbin/unregister-common-lisp-source ${LISP_PKG}
26
 
        ;;
27
 
    failed-upgrade)
28
 
        ;;
29
 
    *)
30
 
        echo "prerm called with unknown argument \`$1'" >&2
31
 
        exit 1
32
 
    ;;
33
 
esac
34
 
 
35
 
# dh_installdeb will replace this with shell code automatically
36
 
# generated by other debhelper scripts.
37
 
 
38
 
#DEBHELPER#
39
 
 
40
 
exit 0
41
 
 
42