diff options
author | Werner Koch <wk@gnupg.org> | 1999-08-30 20:48:57 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1999-08-30 20:48:57 +0200 |
commit | c2c397bedfe748472a3d1045f24a79a062e7fa5e (patch) | |
tree | 2b0613d28783e42e76908d848167f0244dcbeb88 /debian | |
parent | See ChangeLog: Wed Aug 4 10:34:46 CEST 1999 Werner Koch (diff) | |
download | gnupg2-c2c397bedfe748472a3d1045f24a79a062e7fa5e.tar.xz gnupg2-c2c397bedfe748472a3d1045f24a79a062e7fa5e.zip |
See ChangeLog: Mon Aug 30 20:38:33 CEST 1999 Werner Koch
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 24 | ||||
-rw-r--r-- | debian/copyright | 2 | ||||
-rw-r--r-- | debian/rules | 11 |
3 files changed, 33 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 903c23012..432779c08 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,27 @@ +gnupg (0.9.10-2) unstable; urgency=low + + * debian/rules (binary-arch): install lspgpot. Requested by Kai + Henningsen <kai@khms.westfalen.de>. [#42288] + * debian/rules (binary-arch): correct the path where modules are looked + for. Reported by Karl M. Hegbloom <karlheg@odin.cc.pdx.edu>. [#40881] + * debian/postinst, debian/postrm: under protest, register gpg the + package with suidmanager and make it suid by default. + [#29780,#32590,#40391] + + -- James Troup <james@nocrew.org> Tue, 10 Aug 1999 00:12:40 +0100 + +gnupg (0.9.10-1) unstable; urgency=low + + * New upstream version. + + -- James Troup <james@nocrew.org> Fri, 6 Aug 1999 01:16:21 +0100 + +gnupg (0.9.9-1) unstable; urgency=low + + * New upstream version. + + -- James Troup <james@nocrew.org> Sun, 25 Jul 1999 01:06:31 +0100 + gnupg (0.9.8-1) unstable; urgency=low * New upstream version. diff --git a/debian/copyright b/debian/copyright index 0ae272dc6..6c08adfc7 100644 --- a/debian/copyright +++ b/debian/copyright @@ -4,7 +4,7 @@ have some bugs and some features may not work at all. This package was put together by me, James Troup <james@nocrew.org>, from the sources, which I obtained from -ftp://ftp.gnupg.org/pub/gcrypt/gnupg-0.9.8.tar.gz. The changes were +ftp://ftp.gnupg.org/pub/gcrypt/gnupg-0.9.10.tar.gz. The changes were minimal, namely: - adding support for the Debian package maintenance scheme, by adding diff --git a/debian/rules b/debian/rules index e10b1929b..3583ed4f7 100644 --- a/debian/rules +++ b/debian/rules @@ -1,5 +1,5 @@ #!/usr/bin/make -f -# debian/rules file - for GNUPG (0.9.8) +# debian/rules file - for GNUPG (0.9.10) # Based on sample debian/rules file - for GNU Hello (1.3). # Copyright 1994,1995 by Ian Jackson. # Copyright 1998 James Troup @@ -32,11 +32,16 @@ binary-arch: checkroot build # test $(checkdir) -rm -rf debian/tmp install -d debian/tmp/DEBIAN/ - install -m 755 debian/preinst debian/tmp/DEBIAN/preinst + install -m 755 debian/preinst debian/postinst debian/postrm debian/tmp/DEBIAN/ $(MAKE) prefix=`pwd`/debian/tmp/usr install - gzip -9v debian/tmp/usr/man/man1/* strip debian/tmp/usr/bin/* + sed -e "s#../g10/gpg#gpg#" < tools/lspgpot > debian/tmp/usr/bin/lspgpot + chmod 755 debian/tmp/usr/bin/lspgpot strip --strip-unneeded debian/tmp/usr/lib/gnupg/* + sed -e "s#/usr/local/#/usr/#" < debian/tmp/usr/man/man1/gpg.1 \ + > debian/tmp/usr/man/man1/gpg.1.new + mv debian/tmp/usr/man/man1/gpg.1.new debian/tmp/usr/man/man1/gpg.1 + gzip -9v debian/tmp/usr/man/man1/* install -d debian/tmp/usr/doc/gnupg/ install -m 644 debian/changelog debian/tmp/usr/doc/gnupg/changelog.Debian install -m 644 debian/README.Debian README NEWS THANKS TODO doc/DETAILS \ |