gnu: Remove duplicate from (gnu packages gnupg).

* gnu/packages/gnupg.scm (perl-gnupg-interface): Remove duplicate.
This commit is contained in:
Ricardo Wurmus 2017-11-18 09:19:53 +01:00
parent 90dbd984f8
commit 9c2d0a0369
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 25 additions and 62 deletions

View File

@ -548,37 +548,37 @@ and signature functionality from Python programs.")
(package (package
(name "perl-gnupg-interface") (name "perl-gnupg-interface")
(version "0.52") (version "0.52")
(source (source (origin
(origin (method url-fetch)
(method url-fetch) (uri (string-append "mirror://cpan/authors/id/A/AL/ALEXMV/"
(uri (string-append "GnuPG-Interface-" version ".tar.gz"))
"mirror://cpan/authors/id/A/AL/ALEXMV/GnuPG-Interface-" (sha256
version (base32
".tar.gz")) "0dgx8yhdsmhkazcrz14n4flrk1afv7azgl003hl4arxvi1d9yyi4"))))
(sha256
(base32
"0dgx8yhdsmhkazcrz14n4flrk1afv7azgl003hl4arxvi1d9yyi4"))))
(build-system perl-build-system) (build-system perl-build-system)
(arguments (arguments
'(;; Result: FAIL `(#:phases
;; Failed 10/20 test programs. 21/52 subtests failed. (modify-phases %standard-phases
#:tests? #f)) ;; FIXME: This test fails for unknown reasons
(native-inputs (add-after 'unpack 'delete-broken-test
`(("perl-module-install" ,perl-module-install) (lambda _
("which" ,which))) (delete-file "t/encrypt_symmetrically.t")
#t)))))
(inputs (inputs
`(("gnupg" ,gnupg))) `(("gnupg" ,gnupg-1)))
(propagated-inputs (propagated-inputs
`(("perl-moo" ,perl-moo) `(("perl-moo" ,perl-moo)
("perl-moox-late" ,perl-moox-late) ("perl-moox-handlesvia" ,perl-moox-handlesvia)
("perl-moox-handlesvia" ,perl-moox-handlesvia))) ("perl-moox-late" ,perl-moox-late)))
(home-page "http://search.cpan.org/~alexmv/GnuPG-Interface/") (native-inputs
`(("which" ,which)
("perl-module-install" ,perl-module-install)))
(home-page "http://search.cpan.org/dist/GnuPG-Interface/")
(synopsis "Perl interface to GnuPG") (synopsis "Perl interface to GnuPG")
(description (description "@code{GnuPG::Interface} and its associated modules are
"@code{GnuPG::Interface} and its associated modules are designed to designed to provide an object-oriented method for interacting with GnuPG,
provide an object-oriented method for interacting with GnuPG, being able to being able to perform functions such as but not limited to encrypting,
perform functions such as but not limited to encrypting, signing, decryption, signing, decryption, verification, and key-listing parsing.")
verification, and key-listing parsing.")
(license license:perl-license))) (license license:perl-license)))
(define-public pius (define-public pius
@ -856,43 +856,6 @@ them to transform your existing public key into a secret key.")
files, to verify signatures, and to manage the private and public keys.") files, to verify signatures, and to manage the private and public keys.")
(license license:gpl3+))) (license license:gpl3+)))
(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
`(#:phases
(modify-phases %standard-phases
;; FIXME: This test fails for unknown reasons
(add-after 'unpack 'delete-broken-test
(lambda _
(delete-file "t/encrypt_symmetrically.t")
#t)))))
(inputs
`(("gnupg" ,gnupg-1)))
(propagated-inputs
`(("perl-moo" ,perl-moo)
("perl-moox-handlesvia" ,perl-moox-handlesvia)
("perl-moox-late" ,perl-moox-late)))
(native-inputs
`(("which" ,which)
("perl-module-install" ,perl-module-install)))
(home-page "http://search.cpan.org/dist/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 parcimonie (define-public parcimonie
(package (package
(name "parcimonie") (name "parcimonie")