mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Deprecate the "go-github-com-willf-bitset" variable.
* gnu/packages/golang.scm (go-github-com-willf-bitset): Rename to "go-github-com-bits-and-blooms-bitset". [arguments]: Update. [home-page]: Update. (go-github-com-willf-bitset): Define as deprecated by "go-github-com-bits-and-blooms-bitset". Change-Id: Iaa31f120d1c2b18a5c916ea5e68b89bd3e534ffd Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b9c8f3784a
commit
cad061327e
1 changed files with 9 additions and 6 deletions
|
@ -8648,29 +8648,32 @@ (define-public go-github-com-mattn-go-sqlite3
|
|||
@code{database/sql}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-willf-bitset
|
||||
(define-public go-github-com-bits-and-blooms-bitset
|
||||
(package
|
||||
(name "go-github-com-willf-bitset")
|
||||
(name "go-github-com-bits-and-blooms-bitset")
|
||||
(version "1.1.10")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/willf/bitset")
|
||||
(commit (string-append "v" version))))
|
||||
(url "https://github.com/bits-and-blooms/bitset")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0wpaxg6va3qwd0hq0b8rpb1hswvzzbfm2h8sjmcsdpbkydjjx9zg"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/willf/bitset"))
|
||||
'(#:import-path "github.com/bits-and-blooms/bitset"))
|
||||
(synopsis "Bitsets in Go")
|
||||
(description "This package provides a Go implementation of bitsets, which
|
||||
are a mapping between non-negative integers and boolean values focused on
|
||||
efficient space usage.")
|
||||
(home-page "https://github.com/willf/bitset")
|
||||
(home-page "https://github.com/bits-and-blooms/bitset")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-github-com-willf-bitset
|
||||
(deprecated-package "go-github-com-willf-bitset" go-github-com-bits-and-blooms-bitset))
|
||||
|
||||
(define-public go-github-com-willf-bloom
|
||||
(package
|
||||
(name "go-github-com-willf-bloom")
|
||||
|
|
Loading…
Reference in a new issue