gnu: perl6-zef: Update to 0.13.8.

* gnu/packages/perl6.scm (perl6-zef): Update to 0.13.8.
[source]: Reindent.
[arguments]: Replace Perl with Raku in 'check' phase.
[synopsis, description]: Replace mentions of Perl with Raku.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Paul A. Patience 2022-04-29 05:17:56 +00:00 committed by Efraim Flashner
parent 8dca56b4a1
commit 90a7efcc1e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 13 additions and 14 deletions

View File

@ -829,17 +829,16 @@ character numbering.")
(define-public perl6-zef
(package
(name "perl6-zef")
(version "0.6.7")
(version "0.13.8")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ugexe/zef")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"07n7g1xw2c4g860rs890gx85vyhdq0ysgwbrnzw6q905jph2bkv7"))))
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ugexe/zef")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0zmx2gavi975811kskv5j4j2zsysnxfklwx0azn8rffraadnhscm"))))
(build-system rakudo-build-system)
(arguments
'(#:with-zef? #f
@ -848,11 +847,11 @@ character numbering.")
(replace 'check
(lambda _
(setenv "HOME" "/tmp")
(invoke "perl6" "-I." "bin/zef" "--debug"
(invoke "raku" "-I." "bin/zef" "--debug"
"--tap-harness" "test" "."))))))
(home-page "https://github.com/ugexe/zef")
(synopsis "Perl6 Module Management")
(description "Zef is a Perl 6 package (module) manager. It can be used to
download and install Perl 6 modules in your home directory or as a system-wide
(synopsis "Raku Module Management")
(description "Zef is a Raku package (module) manager. It can be used to
download and install Raku modules in your home directory or as a system-wide
module.")
(license license:artistic2.0)))