diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2025-10-16 17:08:05 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-10-23 19:35:06 +0200 |
| commit | 9fcfb9394471d58c75a5fffeda3763e5864b18fa (patch) | |
| tree | 7124f051de12cf489ea73e87aeb5c758068cfa18 /gnu/packages/python-compression.scm | |
| parent | e46dfc7e9446fb753294747f73c9cb568fd02c2a (diff) | |
gnu: Use ‘define-deprecated-package’ for deprecated packages.
Use ‘define-deprecated-package’ instead of (define x (deprecated-package …))
throughout gnu/packages/*.scm.
Change-Id: I4e176da9ac660327489dab256ca4d12c4e78fe8d
Diffstat (limited to 'gnu/packages/python-compression.scm')
| -rw-r--r-- | gnu/packages/python-compression.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 3c1713f6f62..c4efd30ea52 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -188,8 +188,8 @@ to access its data, so it can be used as a drop-in replacement.") package, an implementation of the Brotli lossless compression algorithm.") (license license:expat))) -(define-public python-google-brotli - (deprecated-package "python-google-brotli" python-brotli)) +(define-deprecated-package python-google-brotli + python-brotli) (define-public python-multivolumefile (package @@ -792,8 +792,8 @@ 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-deprecated-package bitshuffle + python-bitshuffle) (define-public bitshuffle-for-snappy (package/inherit python-bitshuffle |
