[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/22: gnu: Add cl-legion.
From: |
guix-commits |
Subject: |
07/22: gnu: Add cl-legion. |
Date: |
Wed, 3 Aug 2022 10:48:02 -0400 (EDT) |
glv pushed a commit to branch master
in repository guix.
commit 1fb04c20976c71ff986f480066e497fb0e5ad38a
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Mon Jul 4 19:11:31 2022 +0200
gnu: Add cl-legion.
* gnu/packages/lisp-xyz.scm (cl-legion, ecl-legion, sbcl-legion): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
gnu/packages/lisp-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 5591dfb688..895cf3f4b9 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -4763,6 +4763,41 @@ streams (though primarily the former, while wrapping the
latter).")
(define-public ecl-fast-io
(sbcl-package->ecl-package sbcl-fast-io))
+(define-public sbcl-legion
+ (let ((commit "599cca19f0e34246814621f7fe90322221c2e263")
+ (revision "1"))
+ (package
+ (name "sbcl-legion")
+ (version (git-version "0.1.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fukamachi/legion/")
+ (commit commit)))
+ (file-name (git-file-name "cl-legion" version))
+ (sha256
+ (base32 "0583pw0mf8bd4dj42w2xrlzcwfkl8q28n1bh8dpxxfg93crx4si6"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ (list sbcl-prove sbcl-local-time))
+ (inputs
+ (list
+ sbcl-bordeaux-threads
+ sbcl-cl-speedy-queue
+ sbcl-vom))
+ (home-page "https://github.com/fukamachi/legion")
+ (synopsis "Simple multithreading worker mechanism for Common Lisp")
+ (description
+ "This library provides a simple multithreading worker mechanism.")
+ (license license:bsd-3))))
+
+(define-public cl-legion
+ (sbcl-package->cl-source-package sbcl-legion))
+
+(define-public ecl-legion
+ (sbcl-package->ecl-package sbcl-legion))
+
(define-public sbcl-jonathan
(let ((commit "1f448b4f7ac8265e56e1c02b32ce383e65316300")
(revision "1"))
- 05/22: gnu: sbcl-quri: Remove obsolete test workaround., (continued)
- 05/22: gnu: sbcl-quri: Remove obsolete test workaround., guix-commits, 2022/08/03
- 08/22: gnu: sbcl-jonathan: Fix tests., guix-commits, 2022/08/03
- 13/22: gnu: sbcl-vas-string-metrics: Re-enable tests., guix-commits, 2022/08/03
- 12/22: gnu: sbcl-cl-heap: Re-enable tests., guix-commits, 2022/08/03
- 15/22: gnu: Add cl-mw-equiv., guix-commits, 2022/08/03
- 16/22: gnu: sbcl-quantile-estimator: Enable tests., guix-commits, 2022/08/03
- 02/22: build-system: asdf: Let ASDF locate the .asd files., guix-commits, 2022/08/03
- 10/22: gnu: sbcl-spatial-trees: Build spatial-trees.nss and fix tests., guix-commits, 2022/08/03
- 06/22: gnu: sbcl-cl-reexport: Remove obsolete test workaround., guix-commits, 2022/08/03
- 11/22: gnu: sbcl-lisp-namespace: Enable tests., guix-commits, 2022/08/03
- 07/22: gnu: Add cl-legion.,
guix-commits <=
- 17/22: gnu: sbcl-cl-online-learning: Remove unnecessary arguments., guix-commits, 2022/08/03
- 18/22: gnu: sbcl-jzon: Enable tests., guix-commits, 2022/08/03
- 21/22: gnu: sbcl-glop: Remove obsolete test-asd-file parameter., guix-commits, 2022/08/03
- 20/22: gnu: sbcl-stumpwm-kbd-layouts: Fix build., guix-commits, 2022/08/03
- 09/22: gnu: sbcl-cl-irc: Fix tests., guix-commits, 2022/08/03
- 01/22: guix: build: Switch from asdf:compile-system to asdf:load-system., guix-commits, 2022/08/03
- 19/22: build-system: asdf: Add asd-operation parameter., guix-commits, 2022/08/03
- 22/22: gnu: ecl-legion: Disable tests., guix-commits, 2022/08/03