use newer s3transfer
This commit is contained in:
@@ -7,6 +7,7 @@ DIST boto3-1.9.57.tar.gz 246248 BLAKE2B 5721b5e178fe85ca674baf2e60a65a0d06bc445b
|
||||
EBUILD boto3-1.9.115.ebuild 1206 BLAKE2B 6a3683415341df4d584b1a2a01bfca9ba51dcce2e8790adaff79e59991d7321d133d28abe9a8cac9de17099a55f7542355aa1155a7edd2cab4ddfa42fd172551 SHA512 72ae1d520b8cd9addd3a47f130c7531349903f9dbde19860557afd64bf542ecd71805c2a3795b82bb27f66cb672b0ed5fd447e1eab04efefa9005c2f37f2a1c3
|
||||
EBUILD boto3-1.9.116.ebuild 1206 BLAKE2B 6a3683415341df4d584b1a2a01bfca9ba51dcce2e8790adaff79e59991d7321d133d28abe9a8cac9de17099a55f7542355aa1155a7edd2cab4ddfa42fd172551 SHA512 72ae1d520b8cd9addd3a47f130c7531349903f9dbde19860557afd64bf542ecd71805c2a3795b82bb27f66cb672b0ed5fd447e1eab04efefa9005c2f37f2a1c3
|
||||
EBUILD boto3-1.9.16.ebuild 1228 BLAKE2B de6d5b56edbe0b4c9a8fe6cf28ac04a01c62ac4a60e1182daf7d5a4b3a5d9251952e85ef45d62a4953845219d38253ddb22aa303bb6e26ecaf0af3c258d11705 SHA512 13addc19481acfaf316e1d0f45e92a6077b3c1065e45c6e35889d91995f1b195dc45dc8cc966bdf983968a12994254395b885ac8163aebdbc10c87da41e16d25
|
||||
EBUILD boto3-1.9.233-r1.ebuild 1209 BLAKE2B a64c9652ef5c111437d2dc98566bd7baf7e87b610e54f3383710de2c4f72e7e5e7dfe465d1d56e81c2a2f0aaa677bdb231d15e309ad5761bdfaa6232b63c2542 SHA512 df173ffd70635bc1257d096e70609cd40370a737011c15e8c77202e98b54fd25f84be83ad5ddd8593a4d51c39a96c443ad4077d71295f1b94ad0607e4b12e926
|
||||
EBUILD boto3-1.9.233.ebuild 1209 BLAKE2B a64c9652ef5c111437d2dc98566bd7baf7e87b610e54f3383710de2c4f72e7e5e7dfe465d1d56e81c2a2f0aaa677bdb231d15e309ad5761bdfaa6232b63c2542 SHA512 df173ffd70635bc1257d096e70609cd40370a737011c15e8c77202e98b54fd25f84be83ad5ddd8593a4d51c39a96c443ad4077d71295f1b94ad0607e4b12e926
|
||||
EBUILD boto3-1.9.35.ebuild 1228 BLAKE2B de6d5b56edbe0b4c9a8fe6cf28ac04a01c62ac4a60e1182daf7d5a4b3a5d9251952e85ef45d62a4953845219d38253ddb22aa303bb6e26ecaf0af3c258d11705 SHA512 13addc19481acfaf316e1d0f45e92a6077b3c1065e45c6e35889d91995f1b195dc45dc8cc966bdf983968a12994254395b885ac8163aebdbc10c87da41e16d25
|
||||
EBUILD boto3-1.9.57.ebuild 1202 BLAKE2B 6ba9b37488c36c0ac02be61c64372c3a961c6ca2aff192e92aa4f1c818b4c86e686f777dabde5b2e0fbf351e7e713ea0a1a44dd5d1d2a6a36641d29239867174 SHA512 a67fd25ea8b05be5d2cb4d7e23dc70554e697cfd1693676604270fc08f923e198915f7401d085f8d9446f717d14ab96e8f1e2dc46ae3290fbe25c274d1c0f887
|
||||
|
||||
54
dev-python/boto3/boto3-1.9.233-r1.ebuild
Normal file
54
dev-python/boto3/boto3-1.9.233-r1.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit distutils-r1 vcs-snapshot
|
||||
|
||||
DESCRIPTION="The AWS SDK for Python"
|
||||
HOMEPAGE="https://github.com/boto/boto3"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
IUSE="doc test"
|
||||
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
EGIT_REPO_URI="https://github.com/boto/boto3"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
fi
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/botocore-1.12.4[${PYTHON_USEDEP}]
|
||||
dev-python/jmespath[${PYTHON_USEDEP}]
|
||||
=dev-python/s3transfer-0.2.0[${PYTHON_USEDEP}]
|
||||
"
|
||||
DEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
doc? (
|
||||
dev-python/guzzle_sphinx_theme[${PYTHON_USEDEP}]
|
||||
dev-python/sphinx[${PYTHON_USEDEP}]
|
||||
)
|
||||
test? (
|
||||
${RDEPEND}
|
||||
dev-python/mock[${PYTHON_USEDEP}]
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
python_compile_all() {
|
||||
use doc && emake -C docs html
|
||||
}
|
||||
|
||||
python_test() {
|
||||
nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}"
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( docs/build/html/. )
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
Reference in New Issue
Block a user