From 06526e7ccc3eb3aad5e470ca2043a479d794d59f Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 12 Apr 2014 23:18:06 +0300 Subject: [PATCH] pip-micropython: Apply more workarounds for setuptools, pip, etc misfeatures. --- tools/pip-micropython | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tools/pip-micropython b/tools/pip-micropython index fab8809839..d5b84b0e25 100755 --- a/tools/pip-micropython +++ b/tools/pip-micropython @@ -30,6 +30,21 @@ fi # installed if it's already installed for main python distribution. if [ ! -d /tmp/pip-micropy-venv ]; then virtualenv --no-site-packages /tmp/pip-micropy-venv + # distutils, setuptools, pip are buggy and allow target packages affect + # their execution environment. For example, if distribution they install + # has re.py, they will import that instead of system re. So, we need + # to remove current dir from sys.path, but that appear to be quite uneasy + # with CPython, so we hook __import__ and exterminate it persistently. + # See also https://bitbucket.org/pypa/setuptools/issue/187/ + cat > $(ls -1d /tmp/pip-micropy-venv/lib/python*/)/sitecustomize.py <