guix-commits
[Top][All Lists]
Advanced

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

04/103: guix: python-build-system: Import setuptools before calling `set


From: Hartmut Goebel
Subject: 04/103: guix: python-build-system: Import setuptools before calling `setup.py'.
Date: Tue, 25 Oct 2016 17:44:37 +0000 (UTC)

htgoebel pushed a commit to branch wip-python-build-system
in repository guix.

commit 9be1ba3d463436eaeff7b6d7405283379b459bbf
Author: Marius Bakke <address@hidden>
Date:   Thu Sep 29 18:41:35 2016 +0100

    guix: python-build-system: Import setuptools before calling `setup.py'.
    
    This is needed for packages using "distutils" instead of "setuptools" since
    the former does not understand the "--single-version-externally-managed"
    flag. Also export __file__ since it will be unset when setup.py is called 
from
    python "exec".
    
    * guix/build/python-build-system.scm (call-setuppy): extend "python 
setup.py"
      call to import setuptools, export __file__, and call setup.py from
      setuptools python environment.
    
    Co-Authored-By: Hartmut Goebel <address@hidden>
---
 guix/build/python-build-system.scm |   12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/guix/build/python-build-system.scm 
b/guix/build/python-build-system.scm
index 2424fed..de98caf 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -36,13 +36,23 @@
 ;;
 ;; Code:
 
+(define setuptools-shim
+  ;; Run setup.py with "setuptools" being imported, which will patch
+  ;; "distutils". This is needed for packages using "distutils" instead of
+  ;; "setuptools" since the former does not understand the
+  ;; "--single-version-externally-managed" flag.
+  ;; Python code taken from pip 8.1.2 pip/utils/setuptools_build.py
+  (string-append
+   "import setuptools, tokenize;__file__='setup.py';"
+   "exec(compile(getattr(tokenize, 'open', open)(__file__).read()"
+   ".replace('\\r\\n', '\\n'), __file__, 'exec'))"))
 
 (define (call-setuppy command params)
   (if (file-exists? "setup.py")
       (begin
          (format #t "running \"python setup.py\" with command ~s and 
parameters ~s~%"
                 command params)
-         (zero? (apply system* "python" "setup.py" command params)))
+         (zero? (apply system* "python" "-c" setuptools-shim command params)))
       (error "no setup.py found")))
 
 (define* (build #:rest empty)



reply via email to

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