* [bug#28579] gpa
@ 2017-09-24 15:54 ng0
2017-09-24 16:16 ` Nicolas Goaziou
0 siblings, 1 reply; 8+ messages in thread
From: ng0 @ 2017-09-24 15:54 UTC (permalink / raw)
To: 28579
[-- Attachment #1.1: Type: text/plain, Size: 258 bytes --]
A GUI for GnuPG.
Builds.
GUI works, Preferences pick up my $HOME/.gnupg settings.
More wasn't tested.
--
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://krosos.org/dist/keys/
https://www.infotropique.org https://www.krosos.org
[-- Attachment #1.2: 0001-gnu-Add-gpa.patch --]
[-- Type: text/plain, Size: 2175 bytes --]
From 68759af86d86af34e59eaf1dbd036b51e64f7f43 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
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 © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
-;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
+;;; Copyright © 2016, 2017 ng0 <ng0@infotropique.org>
;;; Copyright © 2016 Christopher Baines <mail@cbaines.net>
;;; Copyright © 2016 Mike Gerwitz <mtg@gnu.org>
;;; Copyright © 2016 Troy Sankey <sankeytms@gmail.com>
@@ -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)))
--
2.14.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#28579] gpa
2017-09-24 15:54 [bug#28579] gpa ng0
@ 2017-09-24 16:16 ` Nicolas Goaziou
2017-09-24 16:45 ` ng0
0 siblings, 1 reply; 8+ messages in thread
From: Nicolas Goaziou @ 2017-09-24 16:16 UTC (permalink / raw)
To: ng0; +Cc: 28579
Hello,
ng0 <ng0@infotropique.org> writes:
> A GUI for GnuPG.
>
> Builds.
> GUI works, Preferences pick up my $HOME/.gnupg settings.
> More wasn't tested.
Thank you. I have some comments about your patch.
> +(define-public gpa
> + (package
> + (name "gpa")
> + (version "0.9.9")
version 0.9.10 is out since 2016. Would it make sense to package it instead?
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "ftp://ftp.gnupg.org/gcrypt/gpa/"
> + name "-" version ".tar.bz2"))
Guix lint reports:
URL should be "mirror://gnupg/gpa/gpa-0.9.9.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).")
Guix lint reports an error about invalid Texinfo markup.
I'm not sure about what to do to fix it, if there is anything to do at
all. IMO, @defn is not adequate here.
> + (license license:gpl3)))
Every ".c" file I checked use "or any later version". I think this
should be "gpl3+". WDYT?
Regards,
--
Nicolas Goaziou 0x80A93738
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#28579] gpa
2017-09-24 16:16 ` Nicolas Goaziou
@ 2017-09-24 16:45 ` ng0
2017-09-24 21:05 ` Nicolas Goaziou
0 siblings, 1 reply; 8+ messages in thread
From: ng0 @ 2017-09-24 16:45 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: 28579
[-- Attachment #1.1: Type: text/plain, Size: 2496 bytes --]
Nicolas Goaziou transcribed 1.6K bytes:
> Hello,
>
> ng0 <ng0@infotropique.org> writes:
>
> > A GUI for GnuPG.
> >
> > Builds.
> > GUI works, Preferences pick up my $HOME/.gnupg settings.
> > More wasn't tested.
>
> Thank you. I have some comments about your patch.
>
> > +(define-public gpa
> > + (package
> > + (name "gpa")
> > + (version "0.9.9")
>
> version 0.9.10 is out since 2016. Would it make sense to package it instead?
I did only find 0.9.9, but I'll try again. I've catched a cold.
> > + (source
> > + (origin
> > + (method url-fetch)
> > + (uri (string-append "ftp://ftp.gnupg.org/gcrypt/gpa/"
> > + name "-" version ".tar.bz2"))
>
> Guix lint reports:
>
> URL should be "mirror://gnupg/gpa/gpa-0.9.9.tar.bz2"
Well I had a mirror first but did not find gpa on it.
I'll try this.
> > + (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).")
>
> Guix lint reports an error about invalid Texinfo markup.
Right! It's @dfn{} not @defn{}.
> I'm not sure about what to do to fix it, if there is anything to do at
> all. IMO, @defn is not adequate here.
Why? It is a definition being used.
Although I have to admit it looks unusual compared to the rest of the file.
…
synopsis: GUI for GnuPG
description: "GNU Privacy Assistant" (GPA) is a graphical user interface for the "GNU Privacy Guard" (GnuPG).
> > + (license license:gpl3)))
>
> Every ".c" file I checked use "or any later version". I think this
> should be "gpl3+". WDYT?
Okay.
> Regards,
>
> --
> Nicolas Goaziou 0x80A93738
>
Thanks for finding the mistakes. Correction appended.
--
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://krosos.org/dist/keys/
https://www.infotropique.org https://www.krosos.org
[-- Attachment #1.2: 0001-gnu-Add-gpa.patch --]
[-- Type: text/plain, Size: 2163 bytes --]
From 5d5749da28f4943a356970c142ce63dc3ec541a6 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
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..075eec4a2 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -7,7 +7,7 @@
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
-;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
+;;; Copyright © 2016, 2017 ng0 <ng0@infotropique.org>
;;; Copyright © 2016 Christopher Baines <mail@cbaines.net>
;;; Copyright © 2016 Mike Gerwitz <mtg@gnu.org>
;;; Copyright © 2016 Troy Sankey <sankeytms@gmail.com>
@@ -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.10")
+ (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)))
+ (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
+ "@dfn{GNU Privacy Assistant} (GPA) is a graphical user
+interface for the @dfn{GNU Privacy Guard} (GnuPG).")
+ (license license:gpl3+)))
--
2.14.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#28579] gpa
2017-09-24 16:45 ` ng0
@ 2017-09-24 21:05 ` Nicolas Goaziou
2017-09-24 21:42 ` ng0
0 siblings, 1 reply; 8+ messages in thread
From: Nicolas Goaziou @ 2017-09-24 21:05 UTC (permalink / raw)
To: ng0; +Cc: 28579
ng0 <ng0@infotropique.org> writes:
> Why? It is a definition being used.
> Although I have to admit it looks unusual compared to the rest of the
> file.
It is a package name. By that rule, every package name is a definition,
since you "define" it in the description. It doesn't sound right to put
@dfn in every description, including this one, IMO.
Obviously, I'm nitpicking here.
> Thanks for finding the mistakes. Correction appended.
Thank you.
FWIW, I have no other comment about your patch.
Regards,
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#28579] gpa
2017-09-24 21:05 ` Nicolas Goaziou
@ 2017-09-24 21:42 ` ng0
2017-09-25 10:41 ` ng0
0 siblings, 1 reply; 8+ messages in thread
From: ng0 @ 2017-09-24 21:42 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: 28579
[-- Attachment #1: Type: text/plain, Size: 866 bytes --]
Nicolas Goaziou transcribed 0.5K bytes:
> ng0 <ng0@infotropique.org> writes:
>
> > Why? It is a definition being used.
> > Although I have to admit it looks unusual compared to the rest of the
> > file.
>
> It is a package name. By that rule, every package name is a definition,
> since you "define" it in the description. It doesn't sound right to put
> @dfn in every description, including this one, IMO.
>
> Obviously, I'm nitpicking here.
Ok, I agree. If no one commits this in the next 12 hours I'll send
an update removing the @dfn{},
> > Thanks for finding the mistakes. Correction appended.
>
> Thank you.
>
> FWIW, I have no other comment about your patch.
>
> Regards,
>
--
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://krosos.org/dist/keys/
https://www.infotropique.org https://www.krosos.org
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#28579] gpa
2017-09-24 21:42 ` ng0
@ 2017-09-25 10:41 ` ng0
2017-09-25 10:44 ` ng0
0 siblings, 1 reply; 8+ messages in thread
From: ng0 @ 2017-09-25 10:41 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: 28579
[-- Attachment #1.1: Type: text/plain, Size: 1168 bytes --]
ng0 transcribed 1.9K bytes:
> Nicolas Goaziou transcribed 0.5K bytes:
> > ng0 <ng0@infotropique.org> writes:
> >
> > > Why? It is a definition being used.
> > > Although I have to admit it looks unusual compared to the rest of the
> > > file.
> >
> > It is a package name. By that rule, every package name is a definition,
> > since you "define" it in the description. It doesn't sound right to put
> > @dfn in every description, including this one, IMO.
> >
> > Obviously, I'm nitpicking here.
>
> Ok, I agree. If no one commits this in the next 12 hours I'll send
> an update removing the @dfn{},
Appended is the update, the only change is the description.
> > > Thanks for finding the mistakes. Correction appended.
> >
> > Thank you.
> >
> > FWIW, I have no other comment about your patch.
> >
> > Regards,
> >
>
> --
> ng0
> GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
> GnuPG: https://krosos.org/dist/keys/
> https://www.infotropique.org https://www.krosos.org
--
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://krosos.org/dist/keys/
https://www.infotropique.org https://krosos.org
[-- Attachment #1.2: 0001-gnu-Add-gpa.patch --]
[-- Type: text/plain, Size: 2135 bytes --]
From 2356006fc61874190e578425c2a3911d23aed8c2 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
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..eb1feffcd 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -7,7 +7,7 @@
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
-;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
+;;; Copyright © 2016, 2017 ng0 <ng0@infotropique.org>
;;; Copyright © 2016 Christopher Baines <mail@cbaines.net>
;;; Copyright © 2016 Mike Gerwitz <mtg@gnu.org>
;;; Copyright © 2016 Troy Sankey <sankeytms@gmail.com>
@@ -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.10")
+ (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)))
+ (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
+ "GPA, the GNU Privacy Assistant, is a graphical user
+interface for the GnuPG.")
+ (license license:gpl3+)))
--
2.14.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#28579] gpa
2017-09-25 10:41 ` ng0
@ 2017-09-25 10:44 ` ng0
2017-09-26 8:36 ` bug#28579: gpa Ludovic Courtès
0 siblings, 1 reply; 8+ messages in thread
From: ng0 @ 2017-09-25 10:44 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: 28579
[-- Attachment #1.1: Type: text/plain, Size: 162 bytes --]
Final version.
--
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://krosos.org/dist/keys/
https://www.infotropique.org https://krosos.org
[-- Attachment #1.2: 0001-gnu-Add-gpa.patch --]
[-- Type: text/plain, Size: 2131 bytes --]
From 1dffbc335e3bad37d990f4a1fddc91f60aa25683 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
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..f9233924b 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -7,7 +7,7 @@
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
-;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
+;;; Copyright © 2016, 2017 ng0 <ng0@infotropique.org>
;;; Copyright © 2016 Christopher Baines <mail@cbaines.net>
;;; Copyright © 2016 Mike Gerwitz <mtg@gnu.org>
;;; Copyright © 2016 Troy Sankey <sankeytms@gmail.com>
@@ -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.10")
+ (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)))
+ (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
+ "GPA, the GNU Privacy Assistant, is a graphical user
+interface for GnuPG.")
+ (license license:gpl3+)))
--
2.14.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#28579: gpa
2017-09-25 10:44 ` ng0
@ 2017-09-26 8:36 ` Ludovic Courtès
0 siblings, 0 replies; 8+ messages in thread
From: Ludovic Courtès @ 2017-09-26 8:36 UTC (permalink / raw)
To: ng0; +Cc: 28579-done
[-- Attachment #1: Type: text/plain, Size: 363 bytes --]
ng0 <ng0@infotropique.org> skribis:
> From 1dffbc335e3bad37d990f4a1fddc91f60aa25683 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@infotropique.org>
> 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’.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1688 bytes --]
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+)))
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2017-09-26 8:37 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-24 15:54 [bug#28579] gpa ng0
2017-09-24 16:16 ` Nicolas Goaziou
2017-09-24 16:45 ` ng0
2017-09-24 21:05 ` Nicolas Goaziou
2017-09-24 21:42 ` ng0
2017-09-25 10:41 ` ng0
2017-09-25 10:44 ` ng0
2017-09-26 8:36 ` bug#28579: gpa Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.