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:
parent
d4eeb77aae
commit
c02450c237
1 changed files with 22 additions and 24 deletions
|
@ -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,32 +573,29 @@ 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")
|
(package
|
||||||
(revision "1"))
|
(name "sbcl-lisp-unit2")
|
||||||
(package
|
(version "0.9.3")
|
||||||
(name "sbcl-lisp-unit2")
|
(source
|
||||||
(version (git-version "0.2.0" revision commit))
|
(origin
|
||||||
(source
|
(method git-fetch)
|
||||||
(origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://github.com/AccelerationNet/lisp-unit2")
|
||||||
(uri (git-reference
|
(commit version)))
|
||||||
(url "https://github.com/AccelerationNet/lisp-unit2")
|
(file-name (git-file-name "cl-lisp-unit2" version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32 "0y7k6fd4mf7ggc8kdrbg8flkj5j7i7ki1350wnj6hqax7cmh4xv5"))))
|
||||||
(sha256
|
(build-system asdf-build-system/sbcl)
|
||||||
(base32
|
(inputs
|
||||||
"1rsqy8y0jqll6xn9a593848f5wvd5ribv4csry1ly0hmdhfnqzlp"))))
|
(list sbcl-alexandria sbcl-cl-interpol sbcl-iterate
|
||||||
(build-system asdf-build-system/sbcl)
|
sbcl-symbol-munger))
|
||||||
(inputs
|
(synopsis "Test Framework for Common Lisp")
|
||||||
(list sbcl-alexandria sbcl-cl-interpol sbcl-iterate
|
(description
|
||||||
sbcl-symbol-munger))
|
"LISP-UNIT2 is a Common Lisp library that supports unit testing in the
|
||||||
(synopsis "Test Framework for Common Lisp")
|
|
||||||
(description
|
|
||||||
"LISP-UNIT2 is a Common Lisp library that supports unit testing in the
|
|
||||||
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))
|
||||||
|
|
Reference in a new issue