mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: boost-signals2: Update to 1.83.0-0.2ecf1b5.
This ‘fixes’ the build as our hash no longer matched upstream's Git tag. * gnu/packages/boost.scm (boost-signals2): Update to 1.83.0-0.2ecf1b5. Change-Id: I1e0849ac71bcba22c8b367601107caf58b51a434
This commit is contained in:
parent
59db76c66b
commit
6ab1a5bf51
1 changed files with 28 additions and 25 deletions
|
@ -394,18 +394,21 @@ (define-public boost-sync
|
|||
(license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt")))))
|
||||
|
||||
(define-public boost-signals2
|
||||
;; Don't use the ‘boost-x.y.z’ tags; they are not immutable upstream.
|
||||
(let ((commit "2ecf1b53bc970dd2b5e5d0f36fe8adf5d2181638")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "boost-signals2")
|
||||
(version (package-version boost))
|
||||
(source (origin
|
||||
(version (git-version (package-version boost) revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/boostorg/signals2")
|
||||
(commit (string-append "boost-" version))))
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1prhj98jgvkj2m3ia5lcgxnl1a4h13cyzqd55skjn983rivi6090"))))
|
||||
(base32 "101ayw7dz4gdvva2yzyrfad69w4xbvv3man83xwqjbkib3a92ca8"))))
|
||||
(build-system trivial-build-system)
|
||||
(arguments
|
||||
`(#:modules ((guix build utils))
|
||||
|
@ -419,7 +422,7 @@ (define-public boost-signals2
|
|||
(synopsis "Boost.Signals2 library")
|
||||
(description "The Boost.Signals2 library is an implementation of a managed
|
||||
signals and slots system.")
|
||||
(license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt"))))
|
||||
(license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt")))))
|
||||
|
||||
|
||||
(define-public boost-mpi
|
||||
|
|
Loading…
Reference in a new issue