[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/12: gnu: Add perl-gnupg-interface.
From: |
Christopher Baines |
Subject: |
10/12: gnu: Add perl-gnupg-interface. |
Date: |
Tue, 12 Sep 2017 18:00:16 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 34ef57559060c4d7e04e3ee35dbc373e46bf5b4e
Author: Christopher Baines <address@hidden>
Date: Mon Aug 28 20:52:14 2017 +0100
gnu: Add perl-gnupg-interface.
* gnu/packages/gnupg.scm (perl-gnupg-interface): New variable.
---
gnu/packages/gnupg.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index d6f0722..33d97bf 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -32,6 +32,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages)
#:use-module (gnu packages adns)
+ #:use-module (gnu packages base)
#:use-module (gnu packages curl)
#:use-module (gnu packages openldap)
#:use-module (gnu packages perl)
@@ -53,6 +54,7 @@
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system perl)
#:use-module (guix build-system python))
(define-public libgpg-error
@@ -535,6 +537,43 @@ and signature functionality from Python programs.")
(define-public python2-gnupg
(package-with-python2 python-gnupg))
+(define-public perl-gnupg-interface
+ (package
+ (name "perl-gnupg-interface")
+ (version "0.52")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://cpan/authors/id/A/AL/ALEXMV/GnuPG-Interface-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0dgx8yhdsmhkazcrz14n4flrk1afv7azgl003hl4arxvi1d9yyi4"))))
+ (build-system perl-build-system)
+ (arguments
+ '(;; Result: FAIL
+ ;; Failed 10/20 test programs. 21/52 subtests failed.
+ #:tests? #f))
+ (native-inputs
+ `(("perl-module-install" ,perl-module-install)
+ ("which" ,which)))
+ (inputs
+ `(("gnupg" ,gnupg)))
+ (propagated-inputs
+ `(("perl-moo" ,perl-moo)
+ ("perl-moox-late" ,perl-moox-late)
+ ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
+ (home-page "http://search.cpan.org/~alexmv/GnuPG-Interface/")
+ (synopsis "Perl interface to GnuPG")
+ (description
+ "@code{GnuPG::Interface} and its associated modules are designed to
+provide an object-oriented method for interacting with GnuPG, being able to
+perform functions such as but not limited to encrypting, signing, decryption,
+verification, and key-listing parsing.")
+ (license license:perl-license)))
+
(define-public pius
(package
(name "pius")
- 06/12: gnu: Add perl-mailtools., (continued)
- 06/12: gnu: Add perl-mailtools., Christopher Baines, 2017/09/12
- 05/12: gnu: Add perl-convert-binhex., Christopher Baines, 2017/09/12
- 04/12: gnu: Add perl-moox-late., Christopher Baines, 2017/09/12
- 02/12: gnu: Add perl-data-perl., Christopher Baines, 2017/09/12
- 08/12: gnu: Add perl-net-idn-encode., Christopher Baines, 2017/09/12
- 03/12: gnu: Add perl-moox-handlesvia., Christopher Baines, 2017/09/12
- 09/12: gnu: Add perl-text-template., Christopher Baines, 2017/09/12
- 11/12: gnu: Add libmd., Christopher Baines, 2017/09/12
- 12/12: gnu: Update signing-party., Christopher Baines, 2017/09/12
- 07/12: gnu: Add perl-mime-tools., Christopher Baines, 2017/09/12
- 10/12: gnu: Add perl-gnupg-interface.,
Christopher Baines <=