diff options
author | Alex Brandt <alunduil@gentoo.org> | 2016-10-15 20:36:02 -0500 |
---|---|---|
committer | Alex Brandt <alunduil@gentoo.org> | 2016-10-15 20:36:02 -0500 |
commit | 7e887daf762bf64adf15c33916e030bd61446637 (patch) | |
tree | 368b0ee0fd85701876137ca8b4b7bb743902111d /dev-python/botocore | |
parent | dev-python/aiohttp: remove version 0.22.5 (diff) | |
download | gentoo-7e887daf762bf64adf15c33916e030bd61446637.tar.gz gentoo-7e887daf762bf64adf15c33916e030bd61446637.tar.bz2 gentoo-7e887daf762bf64adf15c33916e030bd61446637.zip |
dev-python/botocore: add version 1.4.60
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-python/botocore')
-rw-r--r-- | dev-python/botocore/Manifest | 1 | ||||
-rw-r--r-- | dev-python/botocore/botocore-1.4.60.ebuild | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest index 5fc430d14035..04d7fcbe2a31 100644 --- a/dev-python/botocore/Manifest +++ b/dev-python/botocore/Manifest @@ -1,3 +1,4 @@ DIST botocore-1.4.55.tar.gz 2774299 SHA256 0c0a2ffa545cb4209cac4f8caad4463d12e17c052a2a643814109782a68540b8 SHA512 5d5311112e56329afa37f7930102e60d6372790c9c45f76f483936fb53eb97608f6a2b7d3c39c5c03e576a25e1b8944586761b11465409cd57bbed2af590a5d7 WHIRLPOOL 1ebe49e320cb894281a3e7b35779baa99d7d7f1a59aa469cc0ef8e67880cc6eb070ba43cd4040f5fa57b739be4f3aac8c83a6d1d797f3fac942109ef40c9fa60 DIST botocore-1.4.56.tar.gz 2778136 SHA256 8cf6152b5af9df16bb7ba660d2bc7dc110911532fc253e052c2c26099d84ac8f SHA512 87b48221e7d1c9d77bd048f5d3a4b67660af1d3c3ebdbce0f517fd3f8fa5ae91cb45d3644d62b40ec85291f4e26f85dff6ddb2258d5a86cce26b82abee09421f WHIRLPOOL c336b5878d5656455b696a75eca28f4c65cc95af0ed79d6e7051908652cf6c935d65db2b9185dabf0df493c49d4478870463ff2a1e31cb33c45f05794cb86621 DIST botocore-1.4.58.tar.gz 2906349 SHA256 a464bb803faffdd689c732768e472da8732b87795bc03ed4342a2ab99338e9f7 SHA512 717b02eef844ac192704c0eda2c2942358d714d92012dff59a38e0bb558ef3cfe6208f3892bb25b3752af96cc81ce057f4052783f60221e63bd087bba59a3dfb WHIRLPOOL bc7b077ca015103d12423f258f21eb42cdeecde311ec726268cb00a6ffd7126047efbdb5fac609f1ae77744465c9989b1d34f953b7d690657d5f8f5f83ccd38e +DIST botocore-1.4.60.tar.gz 2908934 SHA256 b091e12a6bba367f147631d3fdc4891567d260f79a09bce8a76f15647da0a2bf SHA512 77fb9e20d54455e1a200ef53db64491383e361f318ce903350beb13ce81edc438dc75642afa3c6825a1c5d3d517bd456ce362a7c917a6c725b2fe3638007858f WHIRLPOOL 17dd5a81f8ac8da7b62cfa91b2c202c6360eac760ebb9ed85b8633f4b7cb740bd5178df126052e36b142e48f47f0c1e749e1ed8d2684238df19ac22de643096e diff --git a/dev-python/botocore/botocore-1.4.60.ebuild b/dev-python/botocore/botocore-1.4.60.ebuild new file mode 100644 index 000000000000..9c57e3342b4c --- /dev/null +++ b/dev-python/botocore/botocore-1.4.60.ebuild @@ -0,0 +1,54 @@ +# 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 python3_4 python3_5 ) + +inherit distutils-r1 + +DESCRIPTION="Low-level, data-driven core of boto 3." +HOMEPAGE="https://github.com/boto/botocore" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc test" + +CDEPEND=" + >=dev-python/docutils-0.10[${PYTHON_USEDEP}] + >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] + <dev-python/jmespath-1.0.0[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}] + <dev-python/python-dateutil-3.0.0[${PYTHON_USEDEP}] +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( + >=dev-python/guzzle_sphinx_theme-0.7.10[${PYTHON_USEDEP}] + <dev-python/guzzle_sphinx_theme-0.8[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.1.3[${PYTHON_USEDEP}] + <dev-python/sphinx-1.3[${PYTHON_USEDEP}] + ) + test? ( + ${CDEPEND} + ~dev-python/mock-1.0.1[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + ) +" +RDEPEND="${CDEPEND}" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + nosetests tests/unit || die "tests failed under ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/build/html/. ) + + distutils-r1_python_install_all +} |