all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Christopher Baines <mail@cbaines.net>
To: 28272@debbugs.gnu.org
Subject: [bug#28272] [PATCH 10/12] gnu: Add perl-gnupg-interface.
Date: Tue, 29 Aug 2017 07:13:03 +0100	[thread overview]
Message-ID: <20170829061305.2290-10-mail@cbaines.net> (raw)
In-Reply-To: <20170829061305.2290-1-mail@cbaines.net>

* 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 c442ce8ae..b1b63caa2 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
@@ -522,6 +524,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 (package-license perl))))
+
 (define-public pius
   (package
    (name "pius")
-- 
2.14.1

  parent reply	other threads:[~2017-08-29  6:14 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-29  6:07 [bug#28272] [PATCH] Improve and upgrade signing-party Christopher Baines
2017-08-29  6:12 ` [bug#28272] [PATCH 01/12] gnu: Add perl-moox Christopher Baines
2017-08-29  6:12   ` [bug#28272] [PATCH 02/12] gnu: Add perl-data-perl Christopher Baines
2017-08-29  6:12   ` [bug#28272] [PATCH 03/12] gnu: Add perl-moox-handlesvia Christopher Baines
2017-08-29  6:12   ` [bug#28272] [PATCH 04/12] gnu: Add perl-moox-late Christopher Baines
2017-08-29  6:12   ` [bug#28272] [PATCH 05/12] gnu: Add perl-convert-binhex Christopher Baines
2017-08-29  6:12   ` [bug#28272] [PATCH 06/12] gnu: Add perl-mailtools Christopher Baines
2017-08-29  6:13   ` [bug#28272] [PATCH 07/12] gnu: Add perl-mime-tools Christopher Baines
2017-08-29  6:13   ` [bug#28272] [PATCH 08/12] gnu: Add perl-net-idn-encode Christopher Baines
2017-08-29  6:13   ` [bug#28272] [PATCH 09/12] gnu: Add perl-text-template Christopher Baines
2017-08-29  6:13   ` Christopher Baines [this message]
2017-08-29  6:13   ` [bug#28272] [PATCH 11/12] gnu: Add libmd Christopher Baines
2017-08-29  6:13   ` [bug#28272] [PATCH 12/12] gnu: Update signing-party Christopher Baines
2017-09-08 16:07 ` [bug#28272] [PATCH] Improve and upgrade signing-party Ludovic Courtès
2017-09-10 11:03   ` Christopher Baines
2017-09-10 13:14     ` Ludovic Courtès
2017-09-10 18:42       ` Christopher Baines
2017-09-12 22:03   ` bug#28272: " Christopher Baines

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170829061305.2290-10-mail@cbaines.net \
    --to=mail@cbaines.net \
    --cc=28272@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.