Archived
1
0
Fork 0

gnu: sbcl-cl-environments: Update to 0.4.

* gnu/package/lisp-xyz.scm (sbcl-cl-environments): Update to 0.4.
  [version]: Use annotated tag instead of direct commit, there are
  upstream releases available now.

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

View file

@ -13135,41 +13135,40 @@ collecting values easier.")
(sbcl-package->ecl-package sbcl-collectors)) (sbcl-package->ecl-package sbcl-collectors))
(define-public sbcl-cl-environments (define-public sbcl-cl-environments
(let ((commit "0b22154c5afefef23d1eba9a4fae11d73580ef41")) ; No version in 2 years. (package
(package (name "sbcl-cl-environments")
(name "sbcl-cl-environments") (version "0.4")
(version (git-version "0.2.3" "1" commit)) (source
(source (origin
(origin (method git-fetch)
(method git-fetch) (uri (git-reference
(uri (git-reference (url "https://github.com/alex-gutev/cl-environments")
(url "https://github.com/alex-gutev/cl-environments") (commit (string-append "v" version))))
(commit commit))) (file-name (git-file-name "cl-environments" version))
(file-name (git-file-name name version)) (sha256
(sha256 (base32 "10jxj043d2dw5vc0i0lz0lsa4qszn8him5is8jdhl4nsyfcazmky"))))
(base32 (build-system asdf-build-system/sbcl)
"18r3wfarr7lgn78m6c66r0r9aazirv07gy7xgvqkl9pmrz1bc47m")))) (inputs
(build-system asdf-build-system/sbcl) `(("alexandria" ,sbcl-alexandria)
(inputs ("anaphora" ,sbcl-anaphora)
`(("alexandria" ,sbcl-alexandria) ("collectors" ,sbcl-collectors)
("anaphora" ,sbcl-anaphora) ("optima" ,sbcl-optima)))
("collectors" ,sbcl-collectors) (native-inputs
("optima" ,sbcl-optima))) `(("prove" ,sbcl-prove)))
(native-inputs (home-page "https://github.com/alex-gutev/cl-environments")
`(("prove" ,sbcl-prove))) (synopsis "Implements the Common Lisp standard environment access API")
(home-page "https://github.com/alex-gutev/cl-environments") (description
(synopsis "Implements the Common Lisp standard environment access API") "This library provides a uniform API, as specified in Common Lisp the
(description "This library provides a uniform API, as specified in Common Language 2, for accessing information about variable and function bindings
Lisp the Language 2, for accessing information about variable and function from implementation-defined lexical environment objects. All major Common
bindings from implementation-defined lexical environment objects. All major Lisp implementations are supported, even those which don't support the CLTL2
Common Lisp implementations are supported, even those which don't support the environment access API.")
CLTL2 environment access API.") (license license:expat)))
(license license:expat))))
(define-public cl-environments (define-public cl-environments
(sbcl-package->cl-source-package sbcl-cl-environments)) (sbcl-package->cl-source-package sbcl-cl-environments))
(define-public ecl-environments (define-public ecl-cl-environments
(sbcl-package->ecl-package sbcl-cl-environments)) (sbcl-package->ecl-package sbcl-cl-environments))
(define-public sbcl-static-dispatch (define-public sbcl-static-dispatch