me
/
guix
Archived
1
0
Fork 0

gnu: cl-rove: Update to 0.10.0-1.6a5dfcd.

* gnu/packages/lisp-check.scm (sbcl-rove): Update to 0.10.0-1.6a5dfcd.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Mike Delago 2023-07-09 18:31:18 -04:00 committed by Guillaume Le Vaillant
parent 1c194cd2bb
commit 126a91888c
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 23 additions and 22 deletions

View File

@ -868,29 +868,30 @@ tester module.")
(sbcl-package->ecl-package sbcl-ptester)) (sbcl-package->ecl-package sbcl-ptester))
(define-public sbcl-rove (define-public sbcl-rove
(package (let ((commit "6a5dfcdced42879a4eff2a529e7e8ce492fadf41")
(name "sbcl-rove") (revision "1"))
(version "0.9.6") (package
(source (name "sbcl-rove")
(origin (version (git-version "0.10.0" revision commit))
(method git-fetch) (source (origin
(uri (git-reference (method git-fetch)
(url "https://github.com/fukamachi/rove") (uri (git-reference
(commit "f3695db08203bf26f3b861dc22ac0f4257d3ec21"))) (url "https://github.com/fukamachi/rove")
(file-name (git-file-name name version)) (commit commit)))
(sha256 (file-name (git-file-name "cl-rove" version))
(base32 (sha256
"07ala4l2fncxf540fzxj3h5mhi9i4wqllhj0rqk8m2ljl5zbz89q")))) (base32
(build-system asdf-build-system/sbcl) "1w99c0795ykhn14pfhyhvfzxzz0k1z1bb846xgz3iv19s0j2vykr"))))
(inputs (build-system asdf-build-system/sbcl)
(list sbcl-bordeaux-threads sbcl-dissect sbcl-trivial-gray-streams)) (inputs (list sbcl-bordeaux-threads
(home-page "https://github.com/fukamachi/rove") sbcl-dissect
(synopsis sbcl-trivial-gray-streams))
"Yet another common lisp testing library") (home-page "https://github.com/fukamachi/rove")
(description (synopsis "Yet another common lisp testing library")
"Rove is a unit testing framework for Common Lisp applications. (description
"Rove is a unit testing framework for Common Lisp applications.
This is intended to be a successor of Prove.") This is intended to be a successor of Prove.")
(license license:bsd-3))) (license license:bsd-3))))
(define-public cl-rove (define-public cl-rove
(sbcl-package->cl-source-package sbcl-rove)) (sbcl-package->cl-source-package sbcl-rove))