add zigpy-xbee-0.12.1

This commit is contained in:
2020-08-30 13:38:59 +02:00
committed by Andreas Billmeier
parent fb0cd53eb4
commit 1e48fc3e93
4 changed files with 50 additions and 0 deletions

View File

@@ -30,6 +30,7 @@
* add requests-oauth-0.4.1 * add requests-oauth-0.4.1
* fix PlexAPI Manifest * fix PlexAPI Manifest
* update zigpy-0.22.2 * update zigpy-0.22.2
* add zigpy-xbee-0.12.1
2020-08-26 2020-08-26
* fix https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/18#issuecomment-124 * fix https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/18#issuecomment-124

View File

@@ -0,0 +1,3 @@
DIST zigpy-xbee-0.12.1.tar.gz 17414 BLAKE2B a4af2f649ee62809b89c390996c8d387da2bb3a35928770d53d4446aa3eb5c39fd37c511f2cfb1e742d92458fa54318e4c6f03217efdd47927faa24a4a94c8a3 SHA512 36892d3c7f822f55c3dc4e18c7b8e6110900f4915183f00dc0283189b73a6f12d0f18c29d9102eca0b6db2e25a1a215cdd58584d6b74aea281880bcf559d7a62
EBUILD zigpy-xbee-0.12.1.ebuild 793 BLAKE2B dfd16bfa2a9c586f69dbb86c837c53f89d4a10f4d6842d7392d701e48bddb3b9d9e4a705d8f978d0d1444aa3d65150d5853f55ec4254e68515722a346d6e7d65 SHA512 86914ffaec3c563110a29d6667363dadcfc6c926908f6783836376138028048f8970efd3d88e2cfb19e7b7a5ef415cd2a58256f99e50b9a94a98b8b7271d6756
MISC metadata.xml 454 BLAKE2B 5b1741fae1fa1322435b6315cdb72bec69e373f6138e5dcb26c86337fcf145114969fbd343013c09b423cdb9dd9d5d3a6f9e509c3aead231098c56c8500c00ed SHA512 507890d1ced3213f2fb7e8aa27a9e98eb4d7f0320232abe7f313c6f8d798afad1742ac98cfefbf3e495fa2d14b1e55f12a2b750a5547270cf0a408b62b9b720c

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-xbee</remote-id>
<maintainer status="unknown">
<email>rcloran@gmail.com</email>
<name>Russell Cloran</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_{7..8} )
inherit distutils-r1
DESCRIPTION="A library which communicates with XBee radios for zigpy"
HOMEPAGE="http://github.com/zigpy/zigpy-xbee https://pypi.org/project/zigpy-xbee/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/pyserial-asyncio[${PYTHON_USEDEP}]
>=dev-python/zigpy-0.20_alpha1[${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
}