dev-python/s3transfer: Bump

Package-Manager: Portage-2.3.8, Repoman-2.3.3
This commit is contained in:
Patrick Lauer
2017-09-16 06:44:49 +00:00
parent 736ea118fb
commit 5a60e52b97
2 changed files with 38 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST s3transfer-0.1.10.tar.gz 95508 SHA256 ba1a9104939b7c0331dc4dd234d79afeed8b66edce77bbeeecd4f56de74a0fc1 SHA512 56ae7d13d0f7818728adc08b458ec1937693e4232383a2a00f03ade725baea239d5fc2625d7d684d20191b51b109c187f3f2ec3633923ed5871db061af00f2e0 WHIRLPOOL d6ad5c58f5e6ce92c16c11dd7d3c6b841a06ddbd8f0cf493f36a6735db522e6d1ac3bc0c15c3dd5133b7f21a030540b0175a4b4ebf32c40e066203cd8f4f0624
DIST s3transfer-0.1.11.tar.gz 95555 SHA256 76f1f58f4a47e2c8afa135e2c76958806a3abbc42b721d87fd9d11409c75d979 SHA512 83b85dadb696df9dfcd28719ccadba8aa0e8f36b0fe4ce4f61dfe00460617bae74307cbe6ba924a8de86fe527e18a34d66acb72f7a3d9001e670d76dfc8b60a2 WHIRLPOOL 823c8447da8ca7c9fb3507df27b8b7fcef561120017800b8521660ef242751f9d9346cc1e514ecbcb5f4d01d03900b45634b9b1b0495eac6061f593a47d49cac

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
inherit distutils-r1
DESCRIPTION="An Amazon S3 Transfer Manager"
HOMEPAGE="https://github.com/boto/s3transfer"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
CDEPEND="
>=dev-python/botocore-1.3.0[${PYTHON_USEDEP}]
<dev-python/botocore-2.0.0[${PYTHON_USEDEP}]
$(python_gen_cond_dep '>=dev-python/futures-2.2.0[${PYTHON_USEDEP}]' 'python2_7')
$(python_gen_cond_dep '<dev-python/futures-4.0.0[${PYTHON_USEDEP}]' 'python2_7')
"
# Pin mock to 1.3.0 if testing failures due to mock occur.
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
${CDEPEND}
dev-python/mock[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
)
"
RDEPEND="${CDEPEND}"
python_test() {
nosetests -v tests/unit/ tests/functional/ || die "tests failed under ${EPYTHON}"
}