[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/15: gnu: Add cl-async-future.
From: |
guix-commits |
Subject: |
14/15: gnu: Add cl-async-future. |
Date: |
Fri, 17 Jan 2020 07:47:03 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit c5eedf80ac0d543f15229a58f7d90832b435b28f
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Fri Jan 17 11:42:29 2020 +0100
gnu: Add cl-async-future.
* gnu/packages/lisp-xyz.scm (sbcl-cl-async-future, cl-async-future,
ecl-cl-async-future): New variables.
---
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 2033a3e..ad28cd7 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -9626,3 +9626,38 @@ the successor to the now-deprecated cl-async-future
project.")
(define-public ecl-blackbird
(sbcl-package->ecl-package sbcl-blackbird))
+
+(define-public sbcl-cl-async-future
+ (let ((commit "ee36c22a69a9516407458d2ed8b475f1fc473959")
+ (revision "1"))
+ (package
+ (name "sbcl-cl-async-future")
+ (version (git-version "0.4.4.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/orthecreedence/cl-async-future.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0z0sc7qlzzxk99f4l26zp6rai9kv0kj0f599sxai5s44p17zbbvh"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("blackbird" ,sbcl-blackbird)))
+ (native-inputs
+ `(("cl-async" ,sbcl-cl-async)
+ ("eos" ,sbcl-eos)))
+ (synopsis "Futures implementation for Common Lisp")
+ (description
+ "This is futures implementation for Common Lisp. It plugs in nicely
+to cl-async.")
+ (home-page "http://orthecreedence.github.io/cl-async/future")
+ (license license:expat))))
+
+(define-public cl-async-future
+ (sbcl-package->cl-source-package sbcl-cl-async-future))
+
+(define-public ecl-cl-async-future
+ (sbcl-package->ecl-package sbcl-cl-async-future))
- branch master updated (33ed829 -> 8ea00ed), guix-commits, 2020/01/17
- 01/15: gnu: Add cl-misc-extensions., guix-commits, 2020/01/17
- 02/15: gnu: Add cl-mt19937., guix-commits, 2020/01/17
- 04/15: gnu: Add cl-cont., guix-commits, 2020/01/17
- 05/15: gnu: Add cl-coroutine., guix-commits, 2020/01/17
- 06/15: gnu: Add cl-vom., guix-commits, 2020/01/17
- 11/15: gnu: Add cl-async-repl., guix-commits, 2020/01/17
- 14/15: gnu: Add cl-async-future.,
guix-commits <=
- 07/15: gnu: Add cl-libuv., guix-commits, 2020/01/17
- 08/15: gnu: Add cl-async-base., guix-commits, 2020/01/17
- 12/15: gnu: Add cl-async-ssl., guix-commits, 2020/01/17
- 09/15: gnu: Add cl-async-util., guix-commits, 2020/01/17
- 03/15: gnu: Add cl-fset., guix-commits, 2020/01/17
- 10/15: gnu: Add cl-async., guix-commits, 2020/01/17
- 15/15: gnu: Add cl-green-threads., guix-commits, 2020/01/17
- 13/15: gnu: Add cl-blackbird., guix-commits, 2020/01/17