gnu: cl-colors2: Update to 0.5.4-3.cc03bad.

* gnu/packages/lisp-xyz.scm (sbcl-cl-colors2): Update to 0.5.4-3.cc03bad.
  [description]: Update with the latest changes.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Artyom Bologov 2023-06-16 19:52:53 +04:00 committed by Guillaume Le Vaillant
parent 23f77bd7b8
commit 010e79f292
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -11717,20 +11717,20 @@ (define-public ecl-cl-lex
(sbcl-package->ecl-package sbcl-cl-lex)) (sbcl-package->ecl-package sbcl-cl-lex))
(define-public sbcl-cl-colors2 (define-public sbcl-cl-colors2
(let ((commit "d620e7fb504bbec3ed48cc7cd03f60ce2bb3735d") (let ((commit "cc03badf5f69be65ae7e13c2f9a7c16838ab8241")
(revision "2")) (revision "3"))
(package (package
(name "sbcl-cl-colors2") (name "sbcl-cl-colors2")
(version (git-version "0.5.0" revision commit)) (version (git-version "0.5.4" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://notabug.org/cage/cl-colors2.git") (url "https://notabug.org/cage/cl-colors2.git")
(commit commit))) (commit commit)))
(file-name (git-file-name name version)) (file-name (git-file-name "cl-colors2" version))
(sha256 (sha256
(base32 "14wx006lv4bhf86z68484kphm5jsh86ns60pb4i1bi8kl8lp03r0")))) (base32 "1l7sl7nnvq13xmss9wwkhcq123bsylskxjrijwfkqp6sm02gbd15"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(native-inputs (native-inputs
(list sbcl-clunit2)) (list sbcl-clunit2))
@ -11741,11 +11741,10 @@ (define-public sbcl-cl-colors2
"This is a very simple color library for Common Lisp, providing: "This is a very simple color library for Common Lisp, providing:
@itemize @itemize
@item Types for representing colors in HSV and RGB spaces. @item Types for representing colors in HSV, HSL, and RGB spaces.
@item Simple conversion functions between the above types (and also @item Simple conversion functions between the above types.
hexadecimal representation for RGB). @item Function printing colors to HEX, RGB, RGBA, and HSL.
@item Some predefined colors (currently X11 color names -- of course @item Predefined colors from X11, SVG, and GDK.
the library does not depend on X11).
@end itemize\n") @end itemize\n")
(home-page "https://notabug.org/cage/cl-colors2") (home-page "https://notabug.org/cage/cl-colors2")
(license license:boost1.0)))) (license license:boost1.0))))