guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: acme: Disable egg compression.


From: Leo Famulari
Subject: 02/02: gnu: acme: Disable egg compression.
Date: Tue, 09 Feb 2016 04:56:06 +0000

lfam pushed a commit to branch master
in repository guix.

commit 9bee9d87dcf260506f22613e85f29ec485f35f74
Author: Leo Famulari <address@hidden>
Date:   Thu Feb 4 22:12:42 2016 -0500

    gnu: acme: Disable egg compression.
    
    * gnu/packages/python.scm (acme)[arguments]: Add
    'disable-egg-compression' phase.
---
 gnu/packages/tls.scm |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 9728cc1..f79db32 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -330,7 +330,18 @@ security, and applying best practice development 
processes.")
          "1x6fd3cw9pq45k71rgmxi91hmdmnbf1xxvlfwv31fmzs5255dlbw"))))
     (build-system python-build-system)
     (arguments
-     `(#:python ,python-2))
+     `(#:python ,python-2
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'install 'disable-egg-compression
+           (lambda _
+             ;; Do not compress the egg.
+             ;; See <http://bugs.gnu.org/20765>.
+             (let ((port (open-file "setup.cfg" "a")))
+               (display "\n[easy_install]\nzip_ok = 0\n"
+                        port)
+               (close-port port)
+               #t))))))
     ;; TODO: Add optional inputs for testing and building documentation.
     (native-inputs
      `(("python2-mock" ,python2-mock)



reply via email to

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