gnu: pinentry: Remove 'gpg2' from description.

* gnu/package/gnupg.scm (pinentry-tty, pinentry-gtk2, pinentry-qt)
[description]: The default in Guix is gpg, so only use this.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Christopher Baines 2016-10-09 21:27:10 +01:00 committed by Ludovic Courtès
parent d976eccd26
commit 9614897b71
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -622,7 +622,7 @@ (define-public pinentry-tty
(synopsis "GnuPG's interface to passphrase input")
(description
"Pinentry provides a console that allows users to enter a passphrase when
@code{gpg} or @code{gpg2} is run and needs it.")
@code{gpg} is run and needs it.")
(license license:gpl2+)))
(define-public pinentry-gtk2
@ -635,7 +635,7 @@ (define-public pinentry-gtk2
,@(package-inputs pinentry-tty)))
(description
"Pinentry provides a console and a GTK+ GUI that allows users to enter a
passphrase when @code{gpg} or @code{gpg2} is run and needs it.")))
passphrase when @code{gpg} is run and needs it.")))
(define-public pinentry-qt
(package
@ -648,7 +648,7 @@ (define-public pinentry-qt
`(#:configure-flags '("CXXFLAGS=-std=gnu++11")))
(description
"Pinentry provides a console and a Qt GUI that allows users to enter a
passphrase when @code{gpg} or @code{gpg2} is run and needs it.")))
passphrase when @code{gpg} is run and needs it.")))
(define-public pinentry
(package (inherit pinentry-gtk2)