~ubuntu-branches/ubuntu/saucy/bc/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/bc.postrm

  • Committer: Package Import Robot
  • Author(s): John G. Hasler
  • Date: 2012-06-22 21:00:45 UTC
  • Revision ID: package-import@ubuntu.com-20120622210045-cpu8v54e1x1z0ep0
Tags: 1.06.95-3
* Applied patch from Pádraig Brady.
  Closes: #608255: bc uses uninitialized memory

* Applied patch from Paul Dwerryhouse.
  Closes: #472250: please return support for .dcrc file

* Applied patch from Ian Jackson.
  Closes: #488735: notice read and write errors on input and output

* Generated bc.html and dc.html but something is still wrong.

* Added homepage field to debian/control.

* I can't see the problem with hyphens.

* Fixed doc-base white space.

* Added watch file.

* I believe that the above changes deal with 558188.
  Closes: #558188: Changes made in 1.06.94-3.1 NMU have been lost

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
#
3
 
# This is the postrm script for the Debian GNU/Linux bc package
4
 
#
5
 
# Written by John G. Hasler    
6
 
# Previous versions written by Dirk Eddelbuettel, Bill Mitchell, 
7
 
# Austin Donnelly and James Troup
8
 
 
9
 
set -e
10
 
 
11
 
#DEBHELPER#
12
 
 
13
 
case "$1" in
14
 
    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
15
 
        if [ -x /usr/bin/update-menus ]
16
 
        then
17
 
            update-menus
18
 
        fi
19
 
        ;;
20
 
    *)
21
 
        echo "postrm called with unknown argument \`$1'" >&2
22
 
        ;;
23
 
esac
 
1
# Automatically added by dh_installmenu
 
2
if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
 
3
# End automatically added section