summaryrefslogtreecommitdiff
path: root/dev-python/pip/files
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2017-01-03 23:28:30 -0500
committerMike Gilbert <floppym@gentoo.org>2017-01-03 23:28:30 -0500
commit698a23d83720989123978eb212b387bc5fe96e4a (patch)
tree3e8016bfbdb82340bce647b478bee529f89b054a /dev-python/pip/files
parent3f778e5fcc05d44ed54ff918801e26862a325135 (diff)
downloadgentoo-698a23d83720989123978eb212b387bc5fe96e4a.tar.gz
gentoo-698a23d83720989123978eb212b387bc5fe96e4a.tar.xz
dev-python/pip: disable systemwide installs
Bug: https://bugs.gentoo.org/553762 Package-Manager: Portage-2.3.3_p13, Repoman-2.3.1_p6
Diffstat (limited to 'dev-python/pip/files')
-rw-r--r--dev-python/pip/files/pip-disable-system-install.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/pip/files/pip-disable-system-install.patch b/dev-python/pip/files/pip-disable-system-install.patch
new file mode 100644
index 00000000000..9e572454315
--- /dev/null
+++ b/dev-python/pip/files/pip-disable-system-install.patch
@@ -0,0 +1,29 @@
+From 847553da616edabede18c69ba640a32b719b45a8 Mon Sep 17 00:00:00 2001
+From: Mike Gilbert <floppym@gentoo.org>
+Date: Tue, 27 Oct 2015 12:20:44 -0400
+Subject: [PATCH] install: Raise an error to avoid breaking python-exec
+
+Running pip without --target, --root, or --user will result in packages
+being installed systemwide. This has a tendency to break python-exec if
+setuptools gets installed or upgraded.
+---
+ pip/commands/install.py | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/pip/commands/install.py b/pip/commands/install.py
+index 46cd9f2..36b72f2 100644
+--- a/pip/commands/install.py
++++ b/pip/commands/install.py
+@@ -204,6 +204,9 @@ class InstallCommand(RequirementCommand):
+ )
+ options.ignore_installed = True
+
++ if not options.use_user_site and not options.target_dir and not options.root_path:
++ raise CommandError("(Gentoo) Please run pip with the --user option to avoid breaking python-exec")
++
+ if options.build_dir:
+ options.build_dir = os.path.abspath(options.build_dir)
+
+--
+2.6.2
+