Subversion Repositories nettle

Compare Revisions

Ignore whitespace Rev 39 → Rev 38

/trunk/debian/changelog
1,13 → 1,3
nettle (1.15-6) unstable; urgency=low
 
* 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).
 
-- Magnus Holmgren <holmgren@debian.org> Mon, 13 Apr 2009 21:20:46 +0200
 
nettle (1.15-5) unstable; urgency=low
 
* New maintainer email address.
/trunk/debian/control
48,7 → 48,7
Section: misc
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Conflicts: libnettle1, lsh-utils (<< 2.0.4-dfsg-1)
Conflicts: libnettle1
Description: low level cryptographic library (binary tools)
Nettle is a cryptographic library that is designed to fit easily in more or
less any context: In crypto toolkits for object-oriented languages (C++,
/trunk/debian/nettle-bin.postinst
0,0 → 1,53
#! /bin/sh
# postinst script for pike7.6
#
# see: dh_installdeb(1)
#
# $Id: postinst,v 1.9 2004/04/30 17:12:43 grendel Exp $
#
 
set -e
 
PIKE=7.6
PIKEBIN=pike${PIKE}
 
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
#
# quoting from the policy:
# Any necessary prompting should almost always be confined to the
# post-installation script, and should be protected with a conditional
# so that unnecessary prompting doesn't happen if a package's
# installation fails and the `postinst' is called with `abort-upgrade',
# `abort-remove' or `abort-deconfigure'.
 
case "$1" in
configure)
/usr/sbin/update-alternatives --install /usr/bin/sexp-conv sexp-conv /usr/bin/sexp-conv.nettle 10 \
--slave /usr/share/man/man1/sexp-conv.1.gz sexp-conv.1.gz /usr/share/man/man1/sexp-conv.nettle.1.gz
;;
 
abort-upgrade|abort-remove|abort-deconfigure)
 
;;
 
*)
echo "postinst 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
/trunk/debian/nettle-bin.prerm
0,0 → 1,41
#! /bin/sh
# prerm script for pike7.6
#
# see: dh_installdeb(1)
#
# $Id: prerm,v 1.7 2004/04/30 17:12:43 grendel Exp $
#
 
set -e
 
# summary of how this script can be called:
# * <prerm> `remove'
# * <old-prerm> `upgrade' <new-version>
# * <new-prerm> `failed-upgrade' <old-version>
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
# * <deconfigured's-prerm> `deconfigure' `in-favour'
# <package-being-installed> <version> `removing'
# <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
 
case "$1" in
remove|upgrade|deconfigure)
update-alternatives --remove sexp-conv /usr/bin/sexp-conv.nettle
;;
failed-upgrade)
;;
*)
echo "prerm 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