2020-07-20 19:52:13 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2022-08-09 10:11:02 +00:00
|
|
|
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
|
2021-10-05 09:53:19 +00:00
|
|
|
Date: Mon, 15 Feb 2021 12:19:27 +0100
|
2019-07-29 22:48:16 +00:00
|
|
|
Subject: [PATCH] 00251: Change user install location
|
2021-10-06 14:40:28 +00:00
|
|
|
MIME-Version: 1.0
|
|
|
|
Content-Type: text/plain; charset=UTF-8
|
|
|
|
Content-Transfer-Encoding: 8bit
|
2019-05-07 15:13:12 +00:00
|
|
|
|
2022-08-09 10:11:02 +00:00
|
|
|
Set values of base and platbase in sysconfig from /usr
|
|
|
|
to /usr/local when RPM build is not detected
|
|
|
|
to make pip and similar tools install into separate location.
|
2021-10-05 09:53:19 +00:00
|
|
|
|
2019-05-07 15:13:12 +00:00
|
|
|
Fedora Change: https://fedoraproject.org/wiki/Changes/Making_sudo_pip_safe
|
2022-08-09 10:11:02 +00:00
|
|
|
Downstream only.
|
2021-10-05 09:53:19 +00:00
|
|
|
|
2022-08-09 10:11:02 +00:00
|
|
|
We've tried to rework in Fedora 36/Python 3.10 to follow https://bugs.python.org/issue43976
|
|
|
|
but we have identified serious problems with that approach,
|
|
|
|
see https://bugzilla.redhat.com/2026979 or https://bugzilla.redhat.com/2097183
|
2021-10-05 09:53:19 +00:00
|
|
|
|
2022-08-09 10:11:02 +00:00
|
|
|
pypa/distutils integration: https://github.com/pypa/distutils/pull/70
|
2021-10-05 09:53:19 +00:00
|
|
|
|
|
|
|
Co-authored-by: Petr Viktorin <encukou@gmail.com>
|
|
|
|
Co-authored-by: Miro Hrončok <miro@hroncok.cz>
|
|
|
|
Co-authored-by: Michal Cyprian <m.cyprian@gmail.com>
|
2021-11-08 07:25:56 +00:00
|
|
|
Co-authored-by: Lumír Balhar <frenzy.madness@gmail.com>
|
2019-05-07 15:13:12 +00:00
|
|
|
---
|
2022-11-15 16:07:29 +00:00
|
|
|
Lib/site.py | 9 ++++++-
|
|
|
|
Lib/sysconfig.py | 49 +++++++++++++++++++++++++++++++++++++-
|
|
|
|
Lib/test/test_sysconfig.py | 17 +++++++++++--
|
|
|
|
3 files changed, 71 insertions(+), 4 deletions(-)
|
2021-10-05 09:53:19 +00:00
|
|
|
|
2017-06-26 14:32:56 +00:00
|
|
|
diff --git a/Lib/site.py b/Lib/site.py
|
2024-06-28 12:32:11 +00:00
|
|
|
index 924cfbecec..e2871ecc89 100644
|
2017-06-26 14:32:56 +00:00
|
|
|
--- a/Lib/site.py
|
|
|
|
+++ b/Lib/site.py
|
2024-06-28 12:32:11 +00:00
|
|
|
@@ -398,8 +398,15 @@ 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
|
|
|
+
|
|
|
|
+ """
|
2020-10-09 10:25:22 +00:00
|
|
|
_trace("Processing global site-packages")
|
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)
|
2021-10-05 09:53:19 +00:00
|
|
|
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
|
2023-04-05 07:24:42 +00:00
|
|
|
index 122d441bd1..2d354a11da 100644
|
2021-10-05 09:53:19 +00:00
|
|
|
--- a/Lib/sysconfig.py
|
|
|
|
+++ b/Lib/sysconfig.py
|
2022-11-15 16:07:29 +00:00
|
|
|
@@ -104,6 +104,11 @@
|
2022-04-06 09:36:00 +00:00
|
|
|
else:
|
|
|
|
_INSTALL_SCHEMES['venv'] = _INSTALL_SCHEMES['posix_venv']
|
2021-10-05 09:53:19 +00:00
|
|
|
|
2022-08-09 10:11:02 +00:00
|
|
|
+# For a brief period of time in the Fedora 36 life cycle,
|
|
|
|
+# this installation scheme existed and was documented in the release notes.
|
|
|
|
+# For backwards compatibility, we keep it here (at least on 3.10 and 3.11).
|
2021-10-05 09:53:19 +00:00
|
|
|
+_INSTALL_SCHEMES['rpm_prefix'] = _INSTALL_SCHEMES['posix_prefix']
|
|
|
|
+
|
2022-08-09 10:11:02 +00:00
|
|
|
|
|
|
|
# NOTE: site.py has copy of this function.
|
|
|
|
# Sync it when modify this function.
|
2022-11-15 16:07:29 +00:00
|
|
|
@@ -163,6 +168,19 @@ def joinuser(*args):
|
2022-08-09 10:11:02 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
+# This is used by distutils.command.install in the stdlib
|
|
|
|
+# as well as pypa/distutils (e.g. bundled in setuptools).
|
|
|
|
+# The self.prefix value is set to sys.prefix + /local/
|
|
|
|
+# if neither RPM build nor virtual environment is
|
|
|
|
+# detected to make distutils install packages
|
|
|
|
+# into the separate location.
|
|
|
|
+# https://fedoraproject.org/wiki/Changes/Making_sudo_pip_safe
|
2021-10-05 09:53:19 +00:00
|
|
|
+if (not (hasattr(sys, 'real_prefix') or
|
|
|
|
+ sys.prefix != sys.base_prefix) and
|
|
|
|
+ 'RPM_BUILD_ROOT' not in os.environ):
|
2022-08-09 10:11:02 +00:00
|
|
|
+ _prefix_addition = '/local'
|
|
|
|
+
|
|
|
|
+
|
|
|
|
_SCHEME_KEYS = ('stdlib', 'platstdlib', 'purelib', 'platlib', 'include',
|
|
|
|
'scripts', 'data')
|
2021-10-05 09:53:19 +00:00
|
|
|
|
2022-11-15 16:07:29 +00:00
|
|
|
@@ -263,11 +281,40 @@ def _extend_dict(target_dict, other_dict):
|
2022-08-09 10:11:02 +00:00
|
|
|
target_dict[key] = value
|
|
|
|
|
|
|
|
|
|
|
|
+_CONFIG_VARS_LOCAL = None
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+def _config_vars_local():
|
|
|
|
+ # This function returns the config vars with prefixes amended to /usr/local
|
|
|
|
+ # https://fedoraproject.org/wiki/Changes/Making_sudo_pip_safe
|
|
|
|
+ global _CONFIG_VARS_LOCAL
|
|
|
|
+ if _CONFIG_VARS_LOCAL is None:
|
|
|
|
+ _CONFIG_VARS_LOCAL = dict(get_config_vars())
|
|
|
|
+ _CONFIG_VARS_LOCAL['base'] = '/usr/local'
|
|
|
|
+ _CONFIG_VARS_LOCAL['platbase'] = '/usr/local'
|
|
|
|
+ return _CONFIG_VARS_LOCAL
|
|
|
|
+
|
|
|
|
+
|
|
|
|
def _expand_vars(scheme, vars):
|
|
|
|
res = {}
|
|
|
|
if vars is None:
|
|
|
|
vars = {}
|
|
|
|
- _extend_dict(vars, get_config_vars())
|
|
|
|
+
|
|
|
|
+ # when we are not in a virtual environment or an RPM build
|
|
|
|
+ # we change '/usr' to '/usr/local'
|
|
|
|
+ # to avoid surprises, we explicitly check for the /usr/ prefix
|
|
|
|
+ # Python virtual environments have different prefixes
|
|
|
|
+ # we only do this for posix_prefix, not to mangle the venv scheme
|
|
|
|
+ # posix_prefix is used by sudo pip install
|
|
|
|
+ # we only change the defaults here, so explicit --prefix will take precedence
|
|
|
|
+ # https://fedoraproject.org/wiki/Changes/Making_sudo_pip_safe
|
|
|
|
+ if (scheme == 'posix_prefix' and
|
|
|
|
+ _PREFIX == '/usr' and
|
|
|
|
+ 'RPM_BUILD_ROOT' not in os.environ):
|
|
|
|
+ _extend_dict(vars, _config_vars_local())
|
|
|
|
+ else:
|
|
|
|
+ _extend_dict(vars, get_config_vars())
|
|
|
|
+
|
|
|
|
if os.name == 'nt':
|
|
|
|
# On Windows we want to substitute 'lib' for schemes rather
|
|
|
|
# than the native value (without modifying vars, in case it
|
2021-10-05 09:53:19 +00:00
|
|
|
diff --git a/Lib/test/test_sysconfig.py b/Lib/test/test_sysconfig.py
|
2024-07-03 19:06:43 +00:00
|
|
|
index 1137c2032b..8fc2b84f52 100644
|
2021-10-05 09:53:19 +00:00
|
|
|
--- a/Lib/test/test_sysconfig.py
|
|
|
|
+++ b/Lib/test/test_sysconfig.py
|
2022-10-27 14:50:15 +00:00
|
|
|
@@ -110,8 +110,19 @@ def test_get_path(self):
|
2022-08-09 10:11:02 +00:00
|
|
|
for scheme in _INSTALL_SCHEMES:
|
|
|
|
for name in _INSTALL_SCHEMES[scheme]:
|
|
|
|
expected = _INSTALL_SCHEMES[scheme][name].format(**config_vars)
|
|
|
|
+ tested = get_path(name, scheme)
|
|
|
|
+ # https://fedoraproject.org/wiki/Changes/Making_sudo_pip_safe
|
|
|
|
+ if tested.startswith('/usr/local'):
|
|
|
|
+ # /usr/local should only be used in posix_prefix
|
|
|
|
+ self.assertEqual(scheme, 'posix_prefix')
|
|
|
|
+ # Fedora CI runs tests for venv and virtualenv that check for other prefixes
|
|
|
|
+ self.assertEqual(sys.prefix, '/usr')
|
|
|
|
+ # When building the RPM of Python, %check runs this with RPM_BUILD_ROOT set
|
|
|
|
+ # Fedora CI runs this with RPM_BUILD_ROOT unset
|
|
|
|
+ self.assertNotIn('RPM_BUILD_ROOT', os.environ)
|
|
|
|
+ tested = tested.replace('/usr/local', '/usr')
|
|
|
|
self.assertEqual(
|
|
|
|
- os.path.normpath(get_path(name, scheme)),
|
|
|
|
+ os.path.normpath(tested),
|
|
|
|
os.path.normpath(expected),
|
|
|
|
)
|
|
|
|
|
2024-07-03 19:06:43 +00:00
|
|
|
@@ -344,7 +355,7 @@ def test_get_config_h_filename(self):
|
2021-10-05 09:53:19 +00:00
|
|
|
self.assertTrue(os.path.isfile(config_h), config_h)
|
|
|
|
|
|
|
|
def test_get_scheme_names(self):
|
2022-04-06 09:36:00 +00:00
|
|
|
- wanted = ['nt', 'posix_home', 'posix_prefix', 'posix_venv', 'nt_venv', 'venv']
|
|
|
|
+ wanted = ['nt', 'posix_home', 'posix_prefix', 'posix_venv', 'nt_venv', 'venv', 'rpm_prefix']
|
2021-10-05 09:53:19 +00:00
|
|
|
if HAS_USER_BASE:
|
|
|
|
wanted.extend(['nt_user', 'osx_framework_user', 'posix_user'])
|
|
|
|
self.assertEqual(get_scheme_names(), tuple(sorted(wanted)))
|
2024-07-03 19:06:43 +00:00
|
|
|
@@ -356,6 +367,8 @@ def test_symlink(self): # Issue 7880
|
2021-10-05 09:53:19 +00:00
|
|
|
cmd = "-c", "import sysconfig; print(sysconfig.get_platform())"
|
|
|
|
self.assertEqual(py.call_real(*cmd), py.call_link(*cmd))
|
|
|
|
|
|
|
|
+ @unittest.skipIf('RPM_BUILD_ROOT' not in os.environ,
|
|
|
|
+ "Test doesn't expect Fedora's paths")
|
|
|
|
def test_user_similar(self):
|
|
|
|
# Issue #8759: make sure the posix scheme for the users
|
|
|
|
# is similar to the global posix_prefix one
|