2018-08-30 13:27:55 +00:00
|
|
|
commit b6d5da6796801862eb751a93d507c343af0604d6
|
|
|
|
Author: Victor Stinner <vstinner@redhat.com>
|
|
|
|
Date: Tue Sep 18 17:13:51 2018 +0200
|
|
|
|
|
|
|
|
Subject: Prevent removing of the system packages installed under /usr/lib
|
|
|
|
|
|
|
|
when pip install -U is executed.
|
|
|
|
|
|
|
|
Resolves: rhbz#1550368
|
|
|
|
|
|
|
|
Co-Authored-By: Michal Cyprian <m.cyprian@gmail.com>
|
|
|
|
|
|
|
|
diff --git a/src/pip/_internal/req/req_install.py b/src/pip/_internal/req/req_install.py
|
2018-11-22 12:26:40 +00:00
|
|
|
index 922d10c..6f73f33 100644
|
2018-08-30 13:27:55 +00:00
|
|
|
--- a/src/pip/_internal/req/req_install.py
|
|
|
|
+++ b/src/pip/_internal/req/req_install.py
|
2018-11-22 12:26:40 +00:00
|
|
|
@@ -29,7 +29,7 @@ from pip._internal.utils.hashes import Hashes
|
2018-08-30 13:27:55 +00:00
|
|
|
from pip._internal.utils.logging import indent_log
|
|
|
|
from pip._internal.utils.misc import (
|
|
|
|
_make_build_dir, ask_path_exists, backup_dir, call_subprocess,
|
|
|
|
- display_path, dist_in_site_packages, dist_in_usersite, ensure_dir,
|
|
|
|
+ display_path, dist_in_install_path, dist_in_site_packages, dist_in_usersite, ensure_dir,
|
2018-11-22 12:26:40 +00:00
|
|
|
get_installed_version, rmtree,
|
2018-08-30 13:27:55 +00:00
|
|
|
)
|
2018-11-22 12:26:40 +00:00
|
|
|
from pip._internal.utils.packaging import get_metadata
|
|
|
|
@@ -359,7 +359,7 @@ class InstallRequirement(object):
|
2018-08-30 13:27:55 +00:00
|
|
|
"lack sys.path precedence to %s in %s" %
|
|
|
|
(existing_dist.project_name, existing_dist.location)
|
|
|
|
)
|
|
|
|
- else:
|
|
|
|
+ elif dist_in_install_path(existing_dist):
|
|
|
|
self.conflicts_with = existing_dist
|
|
|
|
return True
|
|
|
|
|
|
|
|
diff --git a/src/pip/_internal/resolve.py b/src/pip/_internal/resolve.py
|
2018-11-22 12:26:40 +00:00
|
|
|
index 2d9f1c5..4ad9e77 100644
|
2018-08-30 13:27:55 +00:00
|
|
|
--- a/src/pip/_internal/resolve.py
|
|
|
|
+++ b/src/pip/_internal/resolve.py
|
|
|
|
@@ -20,7 +20,7 @@ from pip._internal.exceptions import (
|
|
|
|
)
|
2018-11-22 12:26:40 +00:00
|
|
|
from pip._internal.req.constructors import install_req_from_req
|
2018-08-30 13:27:55 +00:00
|
|
|
from pip._internal.utils.logging import indent_log
|
|
|
|
-from pip._internal.utils.misc import dist_in_usersite, ensure_dir
|
|
|
|
+from pip._internal.utils.misc import dist_in_install_path, dist_in_usersite, ensure_dir
|
|
|
|
from pip._internal.utils.packaging import check_dist_requires_python
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
@@ -123,7 +123,9 @@ class Resolver(object):
|
|
|
|
"""
|
|
|
|
# Don't uninstall the conflict if doing a user install and the
|
|
|
|
# conflict is not a user install.
|
|
|
|
- if not self.use_user_site or dist_in_usersite(req.satisfied_by):
|
|
|
|
+ if ((not self.use_user_site
|
|
|
|
+ or dist_in_usersite(req.satisfied_by))
|
|
|
|
+ and dist_in_install_path(req.satisfied_by)):
|
|
|
|
req.conflicts_with = req.satisfied_by
|
|
|
|
req.satisfied_by = None
|
|
|
|
|
|
|
|
diff --git a/src/pip/_internal/utils/misc.py b/src/pip/_internal/utils/misc.py
|
2018-11-22 12:26:40 +00:00
|
|
|
index 84a421f..c879a21 100644
|
2018-08-30 13:27:55 +00:00
|
|
|
--- a/src/pip/_internal/utils/misc.py
|
|
|
|
+++ b/src/pip/_internal/utils/misc.py
|
2018-11-22 12:26:40 +00:00
|
|
|
@@ -29,7 +29,7 @@ from pip._vendor.six.moves.urllib import parse as urllib_parse
|
2018-08-30 13:27:55 +00:00
|
|
|
from pip._internal.exceptions import CommandError, InstallationError
|
|
|
|
from pip._internal.locations import (
|
|
|
|
running_under_virtualenv, site_packages, user_site, virtualenv_no_global,
|
|
|
|
- write_delete_marker_file,
|
|
|
|
+ write_delete_marker_file, distutils_scheme,
|
|
|
|
)
|
2018-11-22 12:26:40 +00:00
|
|
|
from pip._internal.utils.compat import (
|
|
|
|
WINDOWS, console_to_str, expanduser, stdlib_pkgs,
|
|
|
|
@@ -328,6 +328,16 @@ def dist_in_site_packages(dist):
|
2018-08-30 13:27:55 +00:00
|
|
|
).startswith(normalize_path(site_packages))
|
|
|
|
|
|
|
|
|
|
|
|
+def dist_in_install_path(dist):
|
|
|
|
+ """
|
|
|
|
+ Return True if given Distribution is installed in
|
|
|
|
+ path matching distutils_scheme layout.
|
|
|
|
+ """
|
|
|
|
+ norm_path = normalize_path(dist_location(dist))
|
|
|
|
+ return norm_path.startswith(normalize_path(
|
|
|
|
+ distutils_scheme("")['purelib'].split('python')[0]))
|
|
|
|
+
|
|
|
|
+
|
|
|
|
def dist_is_editable(dist):
|
|
|
|
"""Is distribution an editable install?"""
|
|
|
|
for path_item in sys.path:
|