unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: jgart via Guix-patches via <guix-patches@gnu.org>
To: 60835@debbugs.gnu.org
Cc: jgart <jgart@dismail.de>
Subject: [bug#60835] [PATCH v2 5/8] gnu: Add cl-data-frame.
Date: Sun, 15 Jan 2023 15:55:49 -0600	[thread overview]
Message-ID: <20230115215551.3740-5-jgart@dismail.de> (raw)
In-Reply-To: <20230115215551.3740-1-jgart@dismail.de>

* gnu/packages/lisp-xyz.scm (cl-data-frame, ecl-data-frame,
sbcl-data-frame): New variables.
---
 gnu/packages/lisp-xyz.scm | 41 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 77b885adc1..012ec02030 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -26829,6 +26829,47 @@ (define-public cl-distributions
 #;(define-public ecl-distributions
   (sbcl-package->ecl-package sbcl-distributions))
 
+(define-public sbcl-data-frame
+  (let ((commit "6f02e58312654ddf19d686f234dcf699fc4cd0f5")
+        (revision "0"))
+    (package
+      (name "sbcl-data-frame")
+      (version (git-version "1.1.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/Lisp-Stat/data-frame")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0bs1jh66bml25bj1lxdzz8cjhj3g060yyd5ggqsnsr4l2j0zyszv"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs (list sbcl-clunit2))
+      (inputs
+        (list sbcl-alexandria
+              sbcl-serapeum
+              sbcl-anaphora
+              sbcl-duologue
+              sbcl-statistics
+              sbcl-let-plus
+              sbcl-alexandria-plus
+              sbcl-array-operations
+              sbcl-numerical-utilities
+              sbcl-select))
+      (home-page "https://lisp-stat.dev/docs/manuals/data-frame/")
+      (synopsis "Data frames for Common Lisp")
+      (description "This package provides Data frames for Common Lisp, a
+two-dimensional array-like structure in which each column contains values
+of one variable and each row contains one set of values from each column.")
+      (license license:ms-pl))))
+
+(define-public cl-data-frame
+  (sbcl-package->cl-source-package sbcl-data-frame))
+
+(define-public ecl-data-frame
+  (sbcl-package->ecl-package sbcl-data-frame))
+
 (define-public sbcl-seria
   (let ((commit "2bba04dc6abdc0b85a511cae9c460942e2ad305a")
         (revision "0"))
-- 
2.38.1





  parent reply	other threads:[~2023-01-15 21:58 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-15 19:10 [bug#60835] [PATCH 0/5] Lisp-Stat jgart via Guix-patches via
2023-01-15 21:25 ` [bug#60835] [PATCH 1/8] gnu: Add cl-variates jgart via Guix-patches via
2023-01-15 21:25   ` [bug#60835] [PATCH 2/8] gnu: Add cl-cephes jgart via Guix-patches via
2023-01-15 21:25   ` [bug#60835] [PATCH 3/8] gnu: Add cl-statistics jgart via Guix-patches via
2023-01-15 21:25   ` [bug#60835] [PATCH 4/8] gnu: Add cl-special-functions jgart via Guix-patches via
2023-01-15 21:25   ` [bug#60835] [PATCH 5/8] gnu: Add cl-distributions jgart via Guix-patches via
2023-01-15 21:25   ` [bug#60835] [PATCH 6/8] gnu: Add cl-data-frame jgart via Guix-patches via
2023-01-15 21:25   ` [bug#60835] [PATCH 7/8] gnu: Add cl-dfio jgart via Guix-patches via
2023-01-15 21:25   ` [bug#60835] [PATCH 8/8] gnu: Add cl-lisp-stat jgart via Guix-patches via
2023-01-15 21:55 ` [bug#60835] [PATCH v2 1/8] gnu: Add cl-cephes jgart via Guix-patches via
2023-01-15 21:55   ` [bug#60835] [PATCH v2 2/8] gnu: Add cl-statistics jgart via Guix-patches via
2023-01-15 21:55   ` [bug#60835] [PATCH v2 3/8] gnu: Add cl-special-functions jgart via Guix-patches via
2023-01-15 21:55   ` [bug#60835] [PATCH v2 4/8] gnu: Add cl-distributions jgart via Guix-patches via
2023-01-15 21:55   ` jgart via Guix-patches via [this message]
2023-01-15 21:55   ` [bug#60835] [PATCH v2 6/8] gnu: Add cl-dfio jgart via Guix-patches via
2023-01-15 21:55   ` [bug#60835] [PATCH v2 7/8] gnu: Add cl-lisp-stat jgart via Guix-patches via
2023-01-15 21:55   ` [bug#60835] [PATCH v2 8/8] gnu: qutebrowser: Add note to description about font rendering bug jgart via Guix-patches via
2023-01-15 21:59 ` [bug#60835] [PATCH v3 1/8] gnu: Add cl-variates jgart via Guix-patches via
2023-01-15 21:59   ` [bug#60835] [PATCH v3 2/8] gnu: Add cl-cephes jgart via Guix-patches via
2023-01-15 21:59   ` [bug#60835] [PATCH v3 3/8] gnu: Add cl-statistics jgart via Guix-patches via
2023-01-15 21:59   ` [bug#60835] [PATCH v3 4/8] gnu: Add cl-special-functions jgart via Guix-patches via
2023-01-15 21:59   ` [bug#60835] [PATCH v3 5/8] gnu: Add cl-distributions jgart via Guix-patches via
2023-01-15 21:59   ` [bug#60835] [PATCH v3 6/8] gnu: Add cl-data-frame jgart via Guix-patches via
2023-01-15 21:59   ` [bug#60835] [PATCH v3 7/8] gnu: Add cl-dfio jgart via Guix-patches via
2023-01-15 21:59   ` [bug#60835] [PATCH v3 8/8] gnu: Add cl-lisp-stat jgart via Guix-patches via
2023-01-18 13:08   ` [bug#60835] [PATCH v3 1/8] gnu: Add cl-variates Guillaume Le Vaillant
2023-01-18 23:15 ` [bug#60835] [PATCH v4 " jgart via Guix-patches via
2023-01-18 23:15   ` [bug#60835] [PATCH v4 2/8] gnu: Add cl-cephes jgart via Guix-patches via
2023-01-18 23:15   ` [bug#60835] [PATCH v4 3/8] gnu: Add cl-statistics jgart via Guix-patches via
2023-01-18 23:15   ` [bug#60835] [PATCH v4 4/8] gnu: Add cl-special-functions jgart via Guix-patches via
2023-01-18 23:15   ` [bug#60835] [PATCH v4 5/8] gnu: Add cl-distributions jgart via Guix-patches via
2023-01-18 23:15   ` [bug#60835] [PATCH v4 6/8] gnu: Add cl-data-frame jgart via Guix-patches via
2023-01-18 23:15   ` [bug#60835] [PATCH v4 7/8] gnu: Add cl-dfio jgart via Guix-patches via
2023-01-18 23:15   ` [bug#60835] [PATCH v4 8/8] gnu: Add cl-lisp-stat jgart via Guix-patches via
2023-01-20 18:36   ` [bug#60835] [PATCH v4 1/8] gnu: Add cl-variates Guillaume Le Vaillant
2023-01-31  2:16 ` [bug#60835] [PATCH 0/5] Lisp-Stat jgart via Guix-patches via
2023-02-01 14:32   ` Guillaume Le Vaillant
2023-02-17 18:20     ` bug#60835: " Guillaume Le Vaillant
2023-02-17 22:09     ` [bug#60835] " jgart via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230115215551.3740-5-jgart@dismail.de \
    --to=guix-patches@gnu.org \
    --cc=60835@debbugs.gnu.org \
    --cc=jgart@dismail.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).