me
/
guix
Archived
1
0
Fork 0

gnu: sbcl-cl-unicode: Update to 0.1.6.

* gnu/packages/lisp-xyz.scm (sbcl-cl-unicode-base): Update to 0.1.6.
master
Guillaume Le Vaillant 2020-02-04 11:24:29 +01:00
parent 6c87442548
commit 6fdfef668a
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 22 additions and 24 deletions

View File

@ -328,32 +328,30 @@ compatible with ANSI-compliant Common Lisp implementations.")
(sbcl-package->ecl-package sbcl-cl-ppcre)) (sbcl-package->ecl-package sbcl-cl-ppcre))
(define sbcl-cl-unicode-base (define sbcl-cl-unicode-base
(let ((revision "1") (package
(commit "9fcd06fba1ddc9e66aed2f2d6c32dc9b764f03ea")) (name "sbcl-cl-unicode-base")
(package (version "0.1.6")
(name "sbcl-cl-unicode-base") (source (origin
(version (string-append "0.1.5-" revision "." (string-take commit 7))) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://github.com/edicl/cl-unicode.git")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/edicl/cl-unicode.git") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (string-append "cl-unicode-" version "-checkout")) (base32
(sha256 "0ykx2s9lqfl74p1px0ik3l2izd1fc9jd1b4ra68s5x34rvjy0hza"))))
(base32 (build-system asdf-build-system/sbcl)
"1jicprb5b3bv57dy1kg03572gxkcaqdjhak00426s76g0plmx5ki")))) (arguments
(build-system asdf-build-system/sbcl) '(#:asd-file "cl-unicode.asd"
(arguments #:asd-system-name "cl-unicode/base"))
'(#:asd-file "cl-unicode.asd" (inputs
#:asd-system-name "cl-unicode/base")) `(("cl-ppcre" ,sbcl-cl-ppcre)))
(inputs (home-page "http://weitz.de/cl-unicode/")
`(("cl-ppcre" ,sbcl-cl-ppcre))) (synopsis "Portable Unicode library for Common Lisp")
(home-page "http://weitz.de/cl-unicode/") (description "CL-UNICODE is a portable Unicode library Common Lisp, which
(synopsis "Portable Unicode library for Common Lisp")
(description "CL-UNICODE is a portable Unicode library Common Lisp, which
is compatible with perl. It is pretty fast, thread-safe, and compatible with is compatible with perl. It is pretty fast, thread-safe, and compatible with
ANSI-compliant Common Lisp implementations.") ANSI-compliant Common Lisp implementations.")
(license license:bsd-2)))) (license license:bsd-2)))
(define-public sbcl-cl-unicode (define-public sbcl-cl-unicode
(package (package