aiobotocore-0.11.1-r1: fix botocore dependency

This commit is contained in:
2020-01-31 15:16:48 +01:00
parent 716ebc3a90
commit a37d4c3b74
3 changed files with 37 additions and 0 deletions
+1
View File
@@ -1,5 +1,6 @@
2020-01-31 homeassistant-0.105.0.beta2
* update s3transfer-0.2.1
* aiobotocore-0.11.1-r1: fix botocore dependency
2020-01-30 homeassistant-0.105.0_beta1
* update homeassistant-0.105.0_beta0, add ~arm64 arch for testing
+1
View File
@@ -5,5 +5,6 @@ DIST aiobotocore-0.11.1.tar.gz 27860 BLAKE2B 22bc31e8d53177b286a4386698fbeec9689
EBUILD aiobotocore-0.10.1.ebuild 887 BLAKE2B f5e596598a8396b70485f670325a3aa10b574a9e0dcf22224d01f0ff2b7ea1d001f6dd6469481739ad5d76bd44190bfdf92abcc8e96a935880807a563708eb5a SHA512 c7a459307c645900c4c912a3cd41a8d82b168eb4dbc915ea0a41ce39e28d95e02971d1b7cdc9403a7e0bd704e8b5cd55031b3ca0ba2019c96bd50c62b7b51200
EBUILD aiobotocore-0.10.2.ebuild 887 BLAKE2B f5e596598a8396b70485f670325a3aa10b574a9e0dcf22224d01f0ff2b7ea1d001f6dd6469481739ad5d76bd44190bfdf92abcc8e96a935880807a563708eb5a SHA512 c7a459307c645900c4c912a3cd41a8d82b168eb4dbc915ea0a41ce39e28d95e02971d1b7cdc9403a7e0bd704e8b5cd55031b3ca0ba2019c96bd50c62b7b51200
EBUILD aiobotocore-0.10.4.ebuild 841 BLAKE2B ba7aeaf5b4b3a8be8578892bbddbe607b7a9ae0004ade874013e18df11ff183799ef566d9bb53379c4e44c91427dd6767b18092689bb47beca812572e6a1e072 SHA512 6d17681df7771fc44d040dd9f4ed873dceba23fe5fdd6fa89fee20e7a8bc4d28babe5388aa0f234785cce02e2979d4b4a3301a2e7525f2fac8a788f0c7a0919c
EBUILD aiobotocore-0.11.1-r1.ebuild 926 BLAKE2B 8f91c2f15d33e59afc75f7f4dc4717bd35981c5a9f4134ec0ccb297ba32e98381331221cc1db000c95bb5ef11120805845698dce3c17e23d310a431d0a9a763f SHA512 4a3a6f3b8941be28ad49df76e2d9f8409a2bf96995d3ca336573cf1a9bd2380a3aaec636f32c92f9fd7386d9c964615a32d4c6d037d9c1828fe4641e7a95d2d0
EBUILD aiobotocore-0.11.1.ebuild 848 BLAKE2B b0229ec15d1bc5091e6bc1299dc9e096061ca83378a0577c261f56dda515adc7e7af4c1ebc05e8d0b1f567106221cf8b512782c175cbbdd08717f772dc140afb SHA512 8e8a587324c51a2c27b437da5bf348610c4009c2ea4ccd1580f17c0431405fbc67bad3b4579254a93ad30171b2f76843411788cce2d2383e6b08a904d88a3f14
MISC metadata.xml 460 BLAKE2B 4a8ea3ee831803460c736be1a66ac272dea0ecfc33f806272b13e2d3178ef76ebd547857b79cf43a5e187820491d23a0c85025101ac97054c0d29ceef64a78af SHA512 242a704b62b365a2c4c0ceb16668afe8dbdec9a1bde0631880b51e618ae3af5730587bb98ba31435df642a16524a30f7c116399a9c0a9d76e11ab3174d716fe6
@@ -0,0 +1,35 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Async client for aws services using botocore and aiohttp"
HOMEPAGE="https://github.com/aio-libs/aiobotocore https://pypi.org/project/aiobotocore/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~arm64"
IUSE="test"
# botocore>=1.13.14,<1.13.15
RDEPEND=">=dev-python/aiohttp-3.3.1[${PYTHON_USEDEP}]
>=dev-python/wrapt-1.10.10[${PYTHON_USEDEP}]
>=dev-python/botocore-1.13.14[${PYTHON_USEDEP}]
<dev-python/botocore-1.13.15[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}