X-Git-Url: https://git.sthu.org/?a=blobdiff_plain;f=gpgsigs%2Fgpgsigs;h=2c4da429ac0290e5ea9ac7a82122f354bedfc503;hb=b6f3799ed2d896195b4d67868c0f2ba6b2b1a827;hp=af1a379530429fe8c09d3280ab71cdeb1b9b8db4;hpb=f09cfb5ddbcfaf4ba0247f86fadac60dc3a5e1b1;p=pgp-tools.git diff --git a/gpgsigs/gpgsigs b/gpgsigs/gpgsigs index af1a379..2c4da42 100755 --- a/gpgsigs/gpgsigs +++ b/gpgsigs/gpgsigs @@ -54,6 +54,8 @@ separate multiple keyids with ',' -r call gpg --recv-keys before proceeding -f convert from charset -t convert UIDs to charset in output +--refresh regenerate UID lists on keys +--latex generate LaTeX output including photo IDs EOF exit $error; } @@ -150,7 +152,7 @@ print STDERR "Running --list-sigs, this will take a while "; open SIGS, "gpg --fixed-list-mode --with-colons --list-sigs @mykeys @keys 2>/dev/null |" or die "can't get gpg listing"; -my ($key, $uid, $sigs, $uidstatus); +my ($key, $uid, $sigs); while () { if ( m/^pub:(?:.*?:){3,3}([0-9A-F]{16,16}):/ ) { $key = $1; @@ -158,24 +160,26 @@ while () { next; } if ( m/^uid:(.):(?:.*?:){7,7}(.*):/s ) { - $uidstatus = $1; + my $uidstatus = $1; $uid = $2; $uid =~ s/\\x([0-9a-f][0-9a-f])/ chr(hex($1)) /gie; $uid = myrecode($uid, "UTF-8", $charset); my ($shortkey) = substr $key, -8; # Remember non-revoked uids - if ($uidstatus ne "r") { - push @{$uids{$shortkey}}, $uid; - } - + next if $uidstatus eq "r"; + push @{$uids{$shortkey}}, $uid; next; } - if ( m/^uat:(.):/ ) { # uat:-::::2006-08-03::27BAEAF742BD253C2F3F03B043DC1536880193C4::1 7993: - $uidstatus = $1; - next if $uidstatus ne "-"; - system "gpg --photo-viewer 'convert - %k.eps' --list-options show-photos --list-key $key"; - $uid = "Photo ID"; + if ( m/^uat:(.)::::[^:]+::([0-9A-F]+)::\d+ (\d+)/ ) { # uat:-::::2006-08-03::27BAEAF742BD253C2F3F03B043DC1536880193C4::1 7993: + my $uidstatus = $1; + # $2 is hash of attribute data + my $size = $3 - 19; # FIXME: find a nicer way to find out picture size + $uid = "[jpeg image of size $size]"; + next if $uidstatus eq "r"; + if ($latex) { + system "gpg --photo-viewer 'convert - %k.eps' --list-options show-photos --list-key $key > /dev/null"; + } my ($shortkey) = substr $key, -8; push @{$uids{$shortkey}}, $uid; next; @@ -329,7 +333,7 @@ while () { if ($refresh or $latex) { foreach $uid (@{$uids{$key}}) { print WRITE print_tag($key, $uid) . " $uid\n"; - if ($latex and ($uid eq "Photo ID")) { + if ($latex and ($uid =~ /^\[jpeg image/)) { print WRITE "\\begin{flushright}\n"; print WRITE "\\includegraphics[height=3cm]{$key.eps}\n"; print WRITE "\\end{flushright}\n"; @@ -386,7 +390,7 @@ B - annotate list of GnuPG keys with already done signatures =head1 SYNOPSIS -B [-r] [-f I] [-t I] II<[>B<,>IB<,>I<...>I<]>>I<]> F [F] +B [I] II<[>B<,>IB<,>I<...>I<]>>I<]> F [F] =head1 DESCRIPTION @@ -400,19 +404,28 @@ and placeholders (C<__ __>), the checksum is inserted. =over -=item -r +=item B<-r> Call I before creating the output. -=item -f I +=item B<-f> I Convert F from I. The default is ISO-8859-1. -=item -t I +=item B<-t> I Convert UIDs to I. The default is derived from LC_ALL, LC_CTYPE, and LANG, and if all these are unset, the default is ISO-8859-1. +=item B<--refresh> + +Refresh the UID lists per key from gpg. Useful when UIDs were added or revoked +since the input text was generated. + +=item B<--latex> + +Generate LaTeX output, including photo IDs. Implies B<--refresh>. + =item I Use this keyid (8 or 16 byte) for annotation. Multiple keyids can be separated