add pysupla-0.0.3

This commit is contained in:
Andreas Billmeier 2019-11-24 17:46:33 +01:00
parent 26e15c9111
commit 94f4f57e08
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add pysupla-0.0.3
* add steamodd-4.22, pystiebeleltron-0.0.1, pysuez-0.1.17
* add spotipy-homeassistant-2.4.4, starlingbank-3.1
* update python-songpal-0.11.2

View File

@ -0,0 +1,3 @@
DIST pysupla-0.0.3.tar.gz 2362 BLAKE2B 605deb5bac0deb5475d50dd1f2126eb5df3ee5357ef9c5cde161f27e711a74a9aac5c876acf9aa1ae20980aa0b959b20523d281d3c526543c5000c6e7a515eb7 SHA512 3be5ea38e8119ad37c91e547fdabf1378dfc74c7e4db7c96cb962c59c13656a4cc2efb6475b914c25b80fc1c5a8a6b8803e63d62619a0fbc26e753397c780a3a
EBUILD pysupla-0.0.3.ebuild 704 BLAKE2B 11ce8f1060e224b91bb26a72f0ca0de0bd72b3ec2d36e6167823c6914e0159460ff2274768bf5efa6426075b8513e2bd401fe12ed338004c52a88e28aeb6a99e SHA512 fee3f11c21bfb20645a78544ed0f8ccd4b68195da1469a1694ddf5ee6c315ccc666ddcd4789750428bbf385443f2b6b5ffcb0f61c5e980cdba19c94145da8fa9
MISC metadata.xml 473 BLAKE2B ab38f722e51a7db72de1f9fba28cb348bc76daeabf8c9e49eb03a71ef928a90b1070118ab908155ce75a92986743765c75c0e5e2c65b037d9f2e1997cf3125b0 SHA512 a66204a994c63583cef5dc32d5e41ce47fd5fb602f9d2bc79d9e59ae440408e8fc41fa80a1f4ea50b8b6454ffa9cf12c23cd1d67e1d7ba6dce77bd58ed5cbdf0

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">pysupla</remote-id>
<maintainer status="unknown">
<email>michal.wegrzynek@malloc.com.pl</email>
<name>Michal Wegrzynek</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="Simple Supla's OpenAPI wrapper"
HOMEPAGE="https://github.com/mwegrzynek/pysupla https://pypi.org/project/pysupla/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/aiohttp[${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
}