gnu: libatomic-ops: Update to 7.6.2.

* gnu/packages/bdw-gc.scm (libatomic-ops): Update to 7.6.2.
[description]: Fix typo.
This commit is contained in:
Leo Famulari 2018-02-19 21:26:24 -05:00
parent 58f58cb44b
commit 7b8acffd60
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 3 additions and 3 deletions

View File

@ -91,7 +91,7 @@ C or C++ programs, though that is not its primary goal.")
(define-public libatomic-ops (define-public libatomic-ops
(package (package
(name "libatomic-ops") (name "libatomic-ops")
(version "7.4.8") (version "7.6.2")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
@ -99,13 +99,13 @@ C or C++ programs, though that is not its primary goal.")
version "/libatomic_ops-" version ".tar.gz")) version "/libatomic_ops-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0sj3plzpbqgxrqpjq3w2zi3zxxqqps71ncdwk5s1k30i9d9da1f4")))) "1rif2hjscq5mh639nsnjhb90c01gnmy1sbmj6x6hsn1xmpnj95r1"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(outputs '("out" "debug")) (outputs '("out" "debug"))
(synopsis "Accessing hardware atomic memory update operations") (synopsis "Accessing hardware atomic memory update operations")
(description (description
"This C library provides semi-portable access to hardware-provided atomic "This C library provides semi-portable access to hardware-provided atomic
memory update operations on a number architectures. These might allow you to memory update operations on a number of architectures. These might allow you to
write code that does more interesting things in signal handlers, write write code that does more interesting things in signal handlers, write
lock-free code, experiment with thread programming paradigms, etc.") lock-free code, experiment with thread programming paradigms, etc.")
(home-page "https://github.com/ivmai/libatomic_ops/") (home-page "https://github.com/ivmai/libatomic_ops/")