add pyControl4-0.0.6

This commit is contained in:
Andreas Billmeier 2020-07-25 09:55:55 +02:00 committed by Andreas Billmeier
parent bc47359039
commit 7d400ab25e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,6 +1,7 @@
2020-07-25
* bump zeroconf-0.28.0
* bump pychromecast-7.1.2, remove many oldies
* add pyControl4-0.0.6
2020-07-18 homeassistant-0.112.5.ebuild
* remove typing

View File

@ -0,0 +1,3 @@
DIST pyControl4-0.0.6.tar.gz 7572 BLAKE2B 25313361e03a81facd4c9534952ab3088e1dbc04f6be21beb0289437d3cdd7ea9029a2c5187381f902626a51420b22970f394794b14e9c328bc647e4e091ae09 SHA512 b2cf2da6200c9858458081fe123020e6a3af81a8bc9e376dd0274be341ab80a3bb5d7ca2e473f75d9897fec3538a3d003f91003d2b46238ed482da7287983850
EBUILD pyControl4-0.0.6.ebuild 791 BLAKE2B 756c96e1a79421a842340d1290357ab6274d4e620821d1e8edf21cdfdf8026007f95c327bb8b458b89de328a481636eada1518a8cea2adaa65fd60ba92b1d849 SHA512 a7f844bbeeb5920b2934eb8b147aceaec0d77e8f301e91563cb0bef23107d1af3c2de854c3487521fd502c03d4e71e61af1308097c924dea7f8e95cbb1d07347
MISC metadata.xml 477 BLAKE2B 4f8f77ecdcf7da86285fa568c1dc32d6b19086779d893b1dd3bb88d496491d62c5204edd8ab6248c8006c41f7bb5a3a46747411e9aa365d960bc164ab17aac12 SHA512 9daa37aaf30bcf70470d4dfbcfc44f0023678c8ed1729ee0dccbf3b2a8135adcf8ca70c69ba6fd3ac3352ab2311fa8d1620a4419d5aaff75a23337d1010de75d

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyControl4</remote-id>
<maintainer status="unknown">
<email>26829131+lawtancool@users.noreply.github.com</email>
<name>lawtancool</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python 3 asyncio package for interacting with Control4 systems"
HOMEPAGE="https://github.com/lawtancool/pyControl4 https://pypi.org/project/pyControl4/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/xmltodict[${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
}