commit: e8a58c35c63c5089ca0ad8628cb65371232cc4f2 Author: Alex Brandt <alunduil <AT> gentoo <DOT> org> AuthorDate: Sun May 15 20:56:37 2016 +0000 Commit: Alex Brandt <alunduil <AT> gentoo <DOT> org> CommitDate: Sun May 15 21:01:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8a58c35
dev-python/botocore: add version 1.4.17 Package-Manager: portage-2.2.28 dev-python/botocore/Manifest | 1 + dev-python/botocore/botocore-1.4.17.ebuild | 54 ++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest index 41c01ff..da52c87 100644 --- a/dev-python/botocore/Manifest +++ b/dev-python/botocore/Manifest @@ -1,3 +1,4 @@ DIST botocore-1.3.22.tar.gz 2349601 SHA256 02a6d320b09179bc5dcbafd4be732d9431bfebf5bed6d6b6508eca96b599a399 SHA512 7b349a78c83051a29993ce00a11ecfa4734425c3ed27ce3e405140e19017b5c670d857ea489ea1f6f3ec767b3e4704547565b2ec67f5d7001a0cc30ff2a39de7 WHIRLPOOL 98c5e7488c6d1fe5c3e3484c770f8b346508359c5d174e5660f10ea62b054f442e3d15cc716ddd5acc42f1af0a10463c1923de138338175f1dcba9ced283c8ee DIST botocore-1.4.10.tar.gz 2453883 SHA256 f0b740d07cf7b7a4ec08cafdf9db8cfd813d2d69bde1e7de0cffc50bf075aa4b SHA512 51009ad6abc1f413e9dbeea52207c96df7d1647a6da8f0139e7557e36a3ad0fa440d32f430f5d7f690f0ec70b9c114ac1544c6fcddc8080acf5f2fa14bc5d1db WHIRLPOOL c9bc19adae6f7c4eceb33e448e717f41639fbc9126a07c6f511ccf958ace98fcbea54f0dddd2e928b4435fc3abfdd8b4da745b05227fd7397de89448e411e32b DIST botocore-1.4.11.tar.gz 2455881 SHA256 96295db1444e9a458a3018205187ec424213e0a69c937062347f88b7b7e078fb SHA512 b012c84095f86a0070846290daaca017a9af57c25c78d54e351e6cf8331a3650236c3fe92791e0f345ef91067084a00f9cea183cd4e208e6065a7e001ac793f4 WHIRLPOOL aec9b6a5e7038dac6216940351d5746f98d809ecd2dad6d2e988091bf1df805c62f92aabf39684666a5c3ffd9b1e62ead6a454790cfd1c4b0c8a4a19d1fdc4c2 +DIST botocore-1.4.17.tar.gz 2474986 SHA256 bc4113758dabc3015b12054d906e48e0ef8457d14a392f647ed730204506bd8b SHA512 2b08c8fdd04efdbb75cd4c5b1df7d44768959eedd2e9c3a4b3294dcce9471e4a87650d4c95f97de918f07d1a554d3cebf098f249b72c5f651cbae91f23c4d2b6 WHIRLPOOL 1f247a324b9bd547229e7b6ab1db7202c3cf020f31c8e33da01b3bbb57d32f59f992882ebd9c651cd2fbddb92e75e62aa56f90227edf6792448bae6d4adcf6c0 diff --git a/dev-python/botocore/botocore-1.4.17.ebuild b/dev-python/botocore/botocore-1.4.17.ebuild new file mode 100644 index 0000000..f3ea5ec --- /dev/null +++ b/dev-python/botocore/botocore-1.4.17.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 ) + +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 +}