dev-python/aiolookin: add 1.0.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-01-08 09:10:36 +01:00 committed by Andreas Billmeier
parent 5bd56eba64
commit 8878ef84fe
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 35 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST aiolookin-0.1.1.tar.gz 9621 BLAKE2B 798a18bfa737914b8a90b057b41bbaf0c73d36916c57266f3184993587441a1b193f981d26d8962e7f7493848590a5520f05235f9ac1853e877eb3eafd144008 SHA512 e1da309a232e5b99041a0ade93171e4819fc94b877e8203d83813c98889a3aa3080847dc0106f94a2b06eb19e6f6a7d20307c7994bac577e2546246329c087a4
DIST aiolookin-1.0.0.tar.gz 10009 BLAKE2B f98a412550e1e87113de1e685c6228bb0a2cdcc23aa68bfe70387be1d7b4220f19f56a1a3c3705f3425aa1e4761098af3e37325cf6daea54b0c44bcf8a640a92 SHA512 f655025ab877b5e8cffa57ad7b5e27711679313232e793d3c842b2b3fc14de93eb936cc0e1a164dacd7dae9b56329fb64a260605cba986574b771a0bc6a47355
EBUILD aiolookin-0.1.1.ebuild 729 BLAKE2B 214409bd3ab64fbcb48cf1d9e9a0780e2ac57ac0fc4367e0e9df2ccda863c693240558000bb613fc7580c2b457d5f8fe9db89f5cb575e1d858acb00cb7611d49 SHA512 c42de33dbeddc0d68059d76e27327a0e1ae973758cdf91b38711c47eabf57fb13a5cbee060fa31b7d234af17efcf06d198eeedb6076c9ba213c1ae8244ac9987
EBUILD aiolookin-1.0.0.ebuild 760 BLAKE2B d982d6ac9f0e32edc5484e1b9f58e928dc8611efc6311ce14857513230f2b2b5987169b8213c8bcef70ce7b1c0b421ab2516f9d3ed52d73f0bca106b6b84a5b4 SHA512 822eb4780c9342d3a62d6616ea071ea08270d78804d44546d728d21da4bf8ddd712dda2d718df22b7ca179b976f2d767f297d25483c12863fbf07c32b73d882f
MISC metadata.xml 510 BLAKE2B c716f8c03870f7f059a0159a849e86d08d51638228020da9bc4e1c01dcd823606cc48feb29cf1cb58ee9f54e3288a5f70c62aadae9c387305255300ebd7b27e0 SHA512 079ff377b118ad3f97e7185764ed8e58c7afaa2d48728fb9982f3ecf8445ef365333f3cc207d33a4debab9e833c5dba86316d9c0875e8f72707e2a6047306476

View File

@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
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"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest