* gpg-key2ps now works with revoked subkeys, thanks Christof Douma
authorkink-guest <kink-guest@b513b33f-fedd-0310-b452-c3deb5f4c849>
Sat, 25 Jun 2005 14:35:09 +0000 (14:35 +0000)
committerkink-guest <kink-guest@b513b33f-fedd-0310-b452-c3deb5f4c849>
Sat, 25 Jun 2005 14:35:09 +0000 (14:35 +0000)
  (Closes: #311990).
* Every tool now uses $Rev$ as the version.

git-svn-id: svn://svn.debian.org/pgp-tools/trunk@73 b513b33f-fedd-0310-b452-c3deb5f4c849

debian/changelog
gpg-key2ps/gpg-key2ps
gpg-mailkeys/gpg-mailkeys

index 3a46644a4c683ccbde26835aa29b8c68f744514d..0aaa1c38dd928208d55dd8fc8e7e1f360f779a4d 100644 (file)
@@ -1,3 +1,10 @@
+signing-party (0.4.1-1) unstable; urgency=low
+
+  * gpg-key2ps now works with revoked subkeys, thanks Christof Douma
+    (Closes: #311990).
+
+ -- Thijs Kinkhorst <kink@squirrelmail.org>  Sat, 25 Jun 2005 16:27:42 +0200
+
 signing-party (0.4.0-1) unstable; urgency=low
 
   * Merging signing-party with pgp-tools, now contains caff
index fab1936a59837a806192a845baea8ddb919193c4..74e3953dcb7f24d5454e069d9cf0c71a6c0eb58d 100755 (executable)
@@ -6,7 +6,7 @@
 
 set -e
 
-VERSION="0.4.0"
+VERSION='$Rev$'
 USAGE="Usage: $0 [-p papersize] [-r revoked-style] keyid-or-name"
 
 
@@ -118,10 +118,15 @@ cat <<EOF
        /condhline { } def
 } def
 
+/showAlgorithm {
+  << 16 (g) 17 (D) 1 (R) >> exch get
+  show
+} def
+
 /pub {
        condhline
        50 y moveto (pub) show
-       70 y moveto show show (/) show show
+       70 y moveto show showAlgorithm (/) show show
        150 y moveto show
        200 y moveto show
        newline
@@ -174,7 +179,7 @@ cat <<EOF
 
 /sbk {
        50 y moveto (sub) show
-       70 y moveto show show (/) show show
+       70 y moveto show showAlgorithm (/) show show
        150 y moveto show
        newline
 } def
@@ -184,8 +189,7 @@ cat <<EOF
 EOF
 sed -e '/^tru:/d' \
     -e '/^uat:/d' \
-    -e 's/^pub:[^:]*:\([^:]*\):1:.\{8,8\}\(.\{8,8\}\):\([^:]*\):[^:]*:[^:]*:[^:]*:\([^:]*\):[^:]*:[^:]*:.*/    (\4) (\3) (\2) (R) (\1) pub/' \
-    -e 's/^pub:[^:]*:\([^:]*\):17:.\{8,8\}\(.\{8,8\}\):\([^:]*\):[^:]*:[^:]*:[^:]*:\([^:]*\):[^:]*:[^:]*:.*/   (\4) (\3) (\2) (D) (\1) pub/' \
+    -e 's/^pub:[^:]*:\([^:]*\):\([0-9]*\):.\{8,8\}\(.\{8,8\}\):\([^:]*\):[^:]*:[^:]*:[^:]*:\([^:]*\):[^:]*:[^:]*:.*/   (\5) (\4) (\3) \2 (\1) pub/' \
     -e 's/^fpr:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\):.*/   (\1) fpr/' \
     -e 's/(\(.\{16,16\}\)\(.\{16,16\}\)) fpr/(@split@\1@  @split@\2@) fpr/' \
     -e 's/@split@\(.\{2,2\}\)\(.\{2,2\}\)\(.\{2,2\}\)\(.\{2,2\}\)\(.\{2,2\}\)\(.\{2,2\}\)\(.\{2,2\}\)\(.\{2,2\}\)@/\1 \2 \3 \4 \5 \6 \7 \8/g' \
@@ -193,7 +197,7 @@ sed -e '/^tru:/d' \
     -e 's/@split@\(.\{4,4\}\)\(.\{4,4\}\)\(.\{4,4\}\)\(.\{4,4\}\)\(.\{4,4\}\)@/\1 \2 \3 \4 \5/g' \
     -e 's/^uid:[^:r]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\):.*/  (\1) uid/' \
     -e 's/^uid:r[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\):.*/  (\1) revuid/' \
-    -e 's/^sub:[^:]*:\([^:]*\):16:.\{8,8\}\(.\{8,8\}\):\([^:]*\):[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:.*/       (\3) (\2) (g) (\1) sbk/' \
+    -e 's/^sub:[^:]*:\([^:]*\):\([0-9]*\):.\{8,8\}\(.\{8,8\}\):\([^:]*\):[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:.*/       (\4) (\3) \2 (\1) sbk/' \
     <$TMPFILE
 cat <<EOF
 } def
index 534eb7efe3a4b014f6b6cc5fc444ced845689e6b..2eaeac0aedae17f44d9f23e6a421a2a24fe4c5f5 100755 (executable)
@@ -6,7 +6,7 @@
 
 set -e
 
-VERSION="0.4.0"
+VERSION='$Rev$'
 
 if [ -z "$*" ]; then
        echo "Send people their newly signed GPG key by mail."