add wled-0.1.0

This commit is contained in:
Andreas Billmeier 2019-11-08 00:22:06 +01:00
parent 7bab07cfca
commit 3d3ba05e0f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 52 additions and 0 deletions

3
dev-python/wled/Manifest Normal file
View File

@ -0,0 +1,3 @@
DIST wled-0.1.0.tar.gz 514419 BLAKE2B 3e484d64ebd7d755df94586cd2fe4aa82190b2cc03c687a7fd5c956f17ed29e3120ac570e2843c851baa2d9c5d1bca6f6278e57cccab99ab69ccf30ee2dd7f33 SHA512 57e70bc97b5fc2c876d1ecd5973cde3439905151ad2f819948977ea917f969f36ee2df927d2d046db900502ae579b9d91a93aae7e38a051164d030f525eb1800
EBUILD wled-0.1.0.ebuild 809 BLAKE2B 01a766996638c9d40299bf4a5020ca5eb5901c57d2ca06676e69eb2b353d02ba32a234e17ff63a7c4fdce178f71f6d8c201d4abb3b3d36eb35de697bbde99b0a SHA512 2f582bd37dd65af8d9f92fba42dd94f1a271fc6c365e4b21d7716a8ff728a6af3e8856bcc3ed771a1568c1bb5e351bd6ecc0554d49707994c915ff8c5d27047c
MISC metadata.xml 458 BLAKE2B 205bb52da48dec70bea242d2216b8c11cce751ae771bfe5bed129cb2489da3dea40aa88d8638a1fc1baed1a0c810c77e74d6c27428b20398f7631b63b3e501b9 SHA512 b6d55f04b9dfd8b408a487912e436173d548d606b1afc31a262dd2db6881f6937eb96f739fedb8b24caef2ca7c58c2ae653d695fcbcf945b870656b52caf9dec

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">wled</remote-id>
<maintainer status="unknown">
<email>opensource@frenck.dev</email>
<name>Franck Nijhof</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# 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_{6,7} )
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for WLED."
HOMEPAGE="https://github.com/frenck/python-wled https://pypi.org/project/wled/"
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/aiohttp-3.6.2
~dev-python/attrs-19.3.0
~dev-python/cattrs-0.9.0
~dev-python/yarl-1.3.0"
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
}