diff options
author | Werner Koch <wk@gnupg.org> | 1999-06-29 21:50:54 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1999-06-29 21:50:54 +0200 |
commit | 75ed03c960bf6613d13435499cba0bddc79dc3fd (patch) | |
tree | b2f1fcd92a2dca9c77ae16f98395c04fa9476eb2 /debian | |
parent | See ChangeLog: Sat Jun 26 13:54:43 CEST 1999 Werner Koch (diff) | |
download | gnupg2-75ed03c960bf6613d13435499cba0bddc79dc3fd.tar.xz gnupg2-75ed03c960bf6613d13435499cba0bddc79dc3fd.zip |
See ChangeLog: Tue Jun 29 21:44:25 CEST 1999 Werner Koch
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 26 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | debian/copyright | 4 | ||||
-rw-r--r-- | debian/rules | 4 |
4 files changed, 30 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog index ad0164818..903c23012 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,29 @@ +gnupg (0.9.8-1) unstable; urgency=low + + * New upstream version. + * debian/rules (binary-arch): don't create a gpgm manpage as the binary + no longer exists. Noticed by Wichert Akkerman + <wichert@cs.leidenuniv.nl>. [#38864] + + -- James Troup <james@nocrew.org> Sun, 27 Jun 1999 01:07:58 +0100 + +gnupg (0.9.7-1) unstable; urgency=low + + * New upstream version. + + -- James Troup <james@nocrew.org> Tue, 25 May 1999 13:23:24 +0100 + +gnupg (0.9.6-1) unstable; urgency=low + + * New upstream version. + * debian/copyright: update version number, noticed by Lazarus Long + <lazarus@frontiernet.net>. + * debian/control (Depends): depend on makedev (>= 2.3.1-13) to ensure + that /dev/urandom exists; reported by Steffen Markert + <smort@rz.tu-ilmenau.de>. [#32076] + + -- James Troup <james@nocrew.org> Tue, 11 May 1999 21:06:27 +0100 + gnupg (0.9.5-1) unstable; urgency=low * New upstream version. diff --git a/debian/control b/debian/control index 9e900f8d4..0b6120ea6 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Standards-Version: 2.5.0.0 Package: gnupg Architecture: any -Depends: ${shlibs:Depends} +Depends: ${shlibs:Depends}, makedev (>= 2.3.1-13) Description: GNU privacy guard - a free PGP replacement. GnuPG is the GNU encryption and signing tool. As you can see from the version number, the program may have some bugs and some features may not diff --git a/debian/copyright b/debian/copyright index 9ee053bb2..0ae272dc6 100644 --- a/debian/copyright +++ b/debian/copyright @@ -4,14 +4,14 @@ 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.2.tar.gz. The changes were +ftp://ftp.gnupg.org/pub/gcrypt/gnupg-0.9.8.tar.gz. The changes were minimal, namely: - adding support for the Debian package maintenance scheme, by adding various debian/* files. Program Copyright (C) 1998, 1999 Free Software Foundation, Inc. -Modifications for Debian Copyright (C) 1998 James Troup. +Modifications for Debian Copyright (C) 1998,1999 James Troup. GNUPG is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/debian/rules b/debian/rules index 96b966018..e10b1929b 100644 --- a/debian/rules +++ b/debian/rules @@ -1,5 +1,5 @@ #!/usr/bin/make -f -# debian/rules file - for GNUPG (0.9.4) +# debian/rules file - for GNUPG (0.9.8) # Based on sample debian/rules file - for GNU Hello (1.3). # Copyright 1994,1995 by Ian Jackson. # Copyright 1998 James Troup @@ -34,9 +34,7 @@ binary-arch: checkroot build # test install -d debian/tmp/DEBIAN/ install -m 755 debian/preinst debian/tmp/DEBIAN/preinst $(MAKE) prefix=`pwd`/debian/tmp/usr install - rm debian/tmp/usr/man/man1/gpgm.1 gzip -9v debian/tmp/usr/man/man1/* - ln -s gpg.1.gz debian/tmp/usr/man/man1/gpgm.1.gz strip debian/tmp/usr/bin/* strip --strip-unneeded debian/tmp/usr/lib/gnupg/* install -d debian/tmp/usr/doc/gnupg/ |