From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38888) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dw9GI-00068A-Eo for guix-patches@gnu.org; Sun, 24 Sep 2017 11:56:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dw9GE-0001Dn-He for guix-patches@gnu.org; Sun, 24 Sep 2017 11:56:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47551) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dw9GE-0001DY-Db for guix-patches@gnu.org; Sun, 24 Sep 2017 11:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dw9GE-0004gq-4m for guix-patches@gnu.org; Sun, 24 Sep 2017 11:56:02 -0400 Subject: [bug#28579] gpa Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dw9FR-0005Uu-V6 for guix-patches@gnu.org; Sun, 24 Sep 2017 11:55:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dw9FO-0000gC-2A for guix-patches@gnu.org; Sun, 24 Sep 2017 11:55:14 -0400 Received: from aibo.runbox.com ([91.220.196.211]:41944) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dw9FN-0000dR-Q6 for guix-patches@gnu.org; Sun, 24 Sep 2017 11:55:09 -0400 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1dw9FL-0004cz-MK for guix-patches@gnu.org; Sun, 24 Sep 2017 17:55:07 +0200 Received: from orion.enn.lu ([94.242.246.24] helo=localhost) by mailfront10.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1dw9F8-0004LI-NQ for guix-patches@gnu.org; Sun, 24 Sep 2017 17:54:54 +0200 Date: Sun, 24 Sep 2017 15:54:52 +0000 From: ng0 Message-ID: <20170924155452.lsq7mbnbuwa6clei@abyayala> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ayteggmj4baaaqrq" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28579@debbugs.gnu.org --ayteggmj4baaaqrq Content-Type: multipart/mixed; boundary="i3sb4tuteeefz7sv" Content-Disposition: inline --i3sb4tuteeefz7sv Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable A GUI for GnuPG. Builds. GUI works, Preferences pick up my $HOME/.gnupg settings. More wasn't tested. --=20 ng0 GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588 GnuPG: https://krosos.org/dist/keys/ https://www.infotropique.org https://www.krosos.org --i3sb4tuteeefz7sv Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-gpa.patch" Content-Transfer-Encoding: quoted-printable =46rom 68759af86d86af34e59eaf1dbd036b51e64f7f43 Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Sun, 24 Sep 2017 15:52:05 +0000 Subject: [PATCH] gnu: Add gpa. * gnu/packages/gnupg.scm (gpa): New variable. --- gnu/packages/gnupg.scm | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index c6af5caa4..b79e3a830 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -7,7 +7,7 @@ ;;; Copyright =C2=A9 2015, 2016, 2017 Efraim Flashner ;;; Copyright =C2=A9 2015, 2016 Ricardo Wurmus ;;; Copyright =C2=A9 2016 Christopher Allan Webber -;;; Copyright =C2=A9 2016 ng0 +;;; Copyright =C2=A9 2016, 2017 ng0 ;;; Copyright =C2=A9 2016 Christopher Baines ;;; Copyright =C2=A9 2016 Mike Gerwitz ;;; Copyright =C2=A9 2016 Troy Sankey @@ -822,3 +822,31 @@ qualities. To reconstruct a secret key, you re-enter = those bytes (whether by hand, OCR, QR code, or the like) and paperkey can use them to transform your existing public key into a secret key.") (license license:gpl2+))) + +(define-public gpa + (package + (name "gpa") + (version "0.9.9") + (source + (origin + (method url-fetch) + (uri (string-append "ftp://ftp.gnupg.org/gcrypt/gpa/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "0d235hcqai7m3qb7m9kvr2r4qg4714f87j9fdplwrlz1p4wdfa38")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("gnupg" ,gnupg) + ("gpgme" ,gpgme) + ("libassuan" ,libassuan) + ("libgpg-error" ,libgpg-error) + ("gtk+-2" ,gtk+-2))) + (home-page "https://gnupg.org/software/gpa/index.html") + (synopsis "GUI for GnuPG") + (description + "@defn{GNU Privacy Assistant} (GPA) is a graphical user +interface for the @defn{GNU Privacy Guard} (GnuPG).") + (license license:gpl3))) --=20 2.14.1 --i3sb4tuteeefz7sv-- --ayteggmj4baaaqrq Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEqIyK3RKYKNfqwC5S4i+bv+40hYgFAlnH1UsACgkQ4i+bv+40 hYicJg//X/Y2F4onykC7T2XfA9GdMnWj8u4gQwah/pblC6iSF+Th44G+P8EpdTpC sldlKMbXk56GhUuY1DHOJk+75ut1PcVOdUbzn4zZS3AOX09JW4RDkhw2GeQDyHI8 aD8AWM9ePBhtVBpQ8WPB5hThEGS3PNUzCVrPRQFfuAO8JdPn4uzCa318TyNuvHY3 Kq89bM5sDBAw2Bu/T9voYrsl1/VLaZkT+lEZOo90G6pZ5l8hePXglXmmP2HSDzXr MlN8CuKmEd9l0rG1RHrT9lnTGKkWKD0N+k+zE+XQxv9orQi/kEKrm1w2A7XpAeQw Y0bzLMLBq7gHvLIi3JtBspiKmKl2HHBbg0jbgGVUWTh3n4pV1AQSReZMFKUOeA/V xmPOPTz9xhaT5stlrwY6MAxmBiBFeWrBk+nv88qM7Rr4/0uycOTJ1M8p3oitWpjB 2XdrFqb7vigiP/YjIQnNPLg/gZVLq22PjEgWt2Q8mEdz4BXjk+H8mH61pKgtPgDB NbDog0naA3aHD++zU0VEFo8EQcWpwfdKy6JnOJvwNgNDpJIwyUTaJ7TRp8UmHrQw Z1yKXx+4ASYTOzfLjaHZTYfLxJFATkuiNA3oOEIUVnGuQfbQIsbR4Jy4yRhPkPY6 lULGHSyF83Hf4Q5pSmATBZLkr2G5fVr3fMx4LXPA2mN9FBaZeXU= =fW86 -----END PGP SIGNATURE----- --ayteggmj4baaaqrq--