Hi Jochen, On Sat, 23 Aug 2014 at 17:31:06 +0200, Jochen Schmitt wrote: > I would like to forward several patches which I have applied to the > pgp-tools package in Fedora for upstream integration.
Thanks!
> diff -urNp --exclude-from=/home/mdomsch/excludes --minimal
> signing-party-1.1.orig/keyanalyze/Makefile
> signing-party-1.1/keyanalyze/Makefile
> --- signing-party-1.1.orig/keyanalyze/Makefile 2009-02-21
> 04:30:01.000000000 -0600
> +++ signing-party-1.1/keyanalyze/Makefile 2009-04-18 00:04:14.000000000
> -0500
> @@ -1,21 +1,16 @@
> LDLIBS=-lpthread
> CFLAGS=-O2 -W -Wall -g
>
> -all: keyanalyze process_keys pgpring/pgpring
> +all: keyanalyze process_keys
Which issue gets fixed by not compiling pgpring?
> diff -up signing-party-1.1.4/gpg-key2ps/gpg-key2ps.paper
> signing-party-1.1.4/gpg-key2ps/gpg-key2ps
> --- signing-party-1.1.4/gpg-key2ps/gpg-key2ps.paper 2013-06-16
> 16:30:54.643953002 +0200
> +++ signing-party-1.1.4/gpg-key2ps/gpg-key2ps 2013-06-16 16:33:36.937227454
> +0200
> @@ -89,8 +89,8 @@ usage(\*STDERR, 1) unless scalar @ARGV >
> # determine the paper size through the paperconf tool
> my $w; my $h;
> if ( `which paperconf` && $? == 0 ) {
> - $w=`paperconf -w`;
> - $h=`paperconf -h`;
> + $w=`paperconf -w | tr "," "."`;
> + $h=`paperconf -h` | tr "," "."`;
I just pushed something equivalent, but used Perl's transliteration
operator instead, which should be more efficient than a fork.
Cheers,
--
Guilhem.
signature.asc
Description: Digital signature

