bump aiolifx-0.6.9

This commit is contained in:
Andreas Billmeier 2021-01-31 11:58:41 +01:00 committed by Andreas Billmeier
parent 5928c8adc5
commit ea372e3003
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -8,6 +8,7 @@
* bump zwave-js-server-python-0.12.0
* bump axis-43
* update pylutron-caseta-0.8.0
* bump aiolifx-0.6.9
2021-01-21
* add scapy-2.4.4

View File

@ -1,3 +1,5 @@
DIST aiolifx-0.6.7.tar.gz 21398 BLAKE2B fa763efd0229197b4c12ec946475631db6664a404f37b5ed908da0a595190f99f16d1f48245a2135388d8a53edde800f66022129867025e9075bdfb6f6177067 SHA512 898009514520989bee13620de172558cb943dca0e373fa6d4d557a3ccb2f485a3c599716ee244f9f02f7f48bcad9ab340696bb560317a9f0e07108909ce8fda6
DIST aiolifx-0.6.9.tar.gz 25484 BLAKE2B 78a3d99ba5f2dc7c07870d7c204e4d149e6a8c9a10beb03400f1d3a74cddfd4cd17e9a9feec0dd737f09dc850fafef3291ee642501427da587061a629fdd48d2 SHA512 b6a1be577db01b23366e55a0e32e912db3e439eadcf11ba84e3a76b28f3fe0306299b57f652e1993129d6c6cdaa95facc4ef5463f44d2fbc7db80016d08f681c
EBUILD aiolifx-0.6.7.ebuild 786 BLAKE2B 8bb7ddd03c0c13ca58d383bfd743c18940b646108775e063e328625b59270a625c65a43e4c8e512dc818cc3e1c3702d7cc485db77fbb666791620e14cc147b1b SHA512 b0674589cca74dbe5930b5e42af18cacbf68737030034ffb89f6f53198d2a638e26d6c4477794f3c6b1b0470fff98e82d207b422877c8c1a6a24237f2b97a178
EBUILD aiolifx-0.6.9.ebuild 803 BLAKE2B b83771fbf45647aba024617c594ef5d8651bccbcd4a875f3c01221905200df2cd5337715987dc8782ac81f52e632fcf9362b251e07cc418ef236d10e9c9ff72f SHA512 d2d33a2139626ae8c3c533e2ddb85ea1862dac2b8b3baeb7341962e6add816a4f1a0e9010ac000c5d1cfff05358993d8f830adc2b6bf52adea017b4d9bce9ec8
MISC metadata.xml 456 BLAKE2B 5febca5c4da185751d05d4f05de0182d8ee1eb770f16e2827c011057c5e8e4b879744361f40341ac0d333fcb55b913bdfd55b58c014bcb64e7ae4cd1f2102da0 SHA512 5b0c586114ff2c5c188c5c66905dac8ea0b666dd59b0c65e8faebca72e45dcc88acb5ec46bc59d49f2535c79aa4ba37630677ca07c434c6b3673a59a2ea6baf4

View File

@ -0,0 +1,33 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="API for local communication with LIFX devices over a LAN with asyncio."
HOMEPAGE="https://github.com/frawau/aiolifx https://pypi.org/project/aiolifx/"
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/bitstring[${PYTHON_USEDEP}]
dev-python/ifaddr[${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
}