GNU bug report logs -
#58725
[PATCH] gnu: Add cl-select.
Previous Next
Reported by: jgart <jgart <at> dismail.de>
Date: Sat, 22 Oct 2022 22:22:02 UTC
Severity: normal
Tags: patch
Done: Guillaume Le Vaillant <glv <at> posteo.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#58725: [PATCH] gnu: Add cl-select.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 58725 <at> debbugs.gnu.org.
--
58725: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=58725
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
Patch pushed as 343b745b0d64e63f26133c6de56fc5d913a0ce14.
Thanks.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
* gnu/packages/lisp-xyz.scm (cl-select, ecl-select, sbcl-select): New variables.
---
gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index dc4b7b197a..224926e3ca 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -835,6 +835,40 @@ (define-public sbcl-cl-abnf
grammar.")
(license license:expat))))
+(define-public sbcl-select
+ (let ((commit "df7920fc451b6d15345040ce4a3ee1ea2818ab1a")
+ (revision "0"))
+ (package
+ (name "sbcl-select")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Lisp-Stat/select")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0bhpvfqp7n33pia4y62qi31bx86gjl2nxjy529rfawac57c9rxv3"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ (list sbcl-alexandria
+ sbcl-anaphora
+ sbcl-let-plus))
+ (native-inputs
+ (list sbcl-fiveam))
+ (home-page "https://lisp-stat.github.io/select/")
+ (synopsis "Library for taking slices from array-like objects")
+ (description
+"A library for selecting portions of sequences, arrays or data-frames.")
+ (license license:ms-pl))))
+
+(define-public cl-select
+ (sbcl-package->cl-source-package sbcl-select))
+
+(define-public ecl-select
+ (sbcl-package->ecl-package sbcl-select))
+
(define-public cl-abnf
(sbcl-package->cl-source-package sbcl-cl-abnf))
--
2.38.1
This bug report was last modified 2 years and 212 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.