update aiobotocore-0.10.4

This commit is contained in:
Andreas Billmeier 2019-11-15 09:10:34 +01:00
parent 9641149c0f
commit 594ead9173
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* add aiobotocore-0.10.1
* update teslajsonpy-0.2.0
* bump aiobotocore-0.10.2
* bump aiobotocore-0.10.4
2019-11-14 homeassistant-0.102.0_beta1
* add MIT License to total-connect-client

View File

@ -1,5 +1,7 @@
DIST aiobotocore-0.10.1.tar.gz 25692 BLAKE2B ab5cb575bb03e7abde954a5134254f3a255659e76c43aa01f470a9cd4d1194099255808410c922d2c91301929e891165ef3708c4df78a4ee023b62717e2488e6 SHA512 c24656f26599d23703c7181041defcd1f71e28b8be407162cc82cf66981afe4c5e2aeb3cb4299518902de4b91cb14c287ed0e592f7aeacfb39d805aea10da3d4
DIST aiobotocore-0.10.2.tar.gz 25755 BLAKE2B 92d22571d2755bb571a99f9c7ca4a270778be2837173640a20f734c415160512e9652a27f2cf58048469409032eda12fb9eae3cc27d385dd64ff9f796b3e5ba0 SHA512 9c44cc6074f9598f93907efb7919830d8effd2a64b4ea40bf02899724b04db862ae5762a08530d7cee05d999ab1d74c4e691704270406f0d0afb0aa9f8c03144
DIST aiobotocore-0.10.4.tar.gz 26572 BLAKE2B 02036e21580d9ea18974d3609e8f4207188db086d58400955e44a4efb9bed51ceea038e8b7948dd15f397317481c84b80f1a6fea2469c52d420dec653bea1691 SHA512 33e5a2bea4e15cb6876e66850baa8e7b347f9ffdd0badc3f4f2847515462380e28bb2f9f609edf9f15bde3ec6991fbc6ae5748aab6acd6aa5203368836af9730
EBUILD aiobotocore-0.10.1.ebuild 885 BLAKE2B a69a967dc663a4b41b3289fa48bc2aec73f853e60181ab1c18cb6bc4bfe42043addda0be21d3b953dc53935267c609eec598269924d0b99395437aa6256c1280 SHA512 fb7fa78d0308bcb9a6a6c9b566aa323ddd72bb9835660ce15e6a4795db37ed2abeede159d73fb061e05ab49c02a598f2e179df2e76888754b0f40cadd56137e6
EBUILD aiobotocore-0.10.2.ebuild 885 BLAKE2B a69a967dc663a4b41b3289fa48bc2aec73f853e60181ab1c18cb6bc4bfe42043addda0be21d3b953dc53935267c609eec598269924d0b99395437aa6256c1280 SHA512 fb7fa78d0308bcb9a6a6c9b566aa323ddd72bb9835660ce15e6a4795db37ed2abeede159d73fb061e05ab49c02a598f2e179df2e76888754b0f40cadd56137e6
EBUILD aiobotocore-0.10.4.ebuild 839 BLAKE2B a5c409178738df6bfeba8d3a483b7fbb8199928d5a7756ff58e5ea37deb08f54305045ee51a21a6b9070717263a687b2c5a23844e97cf92ff192efbda81e718c SHA512 23fcaed2b0e14d96681ad4445e918f7a62e46fcc91a0511607acfcfbbc3a79e03d93ba4a2b5a3ed970e108c416df1b0dfb1257bfaa27feb0f6ea447754bb6764
MISC metadata.xml 467 BLAKE2B 6a64de1b48db4fc4dd83affa3f007507c10612ef9f24c316311d60c0b91654c1234d977e6dd283cb5b5205a7445d40e60afa2426906ca740f4403e933f9251c1 SHA512 20d1e7b4e68acf6d81bfc92ca80b7c5cd9ba1f4b0bb8dcc2794bc1ae198985dcb2d73ad9175bc353fd416d07afdd7c0ba65045fd0630d502edda281fe1ab9003

View File

@ -0,0 +1,32 @@
# Copyright 1999-2019 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"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/aiohttp-3.3.1[${PYTHON_USEDEP}]
>=dev-python/wrapt-1.10.10[${PYTHON_USEDEP}]
~dev-python/botocore-1.12.252[${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
}