glv pushed a commit to branch master
in repository guix.
commit 025671d584976af5a8b48ec9ff812138c1a3cfbc
Author: Simen Endsjø <[email protected]>
AuthorDate: Tue Apr 15 22:13:37 2025 +0200
gnu: cl-fast-ecs: Update to 0.7.1.
* gnu/packages/lisp-xyz.scm (sbcl-cl-fast-ecs): Update to 0.7.1.
[native-inputs]: Add graphviz-minimal. Remove sbcl-chlorophyll.
[inputs]: Remove sbcl-trivial-garbage. Add sbcl-closer-mop,
sbcl-global-vars
and sbcl-trivial-adjust-simple-array.
(ecl-cl-fast-ecs)[arguments]: Disable tests.
Change-Id: I6da9a7609272ae8ad49e11d9ef67dc72343a2e1d
Co-authored-by: Guillaume Le Vaillant <[email protected]>
Signed-off-by: Guillaume Le Vaillant <[email protected]>
---
gnu/packages/lisp-xyz.scm | 19 ++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 72d7546f66..d8425a2b54 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -5701,7 +5701,7 @@ Common Lisp.")
(define-public sbcl-cl-fast-ecs
(package
(name "sbcl-cl-fast-ecs")
- (version "0.2.2")
+ (version "0.7.1")
(source
(origin
(method git-fetch)
@@ -5710,12 +5710,17 @@ Common Lisp.")
(commit version)))
(file-name (git-file-name "cl-fast-ecs" version))
(sha256
- (base32 "00nw5nwzcz8x1x1lycmjik8pcqzxrl896j0xjjl33rjljsmj45sx"))))
+ (base32 "068xc4ncxc9crg8b9x4abv1l8biq89d2fxm1i4m3jrbfx4adiqr5"))))
(build-system asdf-build-system/sbcl)
(native-inputs
- (list sbcl-chlorophyll sbcl-cl-mock sbcl-parachute))
+ (list graphviz-minimal
+ sbcl-cl-mock
+ sbcl-parachute))
(inputs
- (list sbcl-alexandria sbcl-trivial-garbage))
+ (list sbcl-alexandria
+ sbcl-closer-mop
+ sbcl-global-vars
+ sbcl-trivial-adjust-simple-array))
(home-page "https://lockie.gitlab.io/cl-fast-ecs/")
(synopsis "Blazingly fast Entity-Component-System microframework")
(description
@@ -5733,7 +5738,11 @@ built at runtime.")
(sbcl-package->cl-source-package sbcl-cl-fast-ecs))
(define-public ecl-cl-fast-ecs
- (sbcl-package->ecl-package sbcl-cl-fast-ecs))
+ (package
+ (inherit (sbcl-package->ecl-package sbcl-cl-fast-ecs))
+ (arguments
+ ;; FIXME: Calling some subprocesses during tests fails.
+ (list #:tests? #f))))
(define-public sbcl-cl-fastcgi
(let ((commit "de8b49b26de9863996ec18db28af8ab7e8ac4e20")