diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-01-21 11:33:25 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-01-21 12:43:47 +0100 |
commit | bbdfa5280566435e3d278731e2be8d8cc9d9e04e (patch) | |
tree | 27864e767ba5762dd100fa0930291897bc610294 /dev-python | |
parent | dev-python/urllib3: Fix to progressive unbundling (diff) | |
download | gentoo-bbdfa5280566435e3d278731e2be8d8cc9d9e04e.tar.gz gentoo-bbdfa5280566435e3d278731e2be8d8cc9d9e04e.tar.bz2 gentoo-bbdfa5280566435e3d278731e2be8d8cc9d9e04e.zip |
dev-python/requests: Unbundle system libs
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/requests/files/requests-2.9.1-system-packages.patch | 20 | ||||
-rw-r--r-- | dev-python/requests/requests-2.9.1-r1.ebuild (renamed from dev-python/requests/requests-2.9.1.ebuild) | 12 |
2 files changed, 26 insertions, 6 deletions
diff --git a/dev-python/requests/files/requests-2.9.1-system-packages.patch b/dev-python/requests/files/requests-2.9.1-system-packages.patch new file mode 100644 index 000000000000..f511d0d6524d --- /dev/null +++ b/dev-python/requests/files/requests-2.9.1-system-packages.patch @@ -0,0 +1,20 @@ + setup.py | 6 ------ + 1 file changed, 6 deletions(-) + +diff --git a/setup.py b/setup.py +index b7ed12b..1d5abe4 100755 +--- a/setup.py ++++ b/setup.py +@@ -18,12 +18,6 @@ if sys.argv[-1] == 'publish': + packages = [ + 'requests', + 'requests.packages', +- 'requests.packages.chardet', +- 'requests.packages.urllib3', +- 'requests.packages.urllib3.packages', +- 'requests.packages.urllib3.contrib', +- 'requests.packages.urllib3.util', +- 'requests.packages.urllib3.packages.ssl_match_hostname', + ] + + requires = [] diff --git a/dev-python/requests/requests-2.9.1.ebuild b/dev-python/requests/requests-2.9.1-r1.ebuild index 4d4a6086e01f..3228f55e57b0 100644 --- a/dev-python/requests/requests-2.9.1.ebuild +++ b/dev-python/requests/requests-2.9.1-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) PYTHON_REQ_USE="threads(+)" inherit distutils-r1 @@ -18,7 +18,6 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="test" -# bundles dev-python/urllib3 snapshot RDEPEND=" app-misc/ca-certificates >=dev-python/chardet-2.2.1[${PYTHON_USEDEP}] @@ -26,6 +25,7 @@ RDEPEND=" >=dev-python/py-1.4.30[${PYTHON_USEDEP}] dev-python/pyasn1[${PYTHON_USEDEP}] >=dev-python/pyopenssl-0.13[$(python_gen_usedep 'python*' pypy)] + dev-python/urllib3[${PYTHON_USEDEP}] " DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] @@ -39,13 +39,13 @@ DEPEND="${RDEPEND} RESTRICT="test" PATCHES=( - "${FILESDIR}"/${PN}-2.2.0-system-chardet.patch + "${FILESDIR}"/${P}-system-packages.patch "${FILESDIR}"/${PN}-2.5.0-system-cacerts.patch ) python_prepare_all() { - # use system chardet - rm -r requests/packages/chardet || die + # use system chardet & urllib3 + rm -r requests/packages/{chardet,urllib3} || die distutils-r1_python_prepare_all } |