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

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

bug#59562: closed ([PATCH] gnu: Add cl-marray.)


From: GNU bug Tracking System
Subject: bug#59562: closed ([PATCH] gnu: Add cl-marray.)
Date: Fri, 25 Nov 2022 09:37:01 +0000

Your message dated Fri, 25 Nov 2022 09:34:06 +0000
with message-id <87a64fgyv3.fsf@kitej>
and subject line Re: [bug#59562] [PATCH] gnu: Add cl-marray.
has caused the debbugs.gnu.org bug report #59562,
regarding [PATCH] gnu: Add cl-marray.
to be marked as done.

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


-- 
59562: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=59562
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add cl-marray. Date: Fri, 25 Nov 2022 07:12:23 +0000
* gnu/packages/lisp-xyz.scm (sbcl-marray, cl-marray, ecl-marray): New
variables.
---
 gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 117e38750e..2a0822380c 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -12860,6 +12860,43 @@ (define-public cl-mmap
 (define-public ecl-mmap
   (sbcl-package->ecl-package sbcl-mmap))

+(define-public sbcl-marray
+  (let ((commit "0352f316b6830f0b119088ba9be836e4726bd7d8")
+        (revision "0"))
+    (package
+      (name "sbcl-marray")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/death/marray";)
+               (commit commit)))
+         (file-name (git-file-name "cl-marray" version))
+         (sha256
+          (base32 "0l4kvzpiw14vqhlsaflp3c7y51vznjjgbdi0q3axqk1wxvzy1zlx"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       '(#:phases
+         (modify-phases %standard-phases
+           (add-after 'unpack 'fix-dependencies
+             (lambda _
+               (substitute* "marray.asd"
+                 ((":components")
+                  ":depends-on (#+sbcl \"sb-posix\")\n  :components")))))))
+      (home-page "https://github.com/death/marray";)
+      (synopsis "Memory-mapped files as Common Lisp arrays")
+      (description
+       "MARRAY is a library which provides access to memory-mapped files
+through Common Lisp arrays.")
+      (license license:expat))))
+
+(define-public cl-marray
+  (sbcl-package->cl-source-package sbcl-marray))
+
+(define-public ecl-marray
+  (sbcl-package->ecl-package sbcl-marray))
+
 (define-public sbcl-3bz
   (let ((commit "569614c40408f3aefc77ba233e0e4bd66d3850ad")
         (revision "1"))
--
2.38.0





--- End Message ---
--- Begin Message --- Subject: Re: [bug#59562] [PATCH] gnu: Add cl-marray. Date: Fri, 25 Nov 2022 09:34:06 +0000
Patch pushed as 5c93d5136622df41ca799d122a4d1d6cfd6b28d5 with ecl-marray
commented out for now, because when building it the library indicates
that ECL support is not implemented yet.
Thanks.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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