From: jgart via Guix-patches via <guix-patches@gnu.org>
To: 60835@debbugs.gnu.org
Cc: Guillaume Le Vaillant <glv@posteo.net>, jgart <jgart@dismail.de>
Subject: [bug#60835] [PATCH v4 1/8] gnu: Add cl-variates.
Date: Wed, 18 Jan 2023 17:15:43 -0600 [thread overview]
Message-ID: <20230118231548.4609-1-jgart@dismail.de> (raw)
In-Reply-To: <20230115131057.GB12647@dismail.de>
* gnu/packages/lisp-xyz.scm (cl-variates, ecl-cl-variates,
sbcl-cl-variates): New variables.
Hi Guillaume, thanks for the review.
Here is version 4 of the patch set rebased against the latest master commit as of now.
all best,
jgart
---
gnu/packages/lisp-xyz.scm | 35 ++++++++++++++++++++++++++++++++++-
1 file changed, 34 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 58fbef1900..cf8b3f63ae 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -28,7 +28,7 @@
;;; Copyright © 2021 Cameron Chaparro <cameron@cameronchaparro.com>
;;; Copyright © 2021 Charles Jackson <charles.b.jackson@protonmail.com>
;;; Copyright © 2021, 2022 Foo Chuan Wei <chuanwei.foo@hotmail.com>
-;;; Copyright © 2021, 2022 jgart <jgart@dismail.de>
+;;; Copyright © 2021, 2022, 2023 jgart <jgart@dismail.de>
;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
;;; Copyright © 2021 Jacob MacDonald <jaccarmac@gmail.com>
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
@@ -26702,6 +26702,39 @@ (define-public cl-smug
(define-public ecl-smug
(sbcl-package->ecl-package sbcl-smug))
+(define-public sbcl-cl-variates
+ (let ((commit "4e7548754d8a8731a42487fae31174db4bf36d47")
+ (revision "0"))
+ (package
+ (name "sbcl-cl-variates")
+ (version "0.9.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.common-lisp.net/cl-variates/cl-variates")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "03wnvfi3yfflpvi0mr732r834msij4vrwdbgf6csh0b8kqxl47zn"))))
+ (build-system asdf-build-system/sbcl)
+ ;; USE-PACKAGE #<PACKAGE "CL-VARIATES"> causes name-conflicts in
+ ;; #<PACKAGE "CL-VARIATES-TEST"> between the following symbols:
+ ;; CL-VARIATES:RANDOM-ELEMENT, LIFT:RANDOM-ELEMENT
+ (arguments (list #:tests? #f))
+ (native-inputs (list sbcl-lift))
+ (home-page "https://gitlab.common-lisp.net/cl-variates/cl-variates")
+ (synopsis "Portable Common Lisp Random Number Generation")
+ (description "The variates package provides portable random number
+ generation as well as numerous distributions.")
+ (license license:expat))))
+
+(define-public cl-variates
+ (sbcl-package->cl-source-package sbcl-cl-variates))
+
+(define-public ecl-cl-variates
+ (sbcl-package->ecl-package sbcl-cl-variates))
+
(define-public sbcl-seria
(let ((commit "2bba04dc6abdc0b85a511cae9c460942e2ad305a")
(revision "0"))
--
2.38.1
next prev parent reply other threads:[~2023-01-18 23:19 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 ` [bug#60835] [PATCH v2 5/8] gnu: Add cl-data-frame jgart via Guix-patches via
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 ` jgart via Guix-patches via [this message]
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230118231548.4609-1-jgart@dismail.de \
--to=guix-patches@gnu.org \
--cc=60835@debbugs.gnu.org \
--cc=glv@posteo.net \
--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 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.