diff options
author | Mark H Weaver <mhw@netris.org> | 2014-08-14 10:03:00 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-08-14 10:03:57 -0400 |
commit | e6a83df11b7781ba83ee3859104d7ddd0d6d0206 (patch) | |
tree | 09f9bc990b7d29c521ef16acc08421a5bce20dfa /gnu | |
parent | 66269d47868407926ba6832d7b391857c709a709 (diff) | |
download | patches-e6a83df11b7781ba83ee3859104d7ddd0d6d0206.tar patches-e6a83df11b7781ba83ee3859104d7ddd0d6d0206.tar.gz |
gnu: gpgme: Update to 1.5.1.
* gnu/packages/gnupg.scm (gpgme): Update to 1.5.1. Pass "GPG=gpg2"
to 'make'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnupg.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index e4e3c87e80..384ec6289e 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -234,7 +234,7 @@ libskba (working with X.509 certificates and CMS data).") (define-public gpgme (package (name "gpgme") - (version "1.4.3") + (version "1.5.1") (source (origin (method url-fetch) @@ -242,7 +242,7 @@ libskba (working with X.509 certificates and CMS data).") ".tar.bz2")) (sha256 (base32 - "15h429h6pd67iiv580bjmwbkadpxsdppw0xrqpcm4dvm24jc271d")))) + "1qqi9bxwxxsc4r15j7drclgp0w8jk9nj3h2fsivk4c7brvw3lbvc")))) (build-system gnu-build-system) (propagated-inputs ;; Needs to be propagated because gpgme.h includes gpg-error.h. @@ -250,6 +250,7 @@ libskba (working with X.509 certificates and CMS data).") (inputs `(("gnupg" ,gnupg) ("libassuan" ,libassuan))) + (arguments '(#:make-flags '("GPG=gpg2"))) (home-page "http://www.gnupg.org/related_software/gpgme/") (synopsis "library providing simplified access to GnuPG functionality") (description |