gnu: cl-colors2: Update to 0.6.0.

* gnu/packages/lisp-xyz.scm (sbcl-cl-colors2): Update to 0.6.0.
  [inputs]: Add sbcl-parse-number.

Change-Id: I954aa3eebff9da0d8749df1c7844982f8171d1d0
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Andre A. Gomes 2024-04-15 22:59:23 +03:00 committed by Guillaume Le Vaillant
parent 2126dab4cd
commit e9481f6ce5
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F

View File

@ -12654,28 +12654,26 @@ be used with @code{cl-yacc}.")
(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 "7a1410765e5186625df19a875cebba685e9e51bd") (package
(revision "4")) (name "sbcl-cl-colors2")
(package (version "0.6.0")
(name "sbcl-cl-colors2") (source
(version (git-version "0.5.4" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://codeberg.org/cage/cl-colors2")
(uri (git-reference (commit (string-append "v" version))))
(url "https://codeberg.org/cage/cl-colors2.git") (file-name (git-file-name "cl-colors2" version))
(commit commit))) (sha256
(file-name (git-file-name "cl-colors2" version)) (base32 "0vnvlq9xixs04768q7hapsi16cjp3ych6mypvs6chihd5dal4cnd"))))
(sha256 (build-system asdf-build-system/sbcl)
(base32 "1xk3wshp21v193wbj1gs0czxaci00wwm957vmqi2dvlv0wgb2hfr")))) (native-inputs
(build-system asdf-build-system/sbcl) (list sbcl-clunit2))
(native-inputs (inputs
(list sbcl-clunit2)) (list sbcl-alexandria sbcl-cl-ppcre sbcl-parse-number))
(inputs (synopsis "Color library for Common Lisp")
(list sbcl-alexandria sbcl-cl-ppcre)) (description
(synopsis "Color library for Common Lisp") "This is a very simple color library for Common Lisp, providing:
(description
"This is a very simple color library for Common Lisp, providing:
@itemize @itemize
@item Types for representing colors in HSV, HSL, and RGB spaces. @item Types for representing colors in HSV, HSL, and RGB spaces.
@ -12683,8 +12681,8 @@ be used with @code{cl-yacc}.")
@item Function printing colors to HEX, RGB, RGBA, and HSL. @item Function printing colors to HEX, RGB, RGBA, and HSL.
@item Predefined colors from X11, SVG, and GDK. @item Predefined colors from X11, SVG, and GDK.
@end itemize\n") @end itemize\n")
(home-page "https://codeberg.org/cage/cl-colors2") (home-page "https://codeberg.org/cage/cl-colors2")
(license license:boost1.0)))) (license license:boost1.0)))
(define-public cl-colors2 (define-public cl-colors2
(sbcl-package->cl-source-package sbcl-cl-colors2)) (sbcl-package->cl-source-package sbcl-cl-colors2))