add pynanoleaf-0.0.5

This commit is contained in:
Andreas Billmeier 2019-11-23 15:42:42 +01:00
parent 4335498d04
commit 6710a3a699
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add pynanoleaf-0.0.5
* add nad_receiver-0.0.11
* add mbddns-0.1.2
* add pymysensors-0.18.0 and get-mac-0.8.1

View File

@ -0,0 +1,3 @@
DIST pynanoleaf-0.0.5.tar.gz 3001 BLAKE2B f787012a53071e6c3fc68fb0560b66ecf7040316fa183bc2872051df271feff447b8040a7b6c9778c4e2dd2d01f3bdad3939b278d0226dc1a01606a984d6c6d4 SHA512 249c1928154065b677a4e00ef631cbde153c392ecd4f822d6a6134a4f81fc86f83d26297da725308674bebe7b57760c6d36c97c55c139f12a63ae53442b4497c
EBUILD pynanoleaf-0.0.5.ebuild 705 BLAKE2B 2d28d015a9aa6c8a7ad38a4f06e9b8e8dd2dbdd2573b07d6509e43fce1859e8bc44c3cd29decc62a6d95f4c65e58deade7e2b4a25576b7c4010f9bd2e03266e4 SHA512 a8fa5269f226a27fb28625f19fe96860ff594d8fdaa667c5cdf74a8de6df86f3a748822277a1dc5e85a6b200162be9f128ad9a49dea2ee2b504e31d66aad5dfa
MISC metadata.xml 477 BLAKE2B c8096f134a666c1da8d266a2a405e5c41de1ebe4d2a5530b72ec0fbfa7a13d17039d6aea5f744f8cfe4a80ba01a3351e1d84a605e083a3709e021c606b4ae6d6 SHA512 d8e0ef05d7ccbea30d2c74a1d66323f741f8e42eaf8064c1e707b40d3d2c404584af02417e8d053ba5f74c0608ff8d235b81de9bb967b5aa3a6d9e0a8ebe2eed

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">pynanoleaf</remote-id>
<maintainer status="unknown">
<email>pynanoleaf@marco.orovecchia.com</email>
<name>Marco Orovecchia</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# 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="A Python3 wrapper for the Nanoleaf API"
HOMEPAGE="https://github.com/Oro/pynanoleaf https://pypi.org/project/pynanoleaf/"
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/requests[${PYTHON_USEDEP}]"
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
}