forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unbundle all vendored libs Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher <[email protected]>
- Loading branch information
Showing
3 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
pip/_vendor/__init__.py | 13 +++++-------- | ||
1 file changed, 5 insertions(+), 8 deletions(-) | ||
|
||
diff --git a/pip/_vendor/__init__.py b/pip/_vendor/__init__.py | ||
index ef8851d..349d022 100644 | ||
--- a/pip/_vendor/__init__.py | ||
+++ b/pip/_vendor/__init__.py | ||
@@ -14,7 +14,7 @@ import sys | ||
# Downstream redistributors which have debundled our dependencies should also | ||
# patch this value to be true. This will trigger the additional patching | ||
# to cause things like "six" to be available as pip. | ||
-DEBUNDLED = False | ||
+DEBUNDLED = True | ||
|
||
# By default, look in this directory for a bunch of .whl files which we will | ||
# add to the beginning of sys.path before attempting to import anything. This | ||
@@ -29,13 +29,10 @@ WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) | ||
def vendored(modulename): | ||
vendored_name = "{0}.{1}".format(__name__, modulename) | ||
|
||
- try: | ||
- __import__(vendored_name, globals(), locals(), level=0) | ||
- except ImportError: | ||
- __import__(modulename, globals(), locals(), level=0) | ||
- sys.modules[vendored_name] = sys.modules[modulename] | ||
- base, head = vendored_name.rsplit(".", 1) | ||
- setattr(sys.modules[base], head, sys.modules[modulename]) | ||
+ __import__(modulename, globals(), locals(), level=0) | ||
+ sys.modules[vendored_name] = sys.modules[modulename] | ||
+ base, head = vendored_name.rsplit(".", 1) | ||
+ setattr(sys.modules[base], head, sys.modules[modulename]) | ||
|
||
|
||
# If we're operating in a debundled setup, then we want to go ahead and trigger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 ) | ||
|
||
inherit bash-completion-r1 distutils-r1 | ||
|
||
DESCRIPTION="Installs python packages -- replacement for easy_install" | ||
HOMEPAGE="https://pip.pypa.io/ https://pypi.python.org/pypi/pip/ https://github.com/pypa/pip/" | ||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" | ||
SLOT="0" | ||
|
||
# Check pip/_vendor/vendor.txt for this | ||
VENDOR_DEPEND=" | ||
>=dev-python/distlib-0.2.1 | ||
>=dev-python/html5lib-0.999999 | ||
>=dev-python/six-1.9 | ||
>=dev-python/colorama-0.3.3 | ||
>=dev-python/requests-2.7.0 | ||
>=dev-python/CacheControl-0.11.5 | ||
>=dev-python/lockfile-0.10.2 | ||
>=dev-python/progress-1.2 | ||
>=dev-python/ipaddress-1.0.14 | ||
>=dev-python/packaging-15.3 | ||
>=dev-python/retrying-1.3.3 | ||
" | ||
RDEPEND="${VENDOR_DEPEND} | ||
>=dev-python/setuptools-18.2[${PYTHON_USEDEP}] | ||
" | ||
DEPEND="${RDEPEND}" | ||
|
||
# required test data isn't bundled with the tarball | ||
RESTRICT="test" | ||
|
||
PATCHES=( | ||
"${FILESDIR}"/${PN}-6.0.2-disable-version-check.patch | ||
"${FILESDIR}"/${P}-unbundle.patch | ||
) | ||
|
||
python_prepare_all() { | ||
mv pip/_vendor/__init__.py "${T}" || die | ||
rm -r pip/_vendor/* || die | ||
mv "${T}"/__init__.py pip/_vendor/__init__.py || die | ||
|
||
distutils-r1_python_prepare_all | ||
} | ||
|
||
python_install_all() { | ||
local DOCS=( AUTHORS.txt docs/*.rst ) | ||
distutils-r1_python_install_all | ||
|
||
COMPLETION="${T}"/completion.tmp | ||
|
||
${EPYTHON} pip/__init__.py completion --bash > "${COMPLETION}" || die | ||
newbashcomp "${COMPLETION}" ${PN} | ||
|
||
${EPYTHON} pip/__init__.py completion --zsh > "${COMPLETION}" || die | ||
insinto /usr/share/zsh/site-functions | ||
newins "${COMPLETION}" _pip | ||
} |