* [bug#59562] [PATCH] gnu: Add cl-marray.
@ 2022-11-25 7:12 Paul A. Patience
2022-11-25 9:34 ` bug#59562: " Guillaume Le Vaillant
0 siblings, 1 reply; 2+ messages in thread
From: Paul A. Patience @ 2022-11-25 7:12 UTC (permalink / raw)
To: 59562; +Cc: Paul A. Patience
* 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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#59562: [PATCH] gnu: Add cl-marray.
2022-11-25 7:12 [bug#59562] [PATCH] gnu: Add cl-marray Paul A. Patience
@ 2022-11-25 9:34 ` Guillaume Le Vaillant
0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2022-11-25 9:34 UTC (permalink / raw)
To: Paul A. Patience; +Cc: 59562-done
[-- Attachment #1: Type: text/plain, Size: 192 bytes --]
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 #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-25 9:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-25 7:12 [bug#59562] [PATCH] gnu: Add cl-marray Paul A. Patience
2022-11-25 9:34 ` bug#59562: " Guillaume Le Vaillant
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.