bump wled-0.2.1

This commit is contained in:
Andreas Billmeier 2020-01-05 09:15:03 +01:00
parent a284c10e33
commit ff2a0fb15f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* add elgato-0.1.0
* bump elgato-0.2.0
* bump adguardhome-0.4.0
* bump wled-0.2.1
2020-01-03
* add gios-0.0.3

View File

@ -1,3 +1,5 @@
DIST wled-0.1.0.tar.gz 514419 BLAKE2B 3e484d64ebd7d755df94586cd2fe4aa82190b2cc03c687a7fd5c956f17ed29e3120ac570e2843c851baa2d9c5d1bca6f6278e57cccab99ab69ccf30ee2dd7f33 SHA512 57e70bc97b5fc2c876d1ecd5973cde3439905151ad2f819948977ea917f969f36ee2df927d2d046db900502ae579b9d91a93aae7e38a051164d030f525eb1800
DIST wled-0.2.1.tar.gz 12136 BLAKE2B 63ae461257175333dfb719490513d79e3657dde24b30fc5365fd78921bdce2511ef67d9e9b77fb717e77a4077d53f6c27bebf33a700ad916396f63371d637929 SHA512 a0565e6dbde96e1593dd5ef1a7bef963e5831ec295f831056c0a0f7ca6a2954d199b7d886a090ba4e75dc6c14995d9e93f3d84e37ec63528b8919f3fff3423c0
EBUILD wled-0.1.0.ebuild 771 BLAKE2B e1d4118360ada24266b09008b90e8d092bce34a116e8651c13598ba6ab2cbc33d6eddd5129b97b054a1af13b58a6e5c3b5f4acf707087b60b7ac761b01c68b09 SHA512 ed726643a7f5d147f76df52c33bd87d44571b97b0633aeaca016a3a4daae32f10117303bfc513902ddbf99c54e3b5a9a6fa0f5fbe1c17b108cfaffc6d6973229
EBUILD wled-0.2.1.ebuild 771 BLAKE2B e1d4118360ada24266b09008b90e8d092bce34a116e8651c13598ba6ab2cbc33d6eddd5129b97b054a1af13b58a6e5c3b5f4acf707087b60b7ac761b01c68b09 SHA512 ed726643a7f5d147f76df52c33bd87d44571b97b0633aeaca016a3a4daae32f10117303bfc513902ddbf99c54e3b5a9a6fa0f5fbe1c17b108cfaffc6d6973229
MISC metadata.xml 458 BLAKE2B 205bb52da48dec70bea242d2216b8c11cce751ae771bfe5bed129cb2489da3dea40aa88d8638a1fc1baed1a0c810c77e74d6c27428b20398f7631b63b3e501b9 SHA512 b6d55f04b9dfd8b408a487912e436173d548d606b1afc31a262dd2db6881f6937eb96f739fedb8b24caef2ca7c58c2ae653d695fcbcf945b870656b52caf9dec

View File

@ -0,0 +1,33 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
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
}