add velbus-aio-2021.9.4

This commit is contained in:
Andreas Billmeier 2021-10-02 14:55:51 +02:00 committed by Andreas Billmeier
parent c24015fece
commit e91ce23f35
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST velbus-aio-2021.9.4.tar.gz 76459 BLAKE2B bb56d3da973f85388cdc6e3dcf9beb89f4d249e9ed4ca72b9c9d2bd414d668a556dd3bc715f0e2c2f4fe877cb4eda7f6748378e0f6d59d5b0ddbac858b2f9f64 SHA512 b920e593cbb0b1526c734d6f584ca79294d38f941328ca539a180444242d97c2fda832f19caa9d6b9f152e36a08eeb75cfeef2e4197e780f5d077313efece0d4
EBUILD velbus-aio-2021.9.4.ebuild 758 BLAKE2B 7787258cb8115b49ec13938655dddedbb5740a1ca06acc693c7844da36a659bc1c9e87385760bacb2564d4d153db99f66f7640cd3e365042e7f7690219b722db SHA512 25f8f617bdda4d9e298c31a8b82ee1e712af8e2a3e536c5ca5f4a1a8eb8a36e6054fee31943979dee5da299e11643957e5eb24654cba54df9c5249eac04ec8de
MISC metadata.xml 457 BLAKE2B 99ce364b8aa6641a83c716c3a1bcfa904f3ce2aa0cae0cbee42678c8c291bae42c32f66c9ad289b415b4f0fc3029e490321d232b9de7684aad4ce38d0b84366a SHA512 00158cdcf8b8c3f596fba42d981f168fab091429b3913adb4bd18a010d1956b84b20d980edf2796be9ccf796ff03421c86796c03b14749c047e52cc0305a0415

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">velbus-aio</remote-id>
<maintainer status="unknown">
<email>maikel.punie@gmail.com</email>
<name>Maikel Punie</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python Library for the Velbus protocol based on asyncio"
HOMEPAGE="https://github.com/Cereal2nd/velbus-aio https://pypi.org/project/velbus-aio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/pyserial-asyncio[${PYTHON_USEDEP}]"
BDEPEND="
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
}