From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43472) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dwlMZ-0007bI-DW for guix-patches@gnu.org; Tue, 26 Sep 2017 04:37:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dwlMV-0008Fq-AM for guix-patches@gnu.org; Tue, 26 Sep 2017 04:37:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:50975) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dwlMV-0008Fd-7J for guix-patches@gnu.org; Tue, 26 Sep 2017 04:37:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dwlMV-0005Cc-0j for guix-patches@gnu.org; Tue, 26 Sep 2017 04:37:03 -0400 Subject: bug#28579: gpa Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170924155452.lsq7mbnbuwa6clei@abyayala> <87fubc5ayl.fsf@nicolasgoaziou.fr> <20170924164556.jkqzdlnoqqdvdqbu@abyayala> <87377b6c3z.fsf@nicolasgoaziou.fr> <20170924214200.tssj45xcmo2nxdpx@abyayala> <20170925104127.dprqjpyfmexfer2i@abyayala> <20170925104417.vyqbc47mlqwcn3rv@abyayala> Date: Tue, 26 Sep 2017 10:36:03 +0200 In-Reply-To: <20170925104417.vyqbc47mlqwcn3rv@abyayala> (ng0@infotropique.org's message of "Mon, 25 Sep 2017 10:44:17 +0000") Message-ID: <87ing526x8.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: ng0 Cc: 28579-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable ng0 skribis: > From 1dffbc335e3bad37d990f4a1fddc91f60aa25683 Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Sun, 24 Sep 2017 15:52:05 +0000 > Subject: [PATCH] gnu: Add gpa. > > * gnu/packages/gnupg.scm (gpa): New variable. Applied with the cosmetic changes below. Thanks to the two of you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index f9233924b..2e00f9a0c 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -827,14 +827,13 @@ them to transform your existing public key into a secret key.") (package (name "gpa") (version "0.9.10") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://gnupg/gpa/" - name "-" version ".tar.bz2")) - (sha256 - (base32 - "09xphbi2456qynwqq5n0yh0zdmdi2ggrj3wk4hsyh5lrzlvcrff3")))) + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnupg/gpa/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "09xphbi2456qynwqq5n0yh0zdmdi2ggrj3wk4hsyh5lrzlvcrff3")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) @@ -844,9 +843,10 @@ them to transform your existing public key into a secret key.") ("libassuan" ,libassuan) ("libgpg-error" ,libgpg-error) ("gtk+-2" ,gtk+-2))) - (home-page "https://gnupg.org/software/gpa/index.html") - (synopsis "GUI for GnuPG") + (home-page "https://gnupg.org/software/gpa/") + (synopsis "Graphical user interface for GnuPG") (description - "GPA, the GNU Privacy Assistant, is a graphical user -interface for GnuPG.") + "GPA, the GNU Privacy Assistant, is a graphical user interface for +@uref{https://gnupg.org, GnuPG}. It can be used to encrypt, decrypt, and +sign files, to verify signatures, and to manage the private and public keys.") (license license:gpl3+))) --=-=-=--