gnu: Add perl-cpan-changes.

* gnu/packages/perl.scm (perl-cpan-changes): New variable.
This commit is contained in:
Kei Kebreau 2018-06-15 11:26:30 -04:00
parent f82fe68f99
commit b2d5b00d42
No known key found for this signature in database
GPG Key ID: E6A5EE3C19467A0D
1 changed files with 22 additions and 0 deletions

View File

@ -20,6 +20,7 @@
;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org> ;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org>
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com> ;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com>
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -1524,6 +1525,27 @@ provides a means of converting those data streams back into into binary
data.") data.")
(license perl-license))) (license perl-license)))
(define-public perl-cpan-changes
(package
(name "perl-cpan-changes")
(version "0.400002")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
version ".tar.gz"))
(sha256
(base32
"13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
(build-system perl-build-system)
(home-page "http://search.cpan.org/dist/CPAN-Changes/")
(synopsis "Read and write @file{Changes} files")
(description
"@code{CPAN::Changes} helps users programmatically read and write
@file{Changes} files that conform to a common specification.")
(license perl-license)))
(define-public perl-cpan-meta-check (define-public perl-cpan-meta-check
(package (package
(name "perl-cpan-meta-check") (name "perl-cpan-meta-check")