[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#28579: gpa
From: |
Ludovic Courtès |
Subject: |
bug#28579: gpa |
Date: |
Tue, 26 Sep 2017 10:36:03 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
ng0 <address@hidden> skribis:
> From 1dffbc335e3bad37d990f4a1fddc91f60aa25683 Mon Sep 17 00:00:00 2001
> From: ng0 <address@hidden>
> 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’.
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
address@hidden://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+)))