Bug 31949 - Update port: security/pgpdump
Summary: Update port: security/pgpdump
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-11-13 04:40 UTC by kaoru
Modified: 2001-12-02 23:38 UTC (History)
0 users

See Also:


Attachments
file.diff (580 bytes, patch)
2001-11-13 04:40 UTC, kaoru
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description kaoru 2001-11-13 04:40:01 UTC
Update to pgpdump 0.15.
Comment 1 jharris 2001-11-29 20:20:36 UTC
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
NotDashEscaped: You need GnuPG to verify this message


> MASTER_SITES=  ftp://pgp.iijlab.net/pub/pgp/tools/
>
>diff -ruN pgpdump.orig/distinfo pgpdump/distinfo
>--- pgpdump.orig/distinfo       Sat Nov 10 05:59:01 2001
>+++ pgpdump/distinfo    Tue Nov 13 13:34:53 2001
>@@ -1 +1 @@
>-MD5 (pgpdump-0.14.tar.gz) = db1a93af0dd7c65c6d21884b686f9b55
>+MD5 (pgpdump-0.15.tar.gz) = 72031e65fa25fd76f2b35f4b1bca89ea

pgpdump-0.14.tar.gz is now unfetchable as well, since it has been
removed from the FTP site.

The following patch against pgpdump-0.15 makes it possible to feed
the Key ID directly to gpg --recv-keys, which I find quite useful.
The author has been sent a copy.


--- pgpdump.h	2001/11/29 19:04:38	1.1
+++ pgpdump.h	2001/11/29 19:06:55
@@ -68,6 +68,10 @@
 		int i; for (i = 0; i < (len); i++) printf("%02x ", Getc());\
 	} while (0)
 
+#define kdump(len) printf ("0x"); do {\
+		int i; for (i = 0; i < (len); i++) printf("%02X", Getc());\
+	} while (0)
+
 /*
  *  packet.c
  */
--- types.c~	Mon Nov 12 02:07:29 2001
+++ types.c	Thu Nov 29 14:08:00 2001
@@ -157,7 +157,7 @@
 key_id(void)
 {
 	printf("\tKey ID - ");
-	dump(8);
+	kdump(8);
 	printf("\n");
 }
 
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (FreeBSD)
Comment: For info see http://www.gnupg.org

iD8DBQE8BpaSSypIl9OdoOMRArBXAJ9E+f8S/qdw5u6sesEF8fQgyJQ7sQCfRYca
0qw2dqDJ71EmHaXzvZ3pWQ8=
=ND7X
-----END PGP SIGNATURE-----
Comment 2 Pete Fritchman freebsd_committer freebsd_triage 2001-12-02 23:38:47 UTC
State Changed
From-To: open->closed

Committed, thanks!