Subversion Repositories nettle

Compare Revisions

Ignore whitespace Rev 102 → Rev 156

/tags/2.4-3/debian/changelog
1,3 → 1,12
nettle (2.4-3) unstable; urgency=high
 
* Add postinst script that replaces old documentation directory (from
before 1.15-4) in nettle-bin with symlink (Closes: #692950).
* Spell check package descriptions (Closes: #680627). Thanks to Filipus
Klutiero.
 
-- Magnus Holmgren <holmgren@debian.org> Fri, 16 Nov 2012 21:13:25 +0100
 
nettle (2.4-2) unstable; urgency=low
 
* Drop README.source; not needed since the package was converted to
/tags/2.4-3/debian/control
17,7 → 17,7
Description: low level cryptographic library (symmetric and one-way cryptos)
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++,
Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
Python, Pike, ...), in applications like LSH or GnuPG, or even in kernel
space.
.
It tries to solve a problem of providing a common set of cryptographic
39,7 → 39,7
Description: low level cryptographic library (public-key cryptos)
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++,
Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
Python, Pike, ...), in applications like LSH or GnuPG, or even in kernel
space.
.
It tries to solve a problem of providing a common set of cryptographic
49,7 → 49,7
cryptographic algorithms for the application to use in any environment and
in any way it needs.
.
This package contains the asymmetric cryptographic algorithms, which,
This package contains the asymmetric cryptographic algorithms, which
require the GNU multiple precision arithmetic library (libgmp) for
their large integer computations.
 
63,7 → 63,7
Description: low level cryptographic library (development files)
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++,
Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
Python, Pike, ...), in applications like LSH or GnuPG, or even in kernel
space.
.
It tries to solve a problem of providing a common set of cryptographic
85,7 → 85,7
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++,
Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
Python, Pike, ...), in applications like LSH or GnuPG, or even in kernel
space.
.
It tries to solve a problem of providing a common set of cryptographic
112,7 → 112,7
Description: low level cryptographic library (debugging symbols)
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++,
Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
Python, Pike, ...), in applications like LSH or GnuPG, or even in kernel
space.
.
This package contains the debugging symbols for all binary packages.
/tags/2.4-3/debian/nettle-bin.postinst
0,0 → 1,13
#!/bin/sh
 
set -e
 
# Replace documentation directory with symlink
docdir="/usr/share/doc/nettle-bin"
if [ -d $docdir ] && [ ! -L $docdir ]; then
if rmdir $docdir 2>/dev/null; then
ln -sf libnettle4 $docdir
fi
fi
 
#DEBHELPER#