GNU bug report logs -
#60835
[PATCH 0/5] Lisp-Stat
Previous Next
Reported by: jgart <jgart <at> dismail.de>
Date: Sun, 15 Jan 2023 19:12:01 UTC
Severity: normal
Tags: patch
Done: Guillaume Le Vaillant <glv <at> posteo.net>
Bug is archived. No further changes may be made.
Full log
Message #8 received at 60835 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/lisp-xyz.scm (cl-variates, ecl-cl-variates,
sbcl-cl-variates): New variables.
Hi,
Here is the patch set.
cephes fails on ecl.
See this issue that I opened:
https://github.com/Lisp-Stat/cephes.cl/issues/2
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 943d295c5d..35e10b3301 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -28,7 +28,7 @@
;;; Copyright © 2021 Cameron Chaparro <cameron <at> cameronchaparro.com>
;;; Copyright © 2021 Charles Jackson <charles.b.jackson <at> protonmail.com>
;;; Copyright © 2021, 2022 Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
-;;; Copyright © 2021, 2022 jgart <jgart <at> dismail.de>
+;;; Copyright © 2021, 2022, 2023 jgart <jgart <at> dismail.de>
;;; Copyright © 2021 Aleksandr Vityazev <avityazev <at> posteo.org>
;;; Copyright © 2021 Jacob MacDonald <jaccarmac <at> gmail.com>
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan <at> gmail.com>
@@ -26644,6 +26644,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
This bug report was last modified 2 years and 91 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.