gnu: sbcl-static-dispatch: Update to 0.5.

* gnu/packages/lisp-xyz.scm (sbcl-static-dispatch): Update to 0.5.
  [version]: Use annotated tag of the latest release in upstream.
  [native-inputs]: Remove prove, add fiveam.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Sharlatan Hellseher 2021-05-03 20:26:17 +01:00 committed by Guillaume Le Vaillant
parent 36d4877041
commit f46b6d6487
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -13172,23 +13172,21 @@ environment access API.")
(sbcl-package->ecl-package sbcl-cl-environments)) (sbcl-package->ecl-package sbcl-cl-environments))
(define-public sbcl-static-dispatch (define-public sbcl-static-dispatch
(let ((commit "6243afcd152854c52ba33daef7394367b657d9c6")
(revision "1"))
(package (package
(name "sbcl-static-dispatch") (name "sbcl-static-dispatch")
(version (git-version "0.3" revision commit)) (version "0.5")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/alex-gutev/static-dispatch") (url "https://github.com/alex-gutev/static-dispatch")
(commit commit))) (commit (string-append "v" version))))
(file-name (git-file-name "static-dispatch" version)) (file-name (git-file-name "static-dispatch" version))
(sha256 (sha256
(base32 "1lli9ar1xbnhkgb5d01rlw4pvfylg2arrw68np2c07fpkkafimg7")))) (base32 "1a4vgfcn6qnpdkxxv93rri7zf3c92alixp6nyqwpz8mg2xmvy1j3"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(native-inputs (native-inputs
`(("prove" ,sbcl-prove))) `(("fiveam" ,sbcl-fiveam)))
(inputs (inputs
`(("agutil" ,sbcl-agutil) `(("agutil" ,sbcl-agutil)
("alexandria" ,sbcl-alexandria) ("alexandria" ,sbcl-alexandria)
@ -13212,7 +13210,7 @@ functions, such as adding/removing methods at runtime are not required. An
example of such a case is a generic equality comparison function. Currently example of such a case is a generic equality comparison function. Currently
generic functions are considered far too slow to implement generic arithmetic generic functions are considered far too slow to implement generic arithmetic
and comparison operations when used heavily in numeric code.") and comparison operations when used heavily in numeric code.")
(license license:expat)))) (license license:expat)))
(define-public cl-static-dispatch (define-public cl-static-dispatch
(sbcl-package->cl-source-package sbcl-static-dispatch)) (sbcl-package->cl-source-package sbcl-static-dispatch))