gnu: perl6-grammar-profiler-simple: Perl -> Raku.

* gnu/packages/perl6.scm (perl6-grammar-profiler-simple)[source]:
Reindent.
[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:18:18 +00:00 committed by Efraim Flashner
parent 3471ab0a13
commit 189333f9c0
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 11 additions and 12 deletions

View File

@ -333,27 +333,26 @@ prompt.")
(license license:artistic2.0)))) (license license:artistic2.0))))
(define-public perl6-grammar-profiler-simple (define-public perl6-grammar-profiler-simple
;; Last commit was June 2017 ;; Last commit was June 2017.
(let ((commit "c0aca5fab323b2974821dabd6b89330c609e0b7d") (let ((commit "c0aca5fab323b2974821dabd6b89330c609e0b7d")
(revision "1")) (revision "1"))
(package (package
(name "perl6-grammar-profiler-simple") (name "perl6-grammar-profiler-simple")
(version (git-version "0.02" revision commit)) (version (git-version "0.02" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/perlpilot/Grammar-Profiler-Simple") (url "https://github.com/perlpilot/Grammar-Profiler-Simple")
(commit commit))) (commit commit)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1qcsa4lmcilp3vp0jng0hrgzyzxin9ayg2wjvkcd0k6h7djx9dff"))))
"1qcsa4lmcilp3vp0jng0hrgzyzxin9ayg2wjvkcd0k6h7djx9dff"))))
(build-system rakudo-build-system) (build-system rakudo-build-system)
(arguments '(#:with-zef? #f)) (arguments '(#:with-zef? #f))
(home-page "https://github.com/perlpilot/Grammar-Profiler-Simple") (home-page "https://github.com/perlpilot/Grammar-Profiler-Simple")
(synopsis "Simple rule profiling for Perl 6 grammars") (synopsis "Simple rule profiling for Raku grammars")
(description "This module provides a simple profiler for Perl 6 grammars. (description "This module provides a simple profiler for Raku grammars.
To enable profiling simply add use @code{Grammar::Profiler::Simple;} to your To enable profiling simply add use @code{Grammar::Profiler::Simple;} to your
code. Any grammar in the lexical scope of the use statement will automatically code. Any grammar in the lexical scope of the use statement will automatically
have profiling information collected when the grammar is used.") have profiling information collected when the grammar is used.")