guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: cl-environments: Update to 20201110 and use SBCL build syste


From: guix-commits
Subject: 02/03: gnu: cl-environments: Update to 20201110 and use SBCL build system.
Date: Mon, 30 Nov 2020 05:51:58 -0500 (EST)

ambrevar pushed a commit to branch master
in repository guix.

commit a748984797ad278c9598be21283ed0ba40cf679b
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Mon Nov 30 11:19:26 2020 +0100

    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.
---
 gnu/packages/lisp-xyz.scm | 25 ++++++++++++++++++-------
 1 file changed, 18 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 6788b29..7539f51 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -11351,12 +11351,10 @@ collecting values easier.")
 (define-public ecl-collectors
   (sbcl-package->ecl-package sbcl-collectors))
 
-(define-public cl-environments
-  ;; TODO: asdf-build-system/sbcl fails here, why?  See if it works with the
-  ;; build system revamp once staging is merged after 2020-11-09.
-  (let ((commit "bbcd958a9ff23ce3e6ea5f8ee2edad9634819a3a")) ; No version in 2 
years.
+(define-public sbcl-cl-environments
+  (let ((commit "0b22154c5afefef23d1eba9a4fae11d73580ef41")) ; No version in 2 
years.
     (package
-      (name "cl-environments")
+      (name "sbcl-cl-environments")
       (version (git-version "0.2.3" "1" commit))
       (source
        (origin
@@ -11367,8 +11365,8 @@ collecting values easier.")
          (file-name (git-file-name name version))
          (sha256
           (base32
-           "1pfxl3vcdrb4mjy4q4c3c7q95kzv6rfjif3hzd5q91i9z621d64r"))))
-      (build-system asdf-build-system/source)
+           "18r3wfarr7lgn78m6c66r0r9aazirv07gy7xgvqkl9pmrz1bc47m"))))
+      (build-system asdf-build-system/sbcl)
       (propagated-inputs
        `(("alexandria" ,cl-alexandria)
          ("anaphora" ,cl-anaphora)
@@ -11385,6 +11383,12 @@ Common Lisp implementations are supported, even those 
which don't support the
 CLTL2 environment access API.")
       (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
   (package
     (name "sbcl-static-dispatch")
@@ -11408,6 +11412,13 @@ CLTL2 environment access API.")
        ("iterate" ,sbcl-iterate)
        ("trivia" ,sbcl-trivia)))
     (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)))
     (native-inputs
      `(("prove" ,sbcl-prove)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]