add pynello-2.0.3

This commit is contained in:
Andreas Billmeier 2019-11-23 15:48:05 +01:00
parent 8d33a27a17
commit 6e1cc153a6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add pynello-2.0.3
* add nsapi-2.7.4
* add pynanoleaf-0.0.5
* add nad_receiver-0.0.11

View File

@ -0,0 +1,3 @@
DIST pynello-2.0.3.tar.gz 7683 BLAKE2B 13dfc2422e594277c5c471ef3eab12197808c1cac630842cae52c2b03cd7cfcb8bc8c83cb7ef392d5d5fcdc182d9591c8c2f47f61ffa998dd731a2ddfab7b11c SHA512 6330f95ca21f75ab45e3929e011e70206210725e12739e401489e01797fe07bdfe855f11e49d635496c4dd1a343c263ef37a88f3f1537b17a6836b8a2ed9d017
EBUILD pynello-2.0.3.ebuild 799 BLAKE2B 9f70873aced16978a5bd0dea2f69988983ff15f82532d1a949e7085b57f64d3ebcaf835c0c300d0731ee00d95da584a6ee8cd34cb26f6344c7a12d56229febc3 SHA512 6afad7cdee5bcff425549f4a41de8977c533d0b897f08a688050c2ae74d6b68abad2c802911b136b472fa94b4197a188d1d906ca97f9e4de6173e628bfb835da
MISC metadata.xml 460 BLAKE2B 79b693c3a92fb4050332a9ae15c550e07dfd86ca93f1433ed5875733db719d483ae9bd08e2e7e6428cee6d12e74184ea13cb3350081b8f020d3b0d0260f6e2e2 SHA512 051440e9b3ec8817192c63bc7fa05424f263b4adc129676c55309652d669564dd32522d24335b5babe610bf6a07389a0ff1af386b16428df8b474c3f7f684572

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">pynello</remote-id>
<maintainer status="unknown">
<email>philipp@schmitt.co</email>
<name>Philipp Schmitt</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# 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="Python library for nello.io intercoms"
HOMEPAGE="https://github.com/pschmitt/pynello https://pypi.org/project/pynello/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/requests-oauthlib[${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
}