gnu: cl-environments: Update to 20201110 and use SBCL build system.
* gnu/packages/lisp-xyz.scm (cl-environments): Update to 20201110. [build-system]: Use asdf-build-system/sbcl. (ecl-cl-environments, sbcl-cl-environments): New variables. (sbcl-static-dispatch): Comment which error we get when using sbcl-cl-environments.
This commit is contained in:
parent
fcc9c5a575
commit
a748984797
@ -11351,12 +11351,10 @@ collecting values easier.")
|
|||||||
(define-public ecl-collectors
|
(define-public ecl-collectors
|
||||||
(sbcl-package->ecl-package sbcl-collectors))
|
(sbcl-package->ecl-package sbcl-collectors))
|
||||||
|
|
||||||
(define-public cl-environments
|
(define-public sbcl-cl-environments
|
||||||
;; TODO: asdf-build-system/sbcl fails here, why? See if it works with the
|
(let ((commit "0b22154c5afefef23d1eba9a4fae11d73580ef41")) ; No version in 2 years.
|
||||||
;; build system revamp once staging is merged after 2020-11-09.
|
|
||||||
(let ((commit "bbcd958a9ff23ce3e6ea5f8ee2edad9634819a3a")) ; No version in 2 years.
|
|
||||||
(package
|
(package
|
||||||
(name "cl-environments")
|
(name "sbcl-cl-environments")
|
||||||
(version (git-version "0.2.3" "1" commit))
|
(version (git-version "0.2.3" "1" commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
@ -11367,8 +11365,8 @@ collecting values easier.")
|
|||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1pfxl3vcdrb4mjy4q4c3c7q95kzv6rfjif3hzd5q91i9z621d64r"))))
|
"18r3wfarr7lgn78m6c66r0r9aazirv07gy7xgvqkl9pmrz1bc47m"))))
|
||||||
(build-system asdf-build-system/source)
|
(build-system asdf-build-system/sbcl)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("alexandria" ,cl-alexandria)
|
`(("alexandria" ,cl-alexandria)
|
||||||
("anaphora" ,cl-anaphora)
|
("anaphora" ,cl-anaphora)
|
||||||
@ -11385,6 +11383,12 @@ Common Lisp implementations are supported, even those which don't support the
|
|||||||
CLTL2 environment access API.")
|
CLTL2 environment access API.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public cl-environments
|
||||||
|
(sbcl-package->cl-source-package sbcl-cl-environments))
|
||||||
|
|
||||||
|
(define-public ecl-environments
|
||||||
|
(sbcl-package->ecl-package sbcl-cl-environments))
|
||||||
|
|
||||||
(define-public sbcl-static-dispatch
|
(define-public sbcl-static-dispatch
|
||||||
(package
|
(package
|
||||||
(name "sbcl-static-dispatch")
|
(name "sbcl-static-dispatch")
|
||||||
@ -11408,6 +11412,13 @@ CLTL2 environment access API.")
|
|||||||
("iterate" ,sbcl-iterate)
|
("iterate" ,sbcl-iterate)
|
||||||
("trivia" ,sbcl-trivia)))
|
("trivia" ,sbcl-trivia)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
;; FIXME: `sbcl-cl-environments' input fails with
|
||||||
|
;;
|
||||||
|
;; compiling #<CL-SOURCE-FILE "collectors" "collectors">
|
||||||
|
;; Unhandled SB-INT:SIMPLE-FILE-ERROR in thread #<SB-THREAD:THREAD "main thread" RUNNING
|
||||||
|
;; {1008238213}>:
|
||||||
|
;; Error opening #P"/.../cl-environments/src/common/package-tmp5GEXGEG5.fasl":
|
||||||
|
;; Permission denied
|
||||||
`(("cl-environments" ,cl-environments)))
|
`(("cl-environments" ,cl-environments)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("prove" ,sbcl-prove)))
|
`(("prove" ,sbcl-prove)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user