dev-python/aionanoleaf: add 0.2.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-01-29 21:18:27 +01:00 committed by Andreas Billmeier
parent d3c37d7366
commit 6d564aaf8c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 4 deletions

View File

@ -1,3 +1,5 @@
DIST aionanoleaf-0.2.0.tar.gz 23447 BLAKE2B 7a81ec93a8261756c6a142062aeb52515b1596af63c39368b3ff9c8e0227e5eb3982f81c2ddddea3cd5b54256a199ca3de8085aad3a68a8f1e66fcb7220b07d7 SHA512 5ddddc8b8d69abd8e256b9b3c8f2e01f125b90cde56074219970d2be941c805903cdc293ec30eba43459c4368f42edd245d65f7a94834504e4f5c138c84d1bdf
EBUILD aionanoleaf-0.2.0.ebuild 704 BLAKE2B 51585da4c208cc7e15e2212c396d57113cb94a0393f9667e62e1d7a71012e2e231c4767f681d8e9364ba17da7f70137d85bf17501b9d8449a83a6995f35e2504 SHA512 14f79b4c2fdf3707b18361649a17d811a9b47fffbaea2ed46161d8466dfb955f9e3f0ca8b4eaffd1fbaead5a57e269172310daa1cf3067c3b58b3afb478077fe
DIST aionanoleaf-0.2.1.tar.gz 23760 BLAKE2B 39ae52ef46d394a5813a89ea5b3be241318c8a35f575254c78f88845c0a3d4d3421f32eff6dfa4d778a7378e4a6b8535bfdfdbdc4eaf5e36f5b7987f8c4f3c8b SHA512 41768887823fe079277b57d381b94fe902c4237b6709313026432c243943a6b0574a41f42662d0eb4035fe39a4cbff068836c0a9cc9e7c175ffb39c607439fdd
EBUILD aionanoleaf-0.2.0.ebuild 735 BLAKE2B 7286d815c0c06c4344216c9a3ecf48fadc1b8b38f5b2d3d5c65a7f6576c79824f0a5dc390e1a0df40e619b35147ac35f5a8f6d0dc813b1372a3b64f7521b02e5 SHA512 52768f9dcedf192f141183ae111275dfa333ec3d01a57adc160ad75dd6221510d0fae89f607be7836acf86a143649a83f9d3d21aaa5e0115a51c43f2c4648064
EBUILD aionanoleaf-0.2.1.ebuild 735 BLAKE2B 7286d815c0c06c4344216c9a3ecf48fadc1b8b38f5b2d3d5c65a7f6576c79824f0a5dc390e1a0df40e619b35147ac35f5a8f6d0dc813b1372a3b64f7521b02e5 SHA512 52768f9dcedf192f141183ae111275dfa333ec3d01a57adc160ad75dd6221510d0fae89f607be7836acf86a143649a83f9d3d21aaa5e0115a51c43f2c4648064
MISC metadata.xml 524 BLAKE2B 7dcd2ff12f2085ed0d85ee1674b79f57c375fd56876bd526c884d8d70f46afb8d16d1dfb6b66247ca1cf059c20dab1c187776676eb1f8e7136bb0888fb4f87da SHA512 581c3e0bfa76dbae8401fcecdc7af04ef7e42997f816083fc0050ab54019c9770a620f8b47714d5d69aff1eda30fc1dd8b4f2fe6d2366ab66b8987bcf878624c

View File

@ -1,10 +1,10 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Async Python package for the Nanoleaf API"

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_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Async Python package for the Nanoleaf API"
HOMEPAGE="https://github.com/milanmeu/aionanoleaf https://pypi.org/project/aionanoleaf/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3+"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${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