2019-07-05 10:10:54 +00:00
|
|
|
From 3e26b01573488b015065139689be3aa47dac17cf Mon Sep 17 00:00:00 2001
|
2019-05-07 15:13:12 +00:00
|
|
|
From: Michal Cyprian <m.cyprian@gmail.com>
|
|
|
|
Date: Mon, 26 Jun 2017 16:32:56 +0200
|
2019-05-17 11:24:33 +00:00
|
|
|
Subject: [PATCH 5/7] 00251: Change user install location
|
2019-05-07 15:13:12 +00:00
|
|
|
|
|
|
|
Set values of prefix and exec_prefix in distutils install command
|
|
|
|
to /usr/local if executable is /usr/bin/python* and RPM build
|
|
|
|
is not detected to make pip and distutils install into separate location.
|
|
|
|
|
|
|
|
Fedora Change: https://fedoraproject.org/wiki/Changes/Making_sudo_pip_safe
|
|
|
|
---
|
|
|
|
Lib/distutils/command/install.py | 15 +++++++++++++--
|
|
|
|
Lib/site.py | 9 ++++++++-
|
|
|
|
2 files changed, 21 insertions(+), 3 deletions(-)
|
|
|
|
|
2017-06-26 14:32:56 +00:00
|
|
|
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
|
2019-05-07 15:13:12 +00:00
|
|
|
index ae4f915669..0e4fd5b74a 100644
|
2017-06-26 14:32:56 +00:00
|
|
|
--- a/Lib/distutils/command/install.py
|
|
|
|
+++ b/Lib/distutils/command/install.py
|
2018-02-02 11:27:49 +00:00
|
|
|
@@ -418,8 +418,19 @@ class install(Command):
|
2017-06-26 14:32:56 +00:00
|
|
|
raise DistutilsOptionError(
|
|
|
|
"must not supply exec-prefix without prefix")
|
2019-05-07 15:13:12 +00:00
|
|
|
|
2017-06-26 14:32:56 +00:00
|
|
|
- self.prefix = os.path.normpath(sys.prefix)
|
|
|
|
- self.exec_prefix = os.path.normpath(sys.exec_prefix)
|
|
|
|
+ # self.prefix is set to sys.prefix + /local/
|
2018-02-02 11:27:49 +00:00
|
|
|
+ # if neither RPM build nor virtual environment is
|
|
|
|
+ # detected to make pip and distutils install packages
|
|
|
|
+ # into the separate location.
|
|
|
|
+ if (not (hasattr(sys, 'real_prefix') or
|
|
|
|
+ sys.prefix != sys.base_prefix) and
|
|
|
|
+ 'RPM_BUILD_ROOT' not in os.environ):
|
2017-06-26 14:32:56 +00:00
|
|
|
+ addition = "/local"
|
|
|
|
+ else:
|
|
|
|
+ addition = ""
|
|
|
|
+
|
|
|
|
+ self.prefix = os.path.normpath(sys.prefix) + addition
|
|
|
|
+ self.exec_prefix = os.path.normpath(sys.exec_prefix) + addition
|
2019-05-07 15:13:12 +00:00
|
|
|
|
2017-06-26 14:32:56 +00:00
|
|
|
else:
|
|
|
|
if self.exec_prefix is None:
|
|
|
|
diff --git a/Lib/site.py b/Lib/site.py
|
2019-07-05 10:10:54 +00:00
|
|
|
index 22d53fa562..9513526109 100644
|
2017-06-26 14:32:56 +00:00
|
|
|
--- a/Lib/site.py
|
|
|
|
+++ b/Lib/site.py
|
2019-07-05 10:10:54 +00:00
|
|
|
@@ -348,7 +348,14 @@ def getsitepackages(prefixes=None):
|
2017-06-26 14:32:56 +00:00
|
|
|
return sitepackages
|
2019-05-07 15:13:12 +00:00
|
|
|
|
2017-06-26 14:32:56 +00:00
|
|
|
def addsitepackages(known_paths, prefixes=None):
|
|
|
|
- """Add site-packages to sys.path"""
|
2018-02-02 11:27:49 +00:00
|
|
|
+ """Add site-packages to sys.path
|
2017-06-26 14:32:56 +00:00
|
|
|
+
|
2018-02-02 11:27:49 +00:00
|
|
|
+ '/usr/local' is included in PREFIXES if RPM build is not detected
|
|
|
|
+ to make packages installed into this location visible.
|
2017-06-26 14:32:56 +00:00
|
|
|
+
|
|
|
|
+ """
|
2018-02-02 11:27:49 +00:00
|
|
|
+ if ENABLE_USER_SITE and 'RPM_BUILD_ROOT' not in os.environ:
|
2017-06-26 14:32:56 +00:00
|
|
|
+ PREFIXES.insert(0, "/usr/local")
|
|
|
|
for sitedir in getsitepackages(prefixes):
|
|
|
|
if os.path.isdir(sitedir):
|
|
|
|
addsitedir(sitedir, known_paths)
|
2019-05-07 15:13:12 +00:00
|
|
|
--
|
|
|
|
2.21.0
|
|
|
|
|