Package: signing-party
Version: 2.7-2
Hi!
for this years DebConf KSP, I had to apply the attached patch to
make gpgsigs understand the incoming text file format. I imagine
this is due to a change in the output of current gpg.
Please consider applying it.
Thanks,
Chris
--- gpgsigs.orig 2018-07-22 17:52:56.000000000 +0800
+++ gpgsigs 2018-07-22 16:54:14.000000000 +0800
@@ -469,9 +472,9 @@
next;
}
- if ( m/^uid +(.*)$/ ) {
+ if ( m/^uid\s+(\[[^\]]+\] )?+(.*)$/ ) {
next if $refresh or $latex;
- my $uid = $locale->encode( Encode::decode($fromcharset, $1) );
+ my $uid = $locale->encode( Encode::decode($fromcharset, $2) );
unless (defined $key) {
warn "key is undefined - input text is possibly
malformed near line $line\n";
next;