From 4d4befd149a0303d9d71825c1df69bc46b8f86cf Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Thu, 7 Oct 2021 06:35:08 +0200 Subject: [PATCH] bump aioshelly-1.0.2 --- dev-python/aioshelly/Manifest | 2 ++ dev-python/aioshelly/aioshelly-1.0.2.ebuild | 32 +++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 dev-python/aioshelly/aioshelly-1.0.2.ebuild diff --git a/dev-python/aioshelly/Manifest b/dev-python/aioshelly/Manifest index 74785f62e..ea0ff7a70 100644 --- a/dev-python/aioshelly/Manifest +++ b/dev-python/aioshelly/Manifest @@ -1,5 +1,7 @@ DIST aioshelly-0.6.4.tar.gz 12259 BLAKE2B f7e4a52ae98f5fcd3ed30bf59c262ed55fe8b59f3fa83a1e6075187a8bda752dbc5bdcae893df2765f339139b02d9ecd6feb077bea0060604b9f720630bf6906 SHA512 d5ce083ec26c5472e494c07739b72b8b57debbaaf7e2bb5ee028db6886884ddf4c345aeb2c087422217d57da93bb83f1383cb5b8219a2e93f08a587edb054fcc DIST aioshelly-1.0.1.tar.gz 17068 BLAKE2B 8991770c8c0d4b407bf870eece10d79b820e3c0c380ccc9c5caf5c8629713937e52a0acd4c84941d4b730bda0c485b53680bd9d3aca607288d044d0e1aa24b3d SHA512 7eb2556c9ec9d0a99ff7cd4ec00ca7dc90131697ab59a57ece583d6da7836a796a3ded278106334f83755cf1b15b78d1afd817ccd683e7bf642d0049ef7f572f +DIST aioshelly-1.0.2.tar.gz 16871 BLAKE2B b206e156096fd360536a0466198931b943c77f55c21a0eb9a4f071fae3ecf582cb0c9a4e8572bf027a98e6b782c366efd6beb422763afefe4298b21f934d9246 SHA512 d496cddc52613c6febac8fff1381d64b402c92ae3ea4b30766d1a7ad55a491d962555d544df475960376cdf9817156319909865c936d4628a1976869ee11a2e2 EBUILD aioshelly-0.6.4.ebuild 751 BLAKE2B 8229b38503c53b785eb5992d4bc6ab372751edf0fad675d9756051fa60d9fdea6742505d1da698bb7b2889389ac6848f2362d88bbd367c08ce4670762d94d80c SHA512 090726c667f30d7255382785b6e05a0671906f8730d10ff4cba59c186fcbb3b6e57a46ce65d824270413d02dd354a1bf6c02ca845b16c626e803883e2221fb54 EBUILD aioshelly-1.0.1.ebuild 751 BLAKE2B 8229b38503c53b785eb5992d4bc6ab372751edf0fad675d9756051fa60d9fdea6742505d1da698bb7b2889389ac6848f2362d88bbd367c08ce4670762d94d80c SHA512 090726c667f30d7255382785b6e05a0671906f8730d10ff4cba59c186fcbb3b6e57a46ce65d824270413d02dd354a1bf6c02ca845b16c626e803883e2221fb54 +EBUILD aioshelly-1.0.2.ebuild 751 BLAKE2B 8229b38503c53b785eb5992d4bc6ab372751edf0fad675d9756051fa60d9fdea6742505d1da698bb7b2889389ac6848f2362d88bbd367c08ce4670762d94d80c SHA512 090726c667f30d7255382785b6e05a0671906f8730d10ff4cba59c186fcbb3b6e57a46ce65d824270413d02dd354a1bf6c02ca845b16c626e803883e2221fb54 MISC metadata.xml 462 BLAKE2B 07bf3f330aa9e06a90c519f740253a97d2fb8809c7c6c427674e43bfacca3dae9bc57a1aca9d66445f16df7282feded629d843e3bf1f3f7db11b1205ee73f82c SHA512 bc9aa87250eaf1d20b59d94f3c9d6b945671cd54003ef0f1cf2aeb6e190b24813c261fb0cc8cd2e6ab529b40ce0e6a346d244e8dc1b5a340a300238b09c4b677 diff --git a/dev-python/aioshelly/aioshelly-1.0.2.ebuild b/dev-python/aioshelly/aioshelly-1.0.2.ebuild new file mode 100644 index 000000000..99984cdb4 --- /dev/null +++ b/dev-python/aioshelly/aioshelly-1.0.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Asynchronous library to control Shelly devices." +HOMEPAGE="https://github.com/home-assistant-libs/aioshelly https://pypi.org/project/aioshelly/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86 amd64-linux ~x86-linux" +IUSE="test" + +DOCS="README.md" + +RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" +BDEPEND=" + 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 +}