added zigpy-znp-0.1.1

This commit is contained in:
Andreas Billmeier 2020-09-08 01:10:56 +02:00 committed by Andreas Billmeier
parent 54ca34ca1e
commit 0d5d2d3b37
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 55 additions and 0 deletions

View File

@ -29,6 +29,7 @@
* update zigpy-cc-0.5.2
* bump zigpy-zigate-0.6.2
* update zigpy-0.23.1
* added zigpy-znp-0.1.1
2020-09-06
* cleanup ruamel-yaml, only 0.15.100 is still needed

View File

@ -0,0 +1,3 @@
DIST zigpy-znp-0.1.1.tar.gz 104179 BLAKE2B 9008d7ac4db15e9726ee2c7b22c653d581b0b29b43934018709bb1518793b53390f8b02fad1885b7a0b19b22678933b89d89c1ba29462fc95204609a26b49627 SHA512 ce3a7fc9732bae6511a6ec1eea6045a3540201eba80fc43570ac0b2cd1da932548b36c4129756965f02b6ae113be17f58a77a4761de436bffb7de19bd1675e48
EBUILD zigpy-znp-0.1.1.ebuild 923 BLAKE2B 601c29b20f8a2f8e077dd599ad781fbaa22794f114f43ab668c8838b7549917901889f043f249d12324ea796fc3f2a219441d066b8f926d038f1a3cd40306496 SHA512 c887c1c69e5b603a6f66d208310dee4f8f4be07b82ddf4ebe945f614c04d63f45a5cf4c95b1c524d8de721819232ebe11319d52b988bef50d8ed57a94634fad6
MISC metadata.xml 462 BLAKE2B 123f7f058af7f8a40d1565cfaa31464e3c7bb5130d4102f48fa95240853cf144b75c40c03017f256cc693ac87ec4b5f0674743bcfc43c00e1cd082d3feb55a25 SHA512 b9e5d548118c8986b457699c02168c64b4d39388499a19a8dd04faeb41c259e8699796498722279d9122fd3ac031b16a3f88f700a521439587a0ef7e3745c60b

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">zigpy-znp</remote-id>
<maintainer status="unknown">
<email>alexei.chetroi@outlook.com</email>
<name>Alexei Chetroi</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,36 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="A library for zigpy which communicates with TI ZNP radios"
HOMEPAGE="https://github.com/zha-ng/zigpy-znp https://pypi.org/project/zigpy-znp/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="pyserial-asyncio[${PYTHON_USEDEP}]
>=dev-python/zigpy-0.23.0[${PYTHON_USEDEP}]
dev-python/async_timeout[${PYTHON_USEDEP}]
dev-python/voluptuous[${PYTHON_USEDEP}]
dev-python/coloredlogs[${PYTHON_USEDEP}]"
BDEPEND="${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
}