add pyversasense-0.0.6

This commit is contained in:
Andreas Billmeier 2019-11-20 11:34:03 +01:00
parent 8d1f88ba5b
commit 72e1033a06
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 0 deletions

View File

@ -1,3 +1,6 @@
2019-11-20
* add pyversasense-0.0.6
2019-11-18 homeassistant-0.102.0_beta2
* update pyatmo-3.0.1
* bump aioesphomeapi-2.6.0

View File

@ -0,0 +1,3 @@
DIST pyversasense-0.0.6.tar.gz 3424 BLAKE2B 493e79f08626d61c68f42333f97ae64cd20d6c12332242d6c068f711bb44fcd408de88b30fe1f38b7475a80af8979ba80b60c1da452ab1537098d3dd1a06fb56 SHA512 07fc5b15184f61949ee935b40ec4e26ec61da4fb78460ddbb0022d6bf4968b6acc7c104a50d7aac1c4ef16a08e8f5ed859f5f440f3ccf46100f04ba93ec1b2fe
EBUILD pyversasense-0.0.6.ebuild 730 BLAKE2B b15aac57a6c118226a13e5aa6f4c819df7c96cf34f79633a409654fd8b2bb467e71b0e9d96b16a9f5c469365abdb84c0778b05ec336107158b5b076174e63253 SHA512 add78238253f2512d29369170a26ea3932a259e8b92165f86802496cf8fd851b399988440267bcb37e8bc9c7de26f7775f0aac6ae4defd57d147fcd0493e6bcd
MISC metadata.xml 467 BLAKE2B 9c867b33de66fdbd73b315f9bff7a1d39b8fa56afdbb4294a9f5f49eeb98dc21056236e74bcedb8c9100e74d50818f55160f485930dc35e739384a8b7b36ddd8 SHA512 9d57e1fc3dc14d6e06bb6e4d03221f1a3476166cc6a15572cf20d9ff2fc16b24018f036eb6e5c97e90bf12f957fb266893db270aaf7a7daa6f2b31d40fb3c2ad

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">pyversasense</remote-id>
<maintainer status="unknown">
<email>s.impens.dev@gmail.com</email>
<name>Steven Impens</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,8} )
inherit distutils-r1
DESCRIPTION="Versasense API consumer"
HOMEPAGE="https://github.com/flamm3blemuff1n/pyversasense https://pypi.org/project/pyversasense/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache License 2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/aiohttp-3.5.4[${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
}