Subversion Repositories nettle

Compare Revisions

Ignore whitespace Rev 14 → Rev 15

/trunk/debian/libnettle-dev.files
File deleted
/trunk/debian/libnettle-dev.dirs
File deleted
/trunk/debian/nettle-bin.files
File deleted
/trunk/debian/libnettle2.dirs
File deleted
/trunk/debian/libnettle2.files
File deleted
/trunk/debian/control
2,7 → 2,7
Section: libs
Priority: optional
Maintainer: Magnus Holmgren <magnus@kibibyte.se>
Build-Depends: debhelper (>= 4.0.0), libgmp3-dev, m4, autotools-dev, dpatch
Build-Depends: debhelper (>= 4), libgmp3-dev, m4, autotools-dev, dpatch
Standards-Version: 3.7.2
XS-Vcs-Svn: svn://svn.kibibyte.se/nettle/trunk
XS-Vcs-Browser: http://svn.kibibyte.se/nettle
71,5 → 71,6
lfib (non-cryptographic) pseudorandom generator.
- sexp-conv - conversion tool for handling the different flavours of sexp
syntax.
- pkcs1-conv - converts PKCS#1 keys to sexp format.
.
Homepage: http://www.lysator.liu.se/~nisse/nettle/
/trunk/debian/libnettle-dev.docs
1,0 → 0,0
README
NEWS
descore.README
TODO
nettle.html
nettle.pdf
/trunk/debian/changelog
1,3 → 1,20
nettle (1.15-3) unstable; urgency=low
 
* Use dh_install instead of dh_movefiles.
* Run "make check" by default.
* Ship nettle.pdf in libnettle-dev.
* Include PDF and Info formats in doc-base control file.
* Clean up the libnettle-dev examples directory. There should only be
source files. Note that most of the examples aren't made to be
compiled outside of the nettle source tree, except sha-example.c,
which is the example found in the documentation.
* Move descore.README and TODO from libnettle2.docs to
libnettle-dev.docs, and also add README and NEWS to the latter.
* Make debian/copyright more correct.
* Add pkcs1-conv to nettle-bin package description.
 
-- Magnus Holmgren <magnus@kibibyte.se> Wed, 06 Jun 2007 14:35:13 +0200
 
nettle (1.15-2) unstable; urgency=high
 
* Fix serious regression: The -lgmp added in 1.8-1 fell off in 1.15-1
/trunk/debian/rules
41,7 → 41,10
dh_testdir
 
# Add here commands to compile the package.
$(MAKE)
$(MAKE) MAKEINFO='makeinfo --enable-encoding'
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
$(MAKE) check
endif
 
touch build-stamp
 
74,7 → 77,7
binary-arch: build install
dh_testdir
dh_testroot
dh_movefiles
dh_install --sourcedir=debian/tmp
dh_installchangelogs ChangeLog
dh_installdocs
dh_installexamples
82,7 → 85,7
dh_installman
dh_link
dh_strip
dh_compress
dh_compress -X.pdf
dh_fixperms
dh_makeshlibs -V 'libnettle2 (>= 1.15)'
dh_installdeb
/trunk/debian/libnettle2.docs
1,4 → 1,2
descore.README
NEWS
README
TODO
/trunk/debian/libnettle-dev.install
0,0 → 1,5
usr/include/*
usr/lib/lib*.a
usr/lib/lib*.so
usr/lib/pkgconfig/*
usr/lib/*.la
/trunk/debian/nettle-bin.install
0,0 → 1,0
/usr/bin/*
/trunk/debian/copyright
1,5 → 1,6
This package was debianized by Marek Habersack <grendel@debian.org> on
Tue, 4 Nov 2003 18:23:07 +0100.
The current Debian maintainer is Magnus Holmgren <magnus@kibibyte.se>.
 
It was downloaded from http://www.lysator.liu.se/~nisse/nettle/
 
7,6 → 8,12
 
Copyright:
 
Copyright © 2001-2006 Niels Möller
 
Some parts are Copyright © the Free Software Foundation and various
people. See below and source code comments for details.
 
 
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 dated June, 1991.
21,5 → 28,90
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301, USA.
 
On Debian GNU/Linux systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
 
Nettle is distributed under the GNU General Public License. However,
most of the individual files are dual licensed under less restrictive
licenses like the GNU Lesser General Public License (LGPL), or are in
the public domain. This means that if you don't use the parts of
nettle that are GPL-only, you have the option to use the Nettle
library just as if it were licensed under the LGPL. To find the
current status of particular files, you have to read the copyright
notices at the top of the files.
 
A list of the supported algorithms, their origins and licenses (from
the manual):
 
AES
The implementation of the AES cipher (also known as rijndael) is
written by Rafael Sevilla. Assembler for x86 by Rafael Sevilla and
Niels Möller, Sparc assembler by Niels Möller. Released under the
LGPL.
 
ARCFOUR
The implementation of the ARCFOUR (also known as RC4) cipher is
written by Niels Möller. Released under the LGPL.
 
ARCTWO
The implementation of the ARCTWO (also known as RC2) cipher is
written by Nikos Mavroyanopoulos and modified by Werner Koch and
Simon Josefsson. Released under the LGPL.
 
BLOWFISH
The implementation of the BLOWFISH cipher is written by Werner
Koch, copyright owned by the Free Software Foundation. Also hacked
by Ray Dassen and Niels Möller. Released under the GPL.
 
CAST128
The implementation of the CAST128 cipher is written by Steve Reid.
Released into the public domain.
 
DES
The implementation of the DES cipher is written by Dana L. How, and
released under the LGPL.
 
MD2
The implementation of MD2 is written by Andrew Kuchling, and hacked
some by Andreas Sigfridsson and Niels Möller. Python Cryptography
Toolkit license (essentially public domain).
 
MD4
This is almost the same code as for MD5 below, with modifications
by Marcus Comstedt. Released into the public domain.
 
MD5
The implementation of the MD5 message digest is written by Colin
Plumb. It has been hacked some more by Andrew Kuchling and Niels
Möller. Released into the public domain.
 
SERPENT
The implementation of the SERPENT cipher is written by Ross
Anderson, Eli Biham, and Lars Knudsen, adapted to LSH by Rafael
Sevilla, and to Nettle by Niels Möller. Released under the GPL.
 
SHA1
The C implementation of the SHA1 message digest is written by Peter
Gutmann, and hacked some more by Andrew Kuchling and Niels Möller.
Released into the public domain. Assembler for x86 by Niels Möller,
released under the LGPL.
 
SHA256
Written by Niels Möller, using Peter Gutmann's SHA1 code as a
model. Released under the LGPL.
 
TWOFISH
The implementation of the TWOFISH cipher is written by Ruud de
Rooij. Released under the LGPL.
 
RSA
Written by Niels Möller, released under the LGPL. Uses the GMP
library for bignum operations.
 
DSA
Written by Niels Möller, released under the LGPL. Uses the GMP
library for bignum operations.
 
 
On Debian GNU/Linux systems, the complete texts of the GNU General
Public License and the GNU Lesser General Public License can be found
in /usr/share/common-licenses/GPL and /usr/share/common-licenses/LGPL,
respectively.
/trunk/debian/libnettle2.install
0,0 → 1,0
usr/lib/lib*.so.*
/trunk/debian/libnettle-dev.doc-base
11,3 → 11,10
Format: HTML
Files: /usr/share/doc/libnettle-dev/nettle.html
Index: /usr/share/doc/libnettle-dev/nettle.html
 
Format: PDF
Files: /usr/share/doc/libnettle-dev/nettle.pdf
 
Format: Info
Files: /usr/share/info/nettle.info.gz
Index: /usr/share/info/nettle.info.gz
/trunk/debian/libnettle-dev.examples
1,0 → 0,0
examples/*
sha-example.c
examples/*.[ch]