From guilhem at moszumanska.debian.org Mon Jan 29 10:33:26 2018 From: guilhem at moszumanska.debian.org (Guilhem Moulin) Date: Mon, 29 Jan 2018 10:33:26 +0000 Subject: [Pgp-tools-commit] r900 - in trunk: debian gpgsigs Message-ID: Author: guilhem Date: 2018-01-29 10:33:26 +0000 (Mon, 29 Jan 2018) New Revision: 900 Modified: trunk/debian/changelog trunk/gpgsigs/gpgsigs Log: gpgsigs: Set UAT density to 90dpi so XeLaTeX doesn't complain that the image is too large Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2017-08-10 15:48:31 UTC (rev 899) +++ trunk/debian/changelog 2018-01-29 10:33:26 UTC (rev 900) @@ -4,6 +4,9 @@ + Add support for ECDH, ECDSA and EDDSA key types. + Align key type & size listing to the GnuPG 2.1.x output (e.g., "rsa4096/DEADBEEF" instead of "4096R/DEADBEEF"). + * gpgsigs: + + Set UAT (jpeg photos) density to 90dpi so XeLaTeX doesn't complain that + the image is too large. -- Guilhem Moulin Thu, 10 Aug 2017 11:40:03 -0400 Modified: trunk/gpgsigs/gpgsigs =================================================================== --- trunk/gpgsigs/gpgsigs 2017-08-10 15:48:31 UTC (rev 899) +++ trunk/gpgsigs/gpgsigs 2018-01-29 10:33:26 UTC (rev 900) @@ -288,9 +288,11 @@ if ($latex) { $uat->{file} = "${key}_".($#uats - $#found).".jpg"; - open my $pic, '>:raw', $uat->{file} or die "Couldn't open: $!"; + my $pid = open my $pic, '|-', 'convert', 'jpg:-', '-density', 90, $uat->{file} or die "Can't run convert(1)\n"; print $pic (substr $chunk, 16); close $pic; + waitpid $pid, 0; + warn "convert(1) exited with value ".($? >> 8)."\n" if $?; } } close $photosfd if $latex; @@ -337,8 +339,10 @@ sub getChecksum ($$) { my ($algo, $infile) = @_; - open MD, '-|', $ENV{GNUPGBIN} // 'gpg', qw/--with-colons --print-md/, $algo, $infile or warn "Can't get gpg $algo digest\n"; + my $pid = open MD, '-|', $ENV{GNUPGBIN} // 'gpg', qw/--with-colons --print-md/, $algo, $infile or warn "Can't get gpg $algo digest\n"; my $digest = ; + waitpid $pid, 0; + warn "gpg(1) exited with value ".($? >> 8)."\n" if $?; close MD; return $1 if $digest and $digest =~ /:([0-9A-F]+):[^:]*$/; } From guilhem at moszumanska.debian.org Mon Jan 29 10:46:03 2018 From: guilhem at moszumanska.debian.org (Guilhem Moulin) Date: Mon, 29 Jan 2018 10:46:03 +0000 Subject: [Pgp-tools-commit] r901 - trunk/debian Message-ID: Author: guilhem Date: 2018-01-29 10:45:59 +0000 (Mon, 29 Jan 2018) New Revision: 901 Modified: trunk/debian/changelog trunk/debian/control Log: debian/control: Bump Standards-Version to 4.1.3 Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2018-01-29 10:33:26 UTC (rev 900) +++ trunk/debian/changelog 2018-01-29 10:45:59 UTC (rev 901) @@ -7,6 +7,8 @@ * gpgsigs: + Set UAT (jpeg photos) density to 90dpi so XeLaTeX doesn't complain that the image is too large. + * debian/control: Bump Standards-Version to 4.1.3 + + Replace "extra" priority to "optional" -- Guilhem Moulin Thu, 10 Aug 2017 11:40:03 -0400 Modified: trunk/debian/control =================================================================== --- trunk/debian/control 2018-01-29 10:33:26 UTC (rev 900) +++ trunk/debian/control 2018-01-29 10:45:59 UTC (rev 901) @@ -1,12 +1,12 @@ Source: signing-party Section: misc -Priority: extra +Priority: optional Maintainer: Guilhem Moulin Uploaders: Simon Richter Build-Depends: debhelper (>= 9), python, dh-python, autoconf, automake, autotools-dev, libmd-dev -Standards-Version: 4.0.0 +Standards-Version: 4.1.3 Homepage: https://pgp-tools.alioth.debian.org/ Vcs-Svn: svn://anonscm.debian.org/pgp-tools/trunk Vcs-Browser: https://anonscm.debian.org/viewvc/pgp-tools From guilhem at moszumanska.debian.org Mon Jan 29 10:46:12 2018 From: guilhem at moszumanska.debian.org (Guilhem Moulin) Date: Mon, 29 Jan 2018 10:46:12 +0000 Subject: [Pgp-tools-commit] r902 - trunk/debian Message-ID: Author: guilhem Date: 2018-01-29 10:46:12 +0000 (Mon, 29 Jan 2018) New Revision: 902 Modified: trunk/debian/changelog trunk/debian/rules Log: debian/rules: Remove deprecated dh_autotools-dev_updateconfig and dh_autotools-dev_restoreconfig. Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2018-01-29 10:45:59 UTC (rev 901) +++ trunk/debian/changelog 2018-01-29 10:46:12 UTC (rev 902) @@ -9,6 +9,8 @@ the image is too large. * debian/control: Bump Standards-Version to 4.1.3 + Replace "extra" priority to "optional" + * debian/rules: Remove deprecated dh_autotools-dev_updateconfig and + dh_autotools-dev_restoreconfig. -- Guilhem Moulin Thu, 10 Aug 2017 11:40:03 -0400 Modified: trunk/debian/rules =================================================================== --- trunk/debian/rules 2018-01-29 10:45:59 UTC (rev 901) +++ trunk/debian/rules 2018-01-29 10:46:12 UTC (rev 902) @@ -28,14 +28,13 @@ build-indep: build-stamp build-stamp: configure-stamp dh_testdir - dh_autotools-dev_updateconfig + dh_update_autotools_config $(MAKE) touch $@ clean: dh_testdir dh_testroot - dh_autotools-dev_restoreconfig $(MAKE) clean rm -f build-stamp configure-stamp dh_clean From guilhem at moszumanska.debian.org Mon Jan 29 10:46:50 2018 From: guilhem at moszumanska.debian.org (Guilhem Moulin) Date: Mon, 29 Jan 2018 10:46:50 +0000 Subject: [Pgp-tools-commit] r903 - trunk/debian Message-ID: Author: guilhem Date: 2018-01-29 10:46:50 +0000 (Mon, 29 Jan 2018) New Revision: 903 Modified: trunk/debian/changelog Log: Prepare new release. Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2018-01-29 10:46:12 UTC (rev 902) +++ trunk/debian/changelog 2018-01-29 10:46:50 UTC (rev 903) @@ -1,4 +1,4 @@ -signing-party (2.7-1) UNRELEASED; urgency=low +signing-party (2.7-1) unstable; urgency=low * gpg-key2ps: + Add support for ECDH, ECDSA and EDDSA key types. @@ -12,7 +12,7 @@ * debian/rules: Remove deprecated dh_autotools-dev_updateconfig and dh_autotools-dev_restoreconfig. - -- Guilhem Moulin Thu, 10 Aug 2017 11:40:03 -0400 + -- Guilhem Moulin Mon, 29 Jan 2018 11:46:19 +0100 signing-party (2.6-1) unstable; urgency=low From guilhem at moszumanska.debian.org Mon Jan 29 10:48:52 2018 From: guilhem at moszumanska.debian.org (Guilhem Moulin) Date: Mon, 29 Jan 2018 10:48:52 +0000 Subject: [Pgp-tools-commit] r904 - tags Message-ID: Author: guilhem Date: 2018-01-29 10:48:52 +0000 (Mon, 29 Jan 2018) New Revision: 904 Added: tags/release-2.7/ Log: tagging release 2.7 From guilhem at moszumanska.debian.org Mon Jan 29 10:49:02 2018 From: guilhem at moszumanska.debian.org (Guilhem Moulin) Date: Mon, 29 Jan 2018 10:49:02 +0000 Subject: [Pgp-tools-commit] r905 - tags Message-ID: Author: guilhem Date: 2018-01-29 10:49:02 +0000 (Mon, 29 Jan 2018) New Revision: 905 Added: tags/debian-version-2.7-1/ Log: tagging debian version 2.7-1