From e5358a6bacc6a0e690071fb668634263d1f53ec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 20 Jul 2015 23:15:24 +0200 Subject: gnu: python-pillow: Disable egg compression. Partly fixes . * gnu/packages/python.scm (python-pillow)[arguments]: Rewrite using 'modify-phases'. Add 'disable-egg-compression' phase. --- gnu/packages/python.scm | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 4962a57a2f..7709fbdc71 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3015,14 +3015,27 @@ services for your Python modules and applications.") `(;; Used at runtime for pkg_resources ("python-setuptools" ,python-setuptools))) (arguments - `(#:phases (alist-cons-after - 'install 'check-installed - (lambda _ - (begin - (setenv "HOME" (getcwd)) - (and (zero? (system* "python" "selftest.py" "--installed")) - (zero? (system* "python" "test-installed.py"))))) - (alist-delete 'check %standard-phases)))) + `(#:phases (modify-phases %standard-phases + (add-before + 'install 'disable-egg-compression + (lambda _ + ;; Leave the .egg uncompressed since compressing it would + ;; prevent the GC from identifying run-time dependencies. + ;; See . + (let ((port (open-file "setup.cfg" "a"))) + (display "\n[easy_install]\nzip_ok = 0\n" + port) + (close-port port) + #t))) + (add-after + 'install 'check-installed + (lambda _ + (begin + (setenv "HOME" (getcwd)) + (and (zero? (system* "python" "selftest.py" + "--installed")) + (zero? (system* "python" "test-installed.py")))))) + (delete 'check)))) (home-page "https://pypi.python.org/pypi/Pillow") (synopsis "Fork of the Python Imaging Library") (description -- cgit v1.2.1