gnu: cl-misc-extensions: Update to 4.0.3.

* gnu/packages/lisp-xyz.scm (sbcl-misc-extensions): Update to 4.0.3.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Change-Id: I7eb1da2bb4d1491551d0e4e60e76b6ceceee07c7
This commit is contained in:
Andre A. Gomes 2024-05-25 21:18:28 +02:00 committed by Guillaume Le Vaillant
parent 51966d1bae
commit 888d526822
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -20341,25 +20341,23 @@ latitude/longitude and MGRS.")
(sbcl-package->ecl-package sbcl-mgrs)) (sbcl-package->ecl-package sbcl-mgrs))
(define-public sbcl-misc-extensions (define-public sbcl-misc-extensions
(let ((commit "101c05112bf2f1e1bbf527396822d2f50ca6327a") (package
(revision "1")) (name "sbcl-misc-extensions")
(package (version "4.0.3")
(name "sbcl-misc-extensions") (source
(version (git-version "3.3" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://gitlab.common-lisp.net/misc-extensions/misc-extensions.git")
(uri (git-reference (commit (string-append "v" version))))
(url "https://gitlab.common-lisp.net/misc-extensions/devel.git") (file-name (git-file-name "cl-misc-extensions" version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "02hw5k7zfzs736dhpcii8ncvx3ia4l5byw5ngzmhydqscbi4hcvc"))))
(base32 (build-system asdf-build-system/sbcl)
"0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0")))) (synopsis "Collection of small macros and extensions for Common Lisp")
(build-system asdf-build-system/sbcl) (description
(synopsis "Collection of small macros and extensions for Common Lisp") "This project is intended as a catchall for small, general-purpose
(description
"This project is intended as a catchall for small, general-purpose
extensions to Common Lisp. It contains: extensions to Common Lisp. It contains:
@itemize @itemize
@ -20367,8 +20365,8 @@ extensions to Common Lisp. It contains:
@code{let*} and @code{multiple-value-bind}, @code{let*} and @code{multiple-value-bind},
@item @code{gmap}, an iteration macro that generalizes @code{map}. @item @code{gmap}, an iteration macro that generalizes @code{map}.
@end itemize\n") @end itemize\n")
(home-page "https://common-lisp.net/project/misc-extensions/") (home-page "https://common-lisp.net/project/misc-extensions/")
(license license:public-domain)))) (license license:public-domain)))
(define-public cl-misc-extensions (define-public cl-misc-extensions
(sbcl-package->cl-source-package sbcl-misc-extensions)) (sbcl-package->cl-source-package sbcl-misc-extensions))