[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/11: gnu: Add cl-bordeaux-threads.
From: |
??? |
Subject: |
04/11: gnu: Add cl-bordeaux-threads. |
Date: |
Sat, 8 Oct 2016 13:26:00 +0000 (UTC) |
iyzsong pushed a commit to branch master
in repository guix.
commit 8662809d1baaea8edbf5b76c73e0cb1d6bcc2514
Author: Andy Patterson <address@hidden>
Date: Sun Oct 2 22:41:32 2016 -0400
gnu: Add cl-bordeaux-threads.
* gnu/packages/lisp.scm (cl-bordeaux-threads, sbcl-bordeaux-threads)
(ecl-bordeaux-threads): New variables.
Signed-off-by: 宋文武 <address@hidden>
---
gnu/packages/lisp.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 0405914..d9c1fa9 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -581,3 +581,32 @@ interactive development model in mind.")
(define-public ecl-fiveam
(sbcl-package->ecl-package sbcl-fiveam))
+
+(define-public sbcl-bordeaux-threads
+ (package
+ (name "sbcl-bordeaux-threads")
+ (version "0.8.5")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/sionescu/bordeaux-threads/archive/v"
+ version ".tar.gz"))
+ (sha256
+ (base32 "10ryrcx832fwqdawb6jmknymi7wpdzhi30qzx7cbrk0cpnka71w2"))
+ (file-name
+ (string-append "bordeaux-threads-" version ".tar.gz"))))
+ (inputs `(("sbcl-alexandria" ,sbcl-alexandria)))
+ (native-inputs `(("tests:cl-fiveam" ,sbcl-fiveam)))
+ (build-system asdf-build-system/sbcl)
+ (synopsis "Portable shared-state concurrency library for Common Lisp")
+ (description "BORDEAUX-THREADS is a proposed standard for a minimal
+MP/Threading interface. It is similar to the CLIM-SYS threading and lock
+support.")
+ (home-page "https://common-lisp.net/project/bordeaux-threads/")
+ (license license:x11)))
+
+(define-public cl-bordeaux-threads
+ (sbcl-package->cl-source-package sbcl-bordeaux-threads))
+
+(define-public ecl-bordeaux-threads
+ (sbcl-package->ecl-package sbcl-bordeaux-threads))
- branch master updated (53aec09 -> 9678443), ???, 2016/10/08
- 03/11: gnu: Add cl-fiveam., ???, 2016/10/08
- 06/11: gnu: Add cl-flexi-streams., ???, 2016/10/08
- 05/11: gnu: Add cl-trivial-gray-streams., ???, 2016/10/08
- 04/11: gnu: Add cl-bordeaux-threads.,
??? <=
- 02/11: gnu: Add cl-alexandria., ???, 2016/10/08
- 07/11: gnu: Add cl-ppcre., ???, 2016/10/08
- 11/11: gnu: Add sbcl-stumpwm-with-slynk., ???, 2016/10/08
- 09/11: gnu: Add cl-stumpwm., ???, 2016/10/08
- 10/11: gnu: Add cl-slynk., ???, 2016/10/08
- 08/11: gnu: Add cl-clx., ???, 2016/10/08
- 01/11: build-system: Add asdf-build-system., ???, 2016/10/08