update aiolookin-0.0.4

This commit is contained in:
Andreas Billmeier 2021-11-20 15:57:31 +01:00 committed by Andreas Billmeier
parent 32a2b8fb73
commit 0a7d77ec63
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST aiolookin-0.0.3.tar.gz 8578 BLAKE2B 2bea955f0e29d9f1d20261f19a63c8fc1eb00d380ae2a29e89d13ae85057333e2845c902281a28ce19e6b2d3173a8a009a8621aa3a612c126f63c27d351cb72b SHA512 b0e277f4bccbadad9a6a73d6bd26b44251e469ba2d50039efe3114ad7021184ad2f54579414cd9bae49bae6be364810dec3076c917a183b3c5a90969b45a8ac5
DIST aiolookin-0.0.4.tar.gz 8655 BLAKE2B 7f8f7172975ee9f98c68c93a3a1cdb4e5d4ccb64908bcf905d5e228787e1efb7fbc45a42a0d3717e16e651e01dcb8df5d35bbb2b04a2b38f6693a661ca283ba2 SHA512 31fb462ad4cc523c1b4fefe2ced9535df1ce97e1ffb94253bb07b4775cdfacac0b56cbdba0d72165858ac9037b64c03ce2780887d8cd5e95bb307a5528d8583d
EBUILD aiolookin-0.0.3.ebuild 896 BLAKE2B 2bab18aa5ad9f12c4c70a24457032c8eb585964f60d9091f3634362c2e559e18e73e50d0dab745d014f737d1d9a64f06dee72378be5d5f3938b5dbff02c85318 SHA512 b6c4e5f4341d059210fd6f8e5fd188f33a2db996c67be51690dd739d7ddd18a77d21cd912c69b39d7e45743cb898add0303080733e97bbcac1fd32c6d504455b
EBUILD aiolookin-0.0.4.ebuild 763 BLAKE2B 59fc7458841a33d783a8935ca9cdbfed51f08cad29b0bbce67a4e0e8f346cb30b1d7bb5985decfb7a1635ef9a34bf91419180c7078384939f58449bff7b39d36 SHA512 6f392c85ee19393e660e89b2840493c98ce88cce455ab6512f39c19476facef74ade1ec613ab02dc577c4e3367b40611840a7138bd7a75019bd12d2136308ff6
MISC metadata.xml 451 BLAKE2B 4c75e247158dd2ea8aad213b312846bc7033c7f4a0df80f288618cabc1b84962f08b17b08bd740b68db2553a68a89157cfced88a78632c92bc916d398ef99141 SHA512 7b08acc36a6ab69764750a0a180bd6bb764dd3005471e69b86f2573f2422a015d3d61d94cb5aaf979a4783fcfa88a68c3ff4a5445f4fdbb0326ab55fb45ca88d

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Client for interaction of the LOOKin device with the Home Assistant"
HOMEPAGE="https://github.com/ANMalko/aiolookin https://pypi.org/project/aiolookin/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.7.4[${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
}