瀏覽代碼

Merge pull request #1739 from commodo/setuptools-fixes

python-setuptools: enforce __PYVENV_LAUNCHER__ env var use
Steven Barth 9 年之前
父節點
當前提交
7aef590436
共有 1 個檔案被更改,包括 13 行新增0 行删除
  1. 13
    0
      lang/python-setuptools/patches/0002-fix-pyvenv-environment-get.patch

+ 13
- 0
lang/python-setuptools/patches/0002-fix-pyvenv-environment-get.patch 查看文件

@@ -0,0 +1,13 @@
1
+diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
2
+index df1655b..24c34e5 100755
3
+--- a/setuptools/command/easy_install.py
4
++++ b/setuptools/command/easy_install.py
5
+@@ -1885,7 +1885,7 @@ class CommandSpec(list):
6
+             return param
7
+         if isinstance(param, list):
8
+             return cls(param)
9
+-        if param is None:
10
++        if param is None or os.environ.get('__PYVENV_LAUNCHER__'):
11
+             return cls.from_environment()
12
+         # otherwise, assume it's a string.
13
+         return cls.from_string(param)