add xknx-0.11.1

This commit is contained in:
Andreas Billmeier 2019-07-12 07:49:37 +02:00
parent 516b146cac
commit 5e2ac6032f
4 changed files with 83 additions and 0 deletions

5
dev-python/xknx/Manifest Normal file
View File

@ -0,0 +1,5 @@
DIST xknx-0.10.0.tar.gz 53986 BLAKE2B 83adc379d9d2e4f1539b63dfc28f866591e9cd42387cb5d009791deae68e27f98f458206c7897ef4c5993f33b5deea0b778a61611092920eb32a610a8929fde2 SHA512 9d0f2d5cbf7c40f6366bdd0f44792c831b0f1e2f4428823aaa8d9b50cee58ccd1ccde3b052b588baba3d13621e1382e88487ece254a1e3d3cad418b609dbb5ad
DIST xknx-0.11.1.tar.gz 56670 BLAKE2B 43fc56d7a57e2709074564572a88d8232dfe5a7b1380b903f66654346e33a8bde2aa5eaffdfb17958763cfe1873d83e2e8dc1411337b43abf7db5b1f24940350 SHA512 764685fd4d8725959280613216b27740a800dfe3fd2832c76f379766dc9b63570f947fecb3e5977f70a9c81a30809415b39c117370366b8a0fe81dd524533adf
EBUILD xknx-0.10.0.ebuild 777 BLAKE2B 0a0f45bf396829f931926ae4e788b5b78cec567d1c3cf6b3d81ebcd896ecb700943db57aa992435771202b1091ced0e23fe3f3ac116b51ee52913d991b71e306 SHA512 66261c3aca32660d72edf8f52db65af1d69d76e515acbdc03638477c32ee53f19d435cbd9e08d9dc770fd34cfa93b084d406f9758b46133202d748a45bb6d4f0
EBUILD xknx-0.11.1.ebuild 777 BLAKE2B 0a0f45bf396829f931926ae4e788b5b78cec567d1c3cf6b3d81ebcd896ecb700943db57aa992435771202b1091ced0e23fe3f3ac116b51ee52913d991b71e306 SHA512 66261c3aca32660d72edf8f52db65af1d69d76e515acbdc03638477c32ee53f19d435cbd9e08d9dc770fd34cfa93b084d406f9758b46133202d748a45bb6d4f0
MISC metadata.xml 462 BLAKE2B 6b2d2915e10b0d6b3c7cdf8fd1a4748d6406b081618e56213c57501876d9e1f61ce55096c8aeebb0cb9a6c857fae7bc8f0f816062dc39f3cca04e544e33d453e SHA512 cf680df6cb08442f6c8739b07d57651a538d043397d83270d3a16b55bc3db3c3c945ea389e0dd354e7cab43648a26d8160993d6a075bc0178150f490d169be80

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">xknx</remote-id>
<maintainer status="unknown">
<email>julius@mittenzwei.com</email>
<name>Julius Mittenzwei</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="An Asynchronous Library for the KNX protocol. Documentation: http://xknx.io/"
HOMEPAGE="http://xknx.io/ https://pypi.org/project/xknx/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/netifaces-0.19.9
>=dev-python/pyyaml-5.1"
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
}

View File

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="An Asynchronous Library for the KNX protocol. Documentation: http://xknx.io/"
HOMEPAGE="http://xknx.io/ https://pypi.org/project/xknx/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/netifaces-0.19.9
>=dev-python/pyyaml-5.1"
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
}