[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/15: gnu: python-chardet: Trim closure size.
From: |
guix-commits |
Subject: |
09/15: gnu: python-chardet: Trim closure size. |
Date: |
Sun, 13 Feb 2022 09:18:12 -0500 (EST) |
mbakke pushed a commit to branch staging
in repository guix.
commit aad0b91c370e2159e2c23d34950cdd5b40ae1636
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Feb 4 10:21:40 2022 +0100
gnu: python-chardet: Trim closure size.
* gnu/packages/python-xyz.scm (python-chardet)[arguments]: Override wrap
phase.
---
gnu/packages/python-xyz.scm | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 88f7af2c1b..88edd7de3e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13082,7 +13082,27 @@ simulation, statistical modeling, machine learning and
much more.")
(list python-hypothesis python-pytest python-pytest-runner))
(build-system python-build-system)
;; XXX: Incompatible with Pytest 4:
<https://github.com/chardet/chardet/issues/173>.
- (arguments `(#:tests? #f))
+ (arguments
+ (list #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; This package provides a 'chardetect' executable that only
+ ;; depends on Python, so customize the wrap phase to avoid
+ ;; adding pytest and friends in order to save size.
+ ;; (See also <https://bugs.gnu.org/25235>.)
+ (replace 'wrap
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((sitedir (site-packages inputs outputs))
+ (python (dirname (dirname
+ (search-input-file
+ inputs "bin/python"))))
+ (python-sitedir
+ (string-append python "/lib/python"
+ (python-version python)
+ "/site-packages")))
+ (wrap-program (string-append #$output "/bin/chardetect")
+ `("GUIX_PYTHONPATH" ":" suffix
+ ,(list sitedir python-sitedir)))))))))
(home-page "https://github.com/chardet/chardet")
(synopsis "Universal encoding detector for Python 2 and 3")
(description
- branch staging updated (76b6bbdf23 -> 6f22596b1c), guix-commits, 2022/02/13
- 04/15: gnu: python-requests: Update to 2.27.1., guix-commits, 2022/02/13
- 02/15: gnu: python-idna: Update to 3.3., guix-commits, 2022/02/13
- 07/15: gnu: python-charset-normalizer: Update to 2.0.11., guix-commits, 2022/02/13
- 03/15: gnu: python-certifi: Update to 2021.10.8., guix-commits, 2022/02/13
- 10/15: gnu: python-charset-normalizer: Trim closure size., guix-commits, 2022/02/13
- 11/15: gnu: python-chardet: Update to 4.0.0., guix-commits, 2022/02/13
- 12/15: gnu: python-iso8601: Update to 1.0.2., guix-commits, 2022/02/13
- 15/15: gnu: python-pyopenssl: Update to 22.0.0., guix-commits, 2022/02/13
- 08/15: gnu: python-cryptography: Remove 3.3.1., guix-commits, 2022/02/13
- 09/15: gnu: python-chardet: Trim closure size.,
guix-commits <=
- 01/15: gnu: python-flaky: Update to 3.7.0., guix-commits, 2022/02/13
- 14/15: gnu: librsvg: Remove unused inputs., guix-commits, 2022/02/13
- 06/15: gnu: python-requests: Remove unnecessary input., guix-commits, 2022/02/13
- 05/15: gnu: python-urllib3: Update to 1.26.8., guix-commits, 2022/02/13
- 13/15: gnu: python-pycparser: Update to 2.21., guix-commits, 2022/02/13