Archived
1
0
Fork 0

gnu: cl-lisp-unit2: Update to 0.9.3.

* gnu/packages/lisp-check.scm (sbcl-lisp-unit2): Update to 0.9.3.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
André A. Gomes 2022-09-06 23:22:42 +03:00 committed by Guillaume Le Vaillant
parent d4eeb77aae
commit c02450c237
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -9,6 +9,7 @@
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2021 Charles Jackson <charles.b.jackson@protonmail.com> ;;; Copyright © 2021 Charles Jackson <charles.b.jackson@protonmail.com>
;;; Copyright © 2022 jgart <jgart@dismail.de> ;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; Copyright © 2022 André A. Gomes <andremegafone@gmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -572,21 +573,18 @@ testing. It is an extension of the library written by Chris Riesbeck.")
(define-public sbcl-lisp-unit2 (define-public sbcl-lisp-unit2
;; There is a cyclical dependency between symbol-munger and lisp-unit2. ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
;; See https://github.com/AccelerationNet/symbol-munger/issues/4 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
(let ((commit "fb9721524d1e4e73abb223ee036d74ce14a5505c")
(revision "1"))
(package (package
(name "sbcl-lisp-unit2") (name "sbcl-lisp-unit2")
(version (git-version "0.2.0" revision commit)) (version "0.9.3")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/AccelerationNet/lisp-unit2") (url "https://github.com/AccelerationNet/lisp-unit2")
(commit commit))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name "cl-lisp-unit2" version))
(sha256 (sha256
(base32 (base32 "0y7k6fd4mf7ggc8kdrbg8flkj5j7i7ki1350wnj6hqax7cmh4xv5"))))
"1rsqy8y0jqll6xn9a593848f5wvd5ribv4csry1ly0hmdhfnqzlp"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(inputs (inputs
(list sbcl-alexandria sbcl-cl-interpol sbcl-iterate (list sbcl-alexandria sbcl-cl-interpol sbcl-iterate
@ -597,7 +595,7 @@ testing. It is an extension of the library written by Chris Riesbeck.")
style of JUnit for Java. It is a new version of the lisp-unit library written style of JUnit for Java. It is a new version of the lisp-unit library written
by Chris Riesbeck.") by Chris Riesbeck.")
(home-page "https://github.com/AccelerationNet/lisp-unit2") (home-page "https://github.com/AccelerationNet/lisp-unit2")
(license license:expat)))) (license license:expat)))
(define-public cl-lisp-unit2 (define-public cl-lisp-unit2
(sbcl-package->cl-source-package sbcl-lisp-unit2)) (sbcl-package->cl-source-package sbcl-lisp-unit2))