[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/65: gnu: Add jpl-queues.
From: |
Pierre Neidhardt |
Subject: |
08/65: gnu: Add jpl-queues. |
Date: |
Fri, 19 Oct 2018 11:59:42 -0400 (EDT) |
ambrevar pushed a commit to branch master
in repository guix.
commit 8f41fa066ec624146ace6052d718850ccaff5bcc
Author: Pierre Neidhardt <address@hidden>
Date: Fri Aug 24 11:24:21 2018 +0200
gnu: Add jpl-queues.
* gnu/packages/lisp.scm (cl-jpl-queues, ecl-jpl-queues, sbcl-jpl-queues):
New variables.
---
gnu/packages/lisp.scm | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 9688e2c..72d6a6c 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -1741,3 +1741,48 @@ and macros, primarily for software projects written in
CL by the author.")
(define-public ecl-jpl-util
(sbcl-package->ecl-package sbcl-jpl-util))
+
+(define-public sbcl-jpl-queues
+ (package
+ (name "sbcl-jpl-queues")
+ (version "0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://www.thoughtcrime.us/software/jpl-queues/jpl-queues-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("jpl-util" ,sbcl-jpl-util)
+ ("bordeaux-threads" ,sbcl-bordeaux-threads)))
+ (arguments
+ ;; Tests seem to be broken.
+ `(#:tests? #f))
+ (synopsis "Common Lisp library implementing a few different kinds of
queues")
+ (description
+ "A Common Lisp library implementing a few different kinds of queues:
+
address@hidden
address@hidden Bounded and unbounded FIFO queues.
address@hidden Lossy bounded FIFO queues that drop elements when full.
address@hidden Unbounded random-order queues that use less memory than
unbounded FIFO queues.
address@hidden itemize
+
+Additionally, a synchronization wrapper is provided to make any queue
+conforming to the @command{jpl-queues} API thread-safe for lightweight
+multithreading applications. (See Calispel for a more sophisticated CL
+multithreaded message-passing library with timeouts and alternation among
+several blockable channels.)")
+ (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
+ (license license:isc)))
+
+(define-public cl-jpl-queues
+ (sbcl-package->cl-source-package sbcl-jpl-queues))
+
+(define-public ecl-jpl-queues
+ (sbcl-package->ecl-package sbcl-jpl-queues))
- branch master updated (e7b2937 -> e2e5004), Pierre Neidhardt, 2018/10/19
- 02/65: gnu: Add trivial-features., Pierre Neidhardt, 2018/10/19
- 04/65: gnu: Add hu.dwim.stefil., Pierre Neidhardt, 2018/10/19
- 05/65: gnu: Add babel., Pierre Neidhardt, 2018/10/19
- 08/65: gnu: Add jpl-queues.,
Pierre Neidhardt <=
- 03/65: gnu: Add hu.dwim.asdf., Pierre Neidhardt, 2018/10/19
- 01/65: gnu: Add cl-strings., Pierre Neidhardt, 2018/10/19
- 07/65: gnu: Add jpl-util., Pierre Neidhardt, 2018/10/19
- 10/65: gnu: Add esrap., Pierre Neidhardt, 2018/10/19
- 09/65: gnu: Add eos., Pierre Neidhardt, 2018/10/19
- 11/65: gnu: Add split-sequence., Pierre Neidhardt, 2018/10/19
- 06/65: gnu: Add cl-yacc., Pierre Neidhardt, 2018/10/19
- 15/65: gnu: Add 3bmd-ext-code-blocks., Pierre Neidhardt, 2018/10/19
- 13/65: gnu: Add colorize., Pierre Neidhardt, 2018/10/19
- 17/65: gnu: Add rt., Pierre Neidhardt, 2018/10/19