guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c024cbffa3d97d620c4932f90ab1eebcb4dc5fbe
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 3 15:17:19 2025 +0100

    gnu: Deprecate the "bitshuffle" variable.
    
    * gnu/packages/python-compression.scm (bitshuffle): Rename to
      "python-bitshuffle".
      (bitshuffle): Define as deprecated by "python-bitshuffle".
      (bitshuffle-for-snappy): Inherit from python-bitshuffle.
    
    Change-Id: I33d458736b0b3c80a43519753958414df38e566d
---
 gnu/packages/python-compression.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-compression.scm 
b/gnu/packages/python-compression.scm
index c5c59946ae..75f3143834 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -736,9 +736,9 @@ can be used to compress and decompress files and streams.  
It can also be used
 directly from the command line.")
     (license license:bsd-3)))
 
-(define-public bitshuffle
+(define-public python-bitshuffle
   (package
-    (name "bitshuffle")
+    (name "python-bitshuffle")
     (version "0.5.2")
     (source (origin
               (method url-fetch)
@@ -789,8 +789,11 @@ for improving compression, as well as a python/C package 
that implements this
 algorithm within the Numpy framework.")
     (license license:expat)))
 
+(define-public bitshuffle
+  (deprecated-package "bitshuffle" python-bitshuffle))
+
 (define-public bitshuffle-for-snappy
-  (package/inherit bitshuffle
+  (package/inherit python-bitshuffle
     (name "bitshuffle-for-snappy")
     (build-system gnu-build-system)
     (arguments

Reply via email to