aboutsummaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog24
-rw-r--r--debian/copyright2
-rw-r--r--debian/rules11
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 <[email protected]>. [#42288]
+ * debian/rules (binary-arch): correct the path where modules are looked
+ for. Reported by Karl M. Hegbloom <[email protected]>. [#40881]
+ * debian/postinst, debian/postrm: under protest, register gpg the
+ package with suidmanager and make it suid by default.
+ [#29780,#32590,#40391]
+
+ -- James Troup <[email protected]> Tue, 10 Aug 1999 00:12:40 +0100
+
+gnupg (0.9.10-1) unstable; urgency=low
+
+ * New upstream version.
+
+ -- James Troup <[email protected]> Fri, 6 Aug 1999 01:16:21 +0100
+
+gnupg (0.9.9-1) unstable; urgency=low
+
+ * New upstream version.
+
+ -- James Troup <[email protected]> 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
<[email protected]>, 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 \