gnu: perl6-svg: Perl -> Raku.

* gnu/packages/perl6.scm (perl6-svg)[source]: Reindent.
[synopsis, description]: Replace mentions of Perl with Raku.
Fix minor stylistic issues.

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

View File

@ -637,31 +637,30 @@ monitor. Condition variables are also supported.")
(license license:artistic2.0))) (license license:artistic2.0)))
(define-public perl6-svg (define-public perl6-svg
;; Latest commit, basically unchanged since August 2015 ;; Latest commit, basically unchanged since August 2015.
(let ((commit "07190c0602aa276e5319f06aa0012452dbff3582") (let ((commit "07190c0602aa276e5319f06aa0012452dbff3582")
(revision "1")) (revision "1"))
(package (package
(name "perl6-svg") (name "perl6-svg")
(version (git-version "0.0.0" revision commit)) (version (git-version "0.0.0" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/moritz/svg") (url "https://github.com/moritz/svg")
(commit commit))) (commit commit)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "0mkjdhg7ajksdn61n8fqhyzfd7ly9myazsvpsm02a5c2q73hdygg"))))
"0mkjdhg7ajksdn61n8fqhyzfd7ly9myazsvpsm02a5c2q73hdygg"))))
(build-system rakudo-build-system) (build-system rakudo-build-system)
(propagated-inputs (propagated-inputs
(list perl6-xml-writer)) (list perl6-xml-writer))
(home-page "https://github.com/moritz/svg") (home-page "https://github.com/moritz/svg")
(synopsis "Perl 6 module to generate SVG") (synopsis "Raku module to generate SVG")
(description "This is a Perl 6 module that makes it easy to write (description "This is a Raku module that makes it easy to write
@dfn{Scalable Vector Graphic files} (SVG). Right now it is a shallow wrapper @dfn{Scalable Vector Graphic files} (SVG). Right now it is a shallow wrapper
around @code{XML::Writer}, adding only the xmlns attributes that identifies an around @code{XML::Writer}, adding only the @samp{xmlns} attributes that
XML file as SVG.") identify an XML file as SVG.")
(license license:artistic2.0)))) (license license:artistic2.0))))
(define-public perl6-svg-plot (define-public perl6-svg-plot