gnu: perl6-uri: Update to 0.3.5.
* gnu/packages/perl6.scm (perl6-uri): Update to 0.3.5. [source]: Update URL. [home-page]: Update. [synopsis, description]: Replace mentions of Perl with Raku. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
834a1c9b86
commit
eb107276df
1 changed files with 20 additions and 19 deletions
|
@ -791,28 +791,29 @@ statement for @code{Test::Mock}.")
|
||||||
(license license:artistic2.0)))
|
(license license:artistic2.0)))
|
||||||
|
|
||||||
(define-public perl6-uri
|
(define-public perl6-uri
|
||||||
(package
|
;; The commit where 0.3.5 was “tagged”.
|
||||||
(name "perl6-uri")
|
(let ((commit "2e62d0f117c95a43e61ddb018dcacba8036aa3d5"))
|
||||||
(version "0.1.5")
|
(package
|
||||||
(source
|
(name "perl6-uri")
|
||||||
(origin
|
(version "0.3.5")
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
(url "https://github.com/perl6-community-modules/uri")
|
(method git-fetch)
|
||||||
(commit version)))
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/raku-community-modules/URI")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"0h318g75jqn2ckw051g35iqyfxz1mps0jyg5z6pd857y3kacbkpl"))))
|
(sha256
|
||||||
(build-system rakudo-build-system)
|
(base32 "1a03r80zxpvnsjf2z5r8lk434v2ysrpaymqa6xq975l4124gckkx"))))
|
||||||
(arguments '(#:with-zef? #f))
|
(build-system rakudo-build-system)
|
||||||
(home-page "https://github.com/perl6-community-modules/uri")
|
(arguments '(#:with-zef? #f))
|
||||||
(synopsis "URI implementation using Perl 6")
|
(home-page "https://github.com/raku-community-modules/URI")
|
||||||
(description "A URI implementation using Perl 6 grammars to implement RFC
|
(synopsis "URI implementation using Raku")
|
||||||
|
(description "A URI implementation using Raku grammars to implement RFC
|
||||||
3986 BNF. Currently only implements parsing. Includes @code{URI::Escape} to
|
3986 BNF. Currently only implements parsing. Includes @code{URI::Escape} to
|
||||||
(un?)escape characters that aren't otherwise allowed in a URI with % and a hex
|
(un?)escape characters that aren't otherwise allowed in a URI with % and a hex
|
||||||
character numbering.")
|
character numbering.")
|
||||||
(license license:artistic2.0)))
|
(license license:artistic2.0))))
|
||||||
|
|
||||||
(define-public perl6-xml-writer
|
(define-public perl6-xml-writer
|
||||||
;; Last commit was May 2017
|
;; Last commit was May 2017
|
||||||
|
|
Reference in a new issue