Your message dated Fri, 23 Sep 2005 08:32:14 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#318740: fixed in sig2dot 0.35
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 17 Jul 2005 12:12:30 +0000
>From [EMAIL PROTECTED] Sun Jul 17 05:12:30 2005
Return-path: <[EMAIL PROTECTED]>
Received: from octopus.kti.ae.poznan.pl [150.254.204.7] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1Du80U-0006un-00; Sun, 17 Jul 2005 05:12:30 -0700
Received: from localhost ([127.0.0.1] helo=amavis)
        by octopus.kti.ae.poznan.pl with esmtp (Exim 3.35 #1 (Debian))
        id 1Du7zs-0002k0-00
        for <[EMAIL PROTECTED]>; Sun, 17 Jul 2005 14:11:52 +0200
Received: from octopus.kti.ae.poznan.pl ([127.0.0.1])
        by amavis (octopus.kti.ae.poznan.pl [127.0.0.1]) (amavisd-new, port 
10024)
        with ESMTP id 09553-07 for <[EMAIL PROTECTED]>;
        Sun, 17 Jul 2005 14:11:50 +0200 (CEST)
Received: from random.kti.ae.poznan.pl ([150.254.204.56] helo=localhost)
        by octopus.kti.ae.poznan.pl with esmtp (Exim 3.35 #1 (Debian))
        id 1Du7zq-0002jr-00; Sun, 17 Jul 2005 14:11:50 +0200
Date: Sun, 17 Jul 2005 14:11:51 +0200
From: Thomas Huriaux <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: sig2dot does not skip revoked keys
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
        protocol="application/pgp-signature"; boundary="4SFOXa2GPu3tIq4H"
Content-Disposition: inline
X-Reportbug-Version: 3.15
Organization: KTI - Akademia Ekonomiczna w Poznaniu
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at kti.ae.poznan.pl
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no 
        version=2.60-bugs.debian.org_2005_01_02


--4SFOXa2GPu3tIq4H
Content-Type: multipart/mixed; boundary="jRHKVT23PllUwdXP"
Content-Disposition: inline


--jRHKVT23PllUwdXP
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: sig2dot
Version: 0.34-4
Severity: normal
Tags: patch

The current version of sig2dot does not skip the revoked keys due to
a change to gpg. The same problem occurs if an internationalized
version of gpg is used. The attached patch should fix the problem.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.10
Locale: LANG=3Den_US.UTF-8, LC_CTYPE=3Den_US.UTF-8 (charmap=3DUTF-8)

--=20
Thomas Huriaux

--jRHKVT23PllUwdXP
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: attachment; filename="sig2dot.diff"
Content-Transfer-Encoding: quoted-printable

--- sig2dot.orig        2005-07-16 22:40:18.000000000 +0200
+++ sig2dot     2005-07-16 23:50:16.809325011 +0200
@@ -30,6 +30,12 @@
 #   "[User-ID nicht gefunden]" if they use GnuPG with German
 #   messages. Default is "[User id not found]".
 #
+# -r <"string">
+#   Support localized output of GnuPG for revoked keys. For
+#   example, French users have to write (with quotation marks,
+#   non-ascii characters and without brackets!) "r=E9voqu=E9" if
+#   they use GnuPG with French messages. Default is "revoked".
+#
 # Changes:
 #
 # v0.9 2000-09-14 19:20  strip trailing whitespace from $id more cleanly
@@ -61,7 +67,7 @@
=20
 require "getopts.pl";
=20
-&Getopts('d:u:s:ba');
+&Getopts('d:u:r:s:ba');
=20
 if ($opt_d) {=20
   $renderdate =3D $opt_d;=20
@@ -86,6 +92,12 @@
   $all =3D 0;
 }
=20
+if ($opt_r) {
+  $revoked =3D lc $opt_r;
+} else {
+  $revoked =3D "revoked";
+}
+
 if ($opt_u) {
   $not_found =3D lc $opt_u;
 } else {
@@ -121,6 +133,8 @@
     $date =3D $3;
     $name =3D $4 || "";
    =20
+    next if $revlist{$id} eq 1;
+
     $date =3D~ tr/-//d;
     if ($type eq "pub" or $renderdate eq "" or $date <=3D $renderdate)
     {
@@ -140,7 +154,7 @@
       $name{$id} =3D $name if $name; # gpg 1.4 fixup
  =20
       # skip revoked keys=20
-      if ($name =3D~ /^\[revoked/) {
+      if ($name =3D~ /^\[$revoked/) {
         $revlist{$id} =3D 1;
         next;
       }

--jRHKVT23PllUwdXP--

--4SFOXa2GPu3tIq4H
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC2ksHb8LyHhAYItIRAtiNAJwMEYdhtdeG3fztE1fz8hRI2gyjSgCeJDM+
80D2xFSUfgOeqnzR3UkE8rk=
=wY71
-----END PGP SIGNATURE-----

--4SFOXa2GPu3tIq4H--

---------------------------------------
Received: (at 318740-close) by bugs.debian.org; 23 Sep 2005 15:38:03 +0000
>From [EMAIL PROTECTED] Fri Sep 23 08:38:03 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EIpX4-0002FD-00; Fri, 23 Sep 2005 08:32:14 -0700
From: Christoph Berg <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#318740: fixed in sig2dot 0.35
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 23 Sep 2005 08:32:14 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: sig2dot
Source-Version: 0.35

We believe that the bug you reported is fixed in the latest version of
sig2dot, which is due to be installed in the Debian FTP archive:

sig2dot_0.35.dsc
  to pool/main/s/sig2dot/sig2dot_0.35.dsc
sig2dot_0.35.tar.gz
  to pool/main/s/sig2dot/sig2dot_0.35.tar.gz
sig2dot_0.35_all.deb
  to pool/main/s/sig2dot/sig2dot_0.35_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christoph Berg <[EMAIL PROTECTED]> (supplier of updated sig2dot package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Fri, 23 Sep 2005 13:27:33 +0200
Source: sig2dot
Binary: sig2dot
Architecture: source all
Version: 0.35
Distribution: unstable
Urgency: low
Maintainer: Christoph Berg <[EMAIL PROTECTED]>
Changed-By: Christoph Berg <[EMAIL PROTECTED]>
Description: 
 sig2dot    - converts a list of GPG signatures to a .dot file
Closes: 318740 318751
Changes: 
 sig2dot (0.35) unstable; urgency=low
 .
   * Use strict and warnings.
   * New -h/-q/-v options.
   * Remove comment fields from UIDs (Closes: #318751).
   * Support localized strings for revoked keys (Closes: #318740).
   * Bump Standards-Version.
Files: 
 cb943b5b00f77f1f39bfd7a3a9a35c6b 492 graphics extra sig2dot_0.35.dsc
 5ce839a0d425c44af04a8a2beb986f93 7516 graphics extra sig2dot_0.35.tar.gz
 ccf36fd0ca5100b64141825b68e24cb2 8934 graphics extra sig2dot_0.35_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDNA9+xa93SlhRC1oRAsYCAKDMDlofc7FOQtQp4IfQD0oRtSzbiACg3c4p
RBFLq3irD9bmAzMXKayvRbQ=
=S2T+
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to