add python-awair-0.0.4

This commit is contained in:
Andreas Billmeier 2019-11-22 15:19:40 +01:00
parent 68266276d0
commit 675d305b62
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 54 additions and 0 deletions

View File

@ -25,6 +25,7 @@
* add asterisk_mbox-0.5.0
* add py-august-0.9.0 / py-august-0.7.0
* add avion-0.10, bluepy-1.3.0 & pycryptodomex-3.9.4
* add python-awair-0.0.4
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,3 @@
DIST python-awair-0.0.4.tar.gz 4626 BLAKE2B a3bcb657135fafe1c4d067b87411645dfc4a6e63e20e08c2eac49ce193ff4e7f806f653614f9e08058f18dfd10c558012189dfc1bbaba57f750ed2598015a9fe SHA512 6fffa73377d707bb15e1af9c7396c93a0f14f83c89128fe58660077c286206ce234572802a466304cddf6e1e471e6c4fbb023ed34218b70861f0ba7dc7a66555
EBUILD python-awair-0.0.4.ebuild 800 BLAKE2B 4d84761a46ae0209f7555a27b5f169e37e331d56108bcd1f79dd4464de6b862a801c1d405303fa9a3cbd59463f49b426d077d1d625193bc7ee392f26ed5991c8 SHA512 7fd6c6efab58c3f77022457df11d45c19182254e49cc90fe639135dad8255e0b91069cbe2eef33fb01dad1b8de0fce44a92b4c331ccace30a53994483544182a
MISC metadata.xml 466 BLAKE2B cc8d31b2ccef66698dc5efa27bf1ae8878b19f2b1b6df2382eae6fc822084a3a5cef508ff2cf6bdc484817a245e130eb82d896de50d05a342056cb9e7305b69e SHA512 f1ee1ffbce01ff3493861418a13a8f66cb65062760745c37b6dffa06bc520a2a5cb99a214188099242391b83e28a62e3ebb95af7ee4ee5b2b717a090e457b1f5

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">python-awair</remote-id>
<maintainer status="unknown">
<email>ahayworth@gmail.com</email>
<name>Andrew Hayworth</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# 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
MY_PN=${PN/-/_}
DESCRIPTION=""
HOMEPAGE="https://github.com/ahayworth/python_awair https://pypi.org/project/python-awair/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/aiohttp-3.4.4[${PYTHON_USEDEP}]
dev-python/async_timeout[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
S="${WORKDIR}/${MY_PN}-${PV}"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}