mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Update "go-github-com-willf-bitset" to 3.6.0.
* gnu/packages/golang.scm (go-github-com-willf-bloom): Rename to "go-github-com-bits-and-blooms-bloom". Update to 3.6.0. [arguments]: Replace "willf" with "bits-and-blooms". [home-page]: Likewise. (go-github-com-willf-bloom): Define as deprecated by "go-github-com-bits-and-blooms-bloom". Change-Id: Ib9ecbff9c2694fae53bbc355fcb03079140183a0 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f4b88255bc
commit
fb59ead37b
1 changed files with 13 additions and 10 deletions
|
@ -8674,22 +8674,22 @@ (define-public go-github-com-bits-and-blooms-bitset
|
||||||
(define-public go-github-com-willf-bitset
|
(define-public go-github-com-willf-bitset
|
||||||
(deprecated-package "go-github-com-willf-bitset" go-github-com-bits-and-blooms-bitset))
|
(deprecated-package "go-github-com-willf-bitset" go-github-com-bits-and-blooms-bitset))
|
||||||
|
|
||||||
(define-public go-github-com-willf-bloom
|
(define-public go-github-com-bits-and-blooms-bloom
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-willf-bloom")
|
(name "go-github-com-bits-and-blooms-bloom")
|
||||||
(version "2.0.3")
|
(version "3.6.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/willf/bloom")
|
(url "https://github.com/bits-and-blooms/bloom")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ygan8pgcay7wx3cs3ja8rdqj7nly7v3and97ddcc66020jxchzg"))))
|
"02rpjlgl7k3755qnlsk519xazgqlk73b8wvkpqlvccywms5w77bq"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:import-path "github.com/willf/bloom"
|
'(#:import-path "github.com/bits-and-blooms/bloom"
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-import-path
|
(add-after 'unpack 'patch-import-path
|
||||||
|
@ -8697,17 +8697,20 @@ (define-public go-github-com-willf-bloom
|
||||||
;; See 'go.mod' in the source distribution of Syncthing 1.5.0 for
|
;; See 'go.mod' in the source distribution of Syncthing 1.5.0 for
|
||||||
;; more information.
|
;; more information.
|
||||||
;; <https://github.com/spaolacci/murmur3/issues/29>
|
;; <https://github.com/spaolacci/murmur3/issues/29>
|
||||||
(substitute* "src/github.com/willf/bloom/bloom.go"
|
(substitute* "src/github.com/bits-and-blooms/bloom/bloom.go"
|
||||||
(("spaolacci") "twmb"))
|
(("spaolacci") "twmb"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list go-github-com-twmb-murmur3 go-github-com-willf-bitset))
|
(list go-github-com-twmb-murmur3 go-github-com-bits-and-blooms-bitset))
|
||||||
(synopsis "Bloom filters in Go")
|
(synopsis "Bloom filters in Go")
|
||||||
(description "This package provides a Go implementation of bloom filters,
|
(description "This package provides a Go implementation of bloom filters,
|
||||||
based on murmurhash.")
|
based on murmurhash.")
|
||||||
(home-page "https://github.com/willf/bloom")
|
(home-page "https://github.com/bits-and-blooms/bitset")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
|
(define-public go-github-com-willf-bloom
|
||||||
|
(deprecated-package "go-github-com-willf-bloom" go-github-com-bits-and-blooms-bloom))
|
||||||
|
|
||||||
(define-public go-golang-org-rainycape-unidecode
|
(define-public go-golang-org-rainycape-unidecode
|
||||||
(let ((commit "cb7f23ec59bec0d61b19c56cd88cee3d0cc1870c")
|
(let ((commit "cb7f23ec59bec0d61b19c56cd88cee3d0cc1870c")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Loading…
Reference in a new issue