Bump zigpy

This commit is contained in:
2019-02-21 17:36:45 +01:00
parent c229a3b8b7
commit 7001546090
12 changed files with 180 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST zigpy-deconz-0.1.1.tar.gz 7643 BLAKE2B 2728fc03a22d84e6dc5a76d63d161f3475d5b282d0e1bf74787bc8c6548b6c7eedfb6a279ba917a9eb32543aa075290c616c0108b21efda3ac3ced0622453e40 SHA512 6c4a45f3664be5dac10791c60c622a437f0faadd1a4dcaf820300fce375b9e2cadedad1d76b44b204d194c9825560fcb575bb42835fbd74536e35dbb84fcf568
EBUILD zigpy-deconz-0.1.1.ebuild 701 BLAKE2B e2bcc77a93109b8b59f49196bd7fb7bd2abaa752ee38ad676b5eb8590bdf0a73f4e9fa6ef9278014a652ec085bc3e5c67e4b3bf55903fe880dd56246004bbc67 SHA512 3fa10a62be6ce1b992f6efbcc792f48a6d930a5e94c8834089dd83d3153068b16203d55e3c052fc14b6d3b503360d325687ad335cce7bae46216f46812ad7576
MISC metadata.xml 364 BLAKE2B d8838e612f8a6d236d6915b1e07f7cb5845309990cb2d7c0658305fa591aabb81939f1491ca3d1260779a2920af0b0927f90c63488a3d2546d1348eeba23e0c0 SHA512 f0a75125cd661d568a2d08f9394c23e10a84b97ae40341b5ae3c34cee58400df81b372e14ed0046d2083ebe63945ef6ec5441dc34d9a8c7a79074e0bf0355c28

View File

@@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">zigpy-deconz</remote-id>
<maintainer status="unknown">
<email>schmidt.d@aon.at</email>
<name>Daniel Schmidt</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v3.0
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="A library which communicates with Deconz radios for zigpy"
HOMEPAGE="http://github.com/zigpy/zigpy-deconz https://pypi.org/project/zigpy-deconz/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}