gnu: cl-lisp-unit2: Update to 0.9.4-0.b5aa17b.
* gnu/packages/lisp-check.scm (sbcl-lisp-unit2): Update to 0.9.4-0.b5aa17b. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
parent
2d298564e3
commit
54a49cf1cc
|
@ -9,7 +9,7 @@
|
||||||
;;; Copyright © 2021, 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2021, 2023 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>
|
;;; Copyright © 2022, 2023 André A. Gomes <andremegafone@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -696,29 +696,31 @@ 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
|
||||||
(package
|
(let ((commit "b5aa17b298cf2f669f4c0262c471e1ee4ab4699a")
|
||||||
(name "sbcl-lisp-unit2")
|
(revision "0"))
|
||||||
(version "0.9.4")
|
(package
|
||||||
(source
|
(name "sbcl-lisp-unit2")
|
||||||
(origin
|
(version (git-version "0.9.4" revision commit))
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
(url "https://github.com/AccelerationNet/lisp-unit2")
|
(method git-fetch)
|
||||||
(commit version)))
|
(uri (git-reference
|
||||||
(file-name (git-file-name "cl-lisp-unit2" version))
|
(url "https://github.com/AccelerationNet/lisp-unit2")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32 "0dnq0qvbsn7ciknvmwzfjnimlzq1gdkv5xd87agmhxm1cpm1ksz0"))))
|
(file-name (git-file-name "cl-lisp-unit2" version))
|
||||||
(build-system asdf-build-system/sbcl)
|
(sha256
|
||||||
(inputs
|
(base32 "140nn22n1xv3qaash3x6h2h7xmys44s3f42b7bakfhpc4qlx0b69"))))
|
||||||
(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 New Issue