guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/17: gnu: Deprecate the "go-github-com-willf-bitset" variable.


From: guix-commits
Subject: 07/17: gnu: Deprecate the "go-github-com-willf-bitset" variable.
Date: Sat, 25 Nov 2023 17:36:16 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit cad061327ebbde79ca56cc56b5554372a6af1e62
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Sat Nov 4 12:32:14 2023 +0300

    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>
---
 gnu/packages/golang.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index ffac94854f..6d23ade32a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8648,29 +8648,32 @@ directories.  It is optimized for filewalking.")
 @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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]