Subversion Repositories nettle

Compare Revisions

Ignore whitespace Rev 64 → Rev 70

/tags/2.1-2/debian/control
2,8 → 2,8
Section: libs
Priority: optional
Maintainer: Magnus Holmgren <holmgren@debian.org>
Build-Depends: debhelper (>= 5), libgmp10-dev, m4, autotools-dev (>= 20100122.1)
Standards-Version: 3.8.3
Build-Depends: debhelper (>= 7), libgmp10-dev, m4, autotools-dev (>= 20100122.1)
Standards-Version: 3.9.1
Vcs-Svn: svn://svn.kibibyte.se/nettle/trunk
Vcs-Browser: http://svn.kibibyte.se/nettle
Homepage: http://www.lysator.liu.se/~nisse/nettle/
68,7 → 68,7
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Conflicts: libnettle1, lsh-utils (<< 2.0.4-dfsg-1)
Suggests: lsh-utils-doc | lsh-doc
Suggests: lsh-doc
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++,
/tags/2.1-2/debian/compat
1,0 → 0,0
5
7
/tags/2.1-2/debian/changelog
1,3 → 1,13
nettle (2.1-2) unstable; urgency=low
 
* Upload to unstable.
* Increase Debhelper compat level to 7.
* debian/rules: Add build-indep and build-arch targets.
* debian/copyright: Add entry for dsa2sexp.c.
* No longer suggest lsh-utils-doc as an alternative to lsh-doc.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 20 Mar 2011 01:48:24 +0100
 
nettle (2.1-1) experimental; urgency=low
 
* New upstream release (Closes: #594386). Thanks to Sedat Dilek for
10,8 → 20,17
* Build-depend on the new libgmp10-dev instead of libgmp3-dev.
* Convert to source package format 3.0 (quilt), using
dh_autotools-dev_*config to update config.sub and config.guess files.
* Handle the parallel DEB_BUILD_OPTIONS option.
* Pass --libdir=/usr/lib to ./configure since it will otherwise try to
be smart and pick /usr/lib32 or /usr/lib64 on certain platforms.
* General tidying of debian/rules:
- Remove handling of noopt option (dpkg-buildpackage sets CFLAGS).
- Remove remnants of nostrip option handling.
- Only pass --host to ./configure if HOST != BUILD, as is recommended.
- Remove redundant compiler and configure flags.
* Bump Standards-Version to 3.9.1.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 16 Jan 2011 21:16:45 +0100
-- Magnus Holmgren <holmgren@debian.org> Tue, 18 Jan 2011 23:44:49 +0100
 
nettle (2.0-2) unstable; urgency=low
 
/tags/2.1-2/debian/rules
11,16 → 11,15
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
CFLAGS = -Wall -g
LDFLAGS = -Wl,--as-needed
 
ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
buildflags = --build=$(DEB_BUILD_GNU_TYPE)
else
CFLAGS += -O2
buildflags = --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
endif
ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
 
parallel = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
ifneq (,$(parallel))
jobsflag = -j$(parallel)
endif
 
config.status: configure
27,14 → 26,12
dh_testdir
# Add here commands to configure the package.
dh_autotools-dev_updateconfig
./configure --host=$(DEB_HOST_GNU_TYPE) \
--build=$(DEB_BUILD_GNU_TYPE) \
./configure $(buildflags) \
--prefix=/usr \
--mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info \
--libdir=\$${prefix}/lib \
--enable-shared \
--disable-dependency-tracking \
CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS) -Wl,--as-needed"
 
 
build: build-stamp
42,7 → 39,7
dh_testdir
 
# Add here commands to compile the package.
$(MAKE) MAKEINFO='makeinfo --enable-encoding'
$(MAKE) $(jobsflag) MAKEINFO='makeinfo --enable-encoding'
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
$(MAKE) check
endif
62,7 → 59,7
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_prep
dh_installdirs
 
# Add here commands to install the package into debian/tmp
69,11 → 66,13
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
 
# Build architecture-independent files here.
build-indep:
binary-indep:
# Nothing to do
 
# Build architecture-dependent files here.
binary-arch: build install
build-arch: build
binary-arch: build-arch install
dh_testdir
dh_testroot
dh_install -a --sourcedir=debian/tmp
86,7 → 85,7
dh_strip -a --dbg-package=nettle-dbg
dh_compress -a -X.pdf
dh_fixperms -a
dh_makeshlibs #-V 'libnettle2 (>= 1.15)'
dh_makeshlibs -a
dh_installdeb -a
dh_shlibdeps -a
dh_gencontrol -a
94,4 → 93,4
dh_builddeb -a
 
binary: binary-arch
.PHONY: build clean clean-patched binary-indep binary-arch binary install
.PHONY: build build-indep build-arch clean clean-patched binary-indep binary-arch binary install
/tags/2.1-2/debian/copyright
184,6 → 184,10
Copyright: © 2001-2006 Niels Möller
License: GPL-2
 
Files: dsa2sexp.c
Copyright: © 2002, 2009 Niels Möller
© 2009 Magnus Holmgren
 
Files: testsuite/des-compat-test.c
Copyright: © 1995-1997 Eric Young (eay@cryptsoft.com)
License: other