emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#62627: closed ([PATCH] gnu: Add cl-fast-ecs.)


From: GNU bug Tracking System
Subject: bug#62627: closed ([PATCH] gnu: Add cl-fast-ecs.)
Date: Tue, 04 Apr 2023 08:30:01 +0000

Your message dated Tue, 04 Apr 2023 08:27:24 +0000
with message-id <87edp0aw3x.fsf@kitej>
and subject line Re: [PATCH] gnu: Add cl-fast-ecs.
has caused the debbugs.gnu.org bug report #62627,
regarding [PATCH] gnu: Add cl-fast-ecs.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
62627: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=62627
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add cl-fast-ecs. Date: Sun, 2 Apr 2023 14:23:59 -0500
* gnu/packages/lisp-xyz.scm (cl-fast-ecs, ecl-cl-fast-ecs,
sbcl-cl-fast-ecs): New variables.
---
 gnu/packages/lisp-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index ff6eebed25..546364e5a9 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -241,6 +241,35 @@ (define-public ecl-reader
      ;; TODO: Tests fail on call to coreutils echo for ecl.
      `(#:tests? #f))))
 
+(define-public sbcl-cl-fast-ecs
+  (package
+   (name "sbcl-cl-fast-ecs")
+   (version "0.1.1")
+   (source
+    (origin
+     (method git-fetch)
+     (uri (git-reference
+           (url "https://gitlab.com/lockie/cl-fast-ecs";)
+           (commit version)))
+     (sha256
+      (base32
+       "06cnhm8zpyqyjr17mji5wvj4gh2glpdw8gqy1vwrq3vgphfmg560"))
+     (file-name (git-file-name name version))))
+   (build-system asdf-build-system/sbcl)
+   (native-inputs (list sbcl-parachute))
+   (inputs (list sbcl-alexandria sbcl-trivial-garbage))
+   (synopsis "Blazingly fast Entity-Component-System microframework")
+   (description "This package provides a Common Lisp implementation of
+the Entity-Component-System pattern.")
+   (home-page "https://lockie.gitlab.io/cl-fast-ecs/";)
+   (license license:expat)))
+
+(define-public cl-fast-ecs
+  (sbcl-package->cl-source-package sbcl-cl-fast-ecs))
+
+(define-public ecl-cl-fast-ecs
+  (sbcl-package->ecl-package sbcl-cl-fast-ecs))
+
 (define-public sbcl-stdutils
   (let ((commit "4a4e5a4036b815318282da5dee2a22825369137b")
         (revision "0"))
-- 
2.39.2




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH] gnu: Add cl-fast-ecs. Date: Tue, 04 Apr 2023 08:27:24 +0000
Closing as duplicate of <https://issues.guix.gnu.org/62628>.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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