add pykulersky-0.4.0

This commit is contained in:
Andreas Billmeier 2020-12-04 00:40:28 +01:00 committed by Andreas Billmeier
parent 024daa2732
commit 932663db46
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -11,6 +11,7 @@
* bump python-openzwave-mqtt-1.4.0
* bump home-assistant-frontend-20201202.0
* add gTTS-2.2.1
* add pykulersky-0.4.0
2020-12-01
* bump colorlog-4.6.2

View File

@ -0,0 +1,3 @@
DIST pykulersky-0.4.0.tar.gz 10807 BLAKE2B 64045735d5ddb5f6a7896e3456c51eb8c58b378b5bbc34ca03626d84cf7d0b901d1d01c6e23a4006b06c6e24c1e08fefa23fae335484acb366a5535c53007696 SHA512 543e92b9a8ccdc0969d3e0d6fcf43073639e36bc87cec8ba81aded82df5ca3a5bbd2fbce33011cd95e997f9b6e7b40cfca72c454f55e1045b6c7fb4e6d2911ef
EBUILD pykulersky-0.4.0.ebuild 792 BLAKE2B 1b796b5b46a98dc67c2887e8905da39f28aff87483493f5cf665ba652b7af4c8233095957b2b75481fb98c6a09e732455139c834704fb226a8179627ff892450 SHA512 07d555b0279e4bee60bc73f1534c6ac4269c2be8b6074913deb2261d453f6dcf169dd7ef531e97f09d9f827fdc7f7e251134a12853637be88edb603296d3f095
MISC metadata.xml 449 BLAKE2B 299c08375bfa75d51156897f6a3282720f50ece182614333d3531920ec3190169b2fb924c691516f637ebbbec5ce5666156d74355540f2320d9f28ab5185e824 SHA512 4a207a4f60aebd84a43814aab2716ce9d299673df6ed2aea170f4bcbdca8930390e377efaf9d6e0c571e9ed15515d6f4bbe08d51c59507eafc51d6f84524e18c

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">pykulersky</remote-id>
<maintainer status="unknown">
<email>emily@emlove.me</email>
<name>Emily Mills</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
DESCRIPTION="Library to control Brightech Kuler Sky Bluetooth LED smart lamps"
HOMEPAGE="https://github.com/emlove/pykulersky https://pypi.org/project/pykulersky/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/click-7.0[${PYTHON_USEDEP}]
>=dev-python/pygatt-4.0.5[${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
}