gnu: perl-test-script: Update to 1.20.
* gnu/packages/perl.scm (perl-test-script): Update to 1.20. [source]: Update uri. [propagated-inputs]: Remove probe-perl, ipc-run3, add perl-capture-tiny, perl-probe-perl. [home-page]: Update homepage.
This commit is contained in:
parent
eaca9ff07e
commit
0e05269a90
|
@ -6,7 +6,7 @@
|
||||||
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
||||||
;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
|
;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Coypright © 2016 ng0 <ng0@libertad.pw>
|
;;; Coypright © 2016 ng0 <ng0@libertad.pw>
|
||||||
;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
|
;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
|
||||||
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
||||||
|
@ -6928,25 +6928,24 @@ If this fails, then rather than failing tests this skips all tests.")
|
||||||
(define-public perl-test-script
|
(define-public perl-test-script
|
||||||
(package
|
(package
|
||||||
(name "perl-test-script")
|
(name "perl-test-script")
|
||||||
(version "1.07")
|
(version "1.20")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
|
(uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
|
||||||
"Test-Script-" version ".tar.gz"))
|
"Test-Script-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15pb4zzsnm33msc1syhig2bk05xqc0pckmfyahdwbd177bj5w7p2"))))
|
"1msavbi6przkxq3npm90nv925v58iym9jrk677wn46x19whwzwzm"))))
|
||||||
(build-system perl-build-system)
|
(build-system perl-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("probe-perl" ,perl-probe-perl)
|
`(("perl-capture-tiny" ,perl-capture-tiny)
|
||||||
("ipc-run3" ,perl-ipc-run3)))
|
("perl-probe-perl" ,perl-probe-perl)))
|
||||||
(synopsis "Basic cross-platform tests for scripts")
|
(synopsis "Basic cross-platform tests for scripts")
|
||||||
(description
|
(description
|
||||||
"The intent of the Test::Script module is to provide a series of basic
|
"The intent of the Test::Script module is to provide a series of basic
|
||||||
tests for 80% of the testing you will need to do for scripts in the script (or
|
tests for 80% of the testing you will need to do for scripts in the script (or
|
||||||
bin as is also commonly used) paths of your Perl distribution.")
|
bin as is also commonly used) paths of your Perl distribution.")
|
||||||
(home-page (string-append "http://search.cpan.org/~adamk/"
|
(home-page "http://search.cpan.org/dist/Test-Script")
|
||||||
"Test-Script-" version))
|
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-test-sharedfork
|
(define-public perl-test-sharedfork
|
||||||
|
|
Loading…
Reference in New Issue