gnu: cl-bordeaux-threads: Update to commit 354abb0a.

This commit includes a fix which makes the package compatible asdf 3.3.1.

* gnu/packages/lisp.scm (sbcl-bordeaux-threads): Update to commit 354abb0a.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
Andy Patterson 2018-02-18 22:20:06 -05:00 committed by Marius Bakke
parent 04ab38b7ee
commit 543cf6fd37
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 21 additions and 19 deletions

View File

@ -726,27 +726,29 @@ interactive development model in mind.")
(sbcl-package->ecl-package sbcl-fiveam)) (sbcl-package->ecl-package sbcl-fiveam))
(define-public sbcl-bordeaux-threads (define-public sbcl-bordeaux-threads
(package (let ((commit "354abb0ae9f1d9324001e1a8abab3128d7420e0e")
(name "sbcl-bordeaux-threads") (revision "1"))
(version "0.8.5") (package
(source (origin (name "sbcl-bordeaux-threads")
(method url-fetch) (version (git-version "0.8.5" revision commit))
(uri (string-append (source (origin
"https://github.com/sionescu/bordeaux-threads/archive/v" (method git-fetch)
version ".tar.gz")) (uri (git-reference
(sha256 (url "https://github.com/sionescu/bordeaux-threads.git")
(base32 "10ryrcx832fwqdawb6jmknymi7wpdzhi30qzx7cbrk0cpnka71w2")) (commit commit)))
(file-name (sha256
(string-append "bordeaux-threads-" version ".tar.gz")))) (base32 "1hcfp21l6av1xj6z7r77sp6h4mwf9vvx4s745803sysq2qy2mwnq"))
(inputs `(("alexandria" ,sbcl-alexandria))) (file-name
(native-inputs `(("fiveam" ,sbcl-fiveam))) (git-file-name "bordeaux-threads" version))))
(build-system asdf-build-system/sbcl) (inputs `(("alexandria" ,sbcl-alexandria)))
(synopsis "Portable shared-state concurrency library for Common Lisp") (native-inputs `(("fiveam" ,sbcl-fiveam)))
(description "BORDEAUX-THREADS is a proposed standard for a minimal (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 MP/Threading interface. It is similar to the CLIM-SYS threading and lock
support.") support.")
(home-page "https://common-lisp.net/project/bordeaux-threads/") (home-page "https://common-lisp.net/project/bordeaux-threads/")
(license license:x11))) (license license:x11))))
(define-public cl-bordeaux-threads (define-public cl-bordeaux-threads
(sbcl-package->cl-source-package sbcl-bordeaux-threads)) (sbcl-package->cl-source-package sbcl-bordeaux-threads))