Archived
1
0
Fork 0

gnu: sbcl-uax-15: Update to 0.1.1.

* gnu/packages/lisp-xyz.scm (sbcl-uax-15): Update to 0.1.1.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Sharlatan Hellseher 2021-01-24 18:51:44 +00:00 committed by Guillaume Le Vaillant
parent 547bd6921a
commit 064a7ea6e0
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -460,33 +460,33 @@ compatible with ANSI-compliant Common Lisp implementations.")
(sbcl-package->ecl-package sbcl-cl-ppcre)) (sbcl-package->ecl-package sbcl-cl-ppcre))
(define-public sbcl-uax-15 (define-public sbcl-uax-15
(let ((commit "e7439a91b72f533fcf736643e3ff0677b56c2e7d") (package
(revision "1")) (name "sbcl-uax-15")
(package (version "0.1.1")
(name "sbcl-uax-15") (source
(version (git-version "0.1" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/sabracrolleton/uax-15")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/sabracrolleton/uax-15") (file-name (git-file-name "uax-15" version))
(commit commit))) (sha256
(file-name (git-file-name "uax-15" version)) (base32 "0p2ckw7mzxhwa9vbwj2q2dzayz9dl94d9yqd2ynp0pc5v8i0n2fr"))))
(sha256 (build-system asdf-build-system/sbcl)
(base32 "1vf8a2aikgx0l5bsq0z9s0dw3sgx1887xhagdlf66fwffa5jskg6")))) (arguments
(build-system asdf-build-system/sbcl) `(#:asd-systems
(native-inputs '("uax-15")))
`(("fiveam" ,sbcl-fiveam))) (native-inputs
(inputs `(("fiveam" ,sbcl-fiveam)))
`(("cl-ppcre" ,sbcl-cl-ppcre) (inputs
("split-sequence" ,sbcl-split-sequence))) `(("cl-ppcre" ,sbcl-cl-ppcre)
(arguments ("split-sequence" ,sbcl-split-sequence)))
`(#:asd-systems '("uax-15"))) (home-page "https://github.com/sabracrolleton/uax-15")
(home-page "https://github.com/sabracrolleton/uax-15") (synopsis "Common Lisp implementation of unicode normalization functions")
(synopsis "Common Lisp implementation of unicode normalization functions") (description
(description "This package provides supports for unicode normalization, "This package provides supports for unicode normalization, RFC8264 and
RFC8264 and RFC7564.") RFC7564.")
(license license:expat)))) (license license:expat)))
(define-public cl-uax-15 (define-public cl-uax-15
(sbcl-package->cl-source-package sbcl-uax-15)) (sbcl-package->cl-source-package sbcl-uax-15))