add openerz-api-0.1.0

This commit is contained in:
Andreas Billmeier 2020-04-05 09:22:26 +02:00
parent 5244997fe2
commit 1daa7653d3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -31,6 +31,7 @@
* bump twentemilieu-0.3.0
* bump bellows-homeassistant-0.15.2
* bump zigpy-homeassistant-0.18.1
* add openerz-api-0.1.0
2020-03-31 homeassistant-0.107.7
* bump frontend-20200330.0

View File

@ -0,0 +1,3 @@
DIST openerz-api-0.1.0.tar.gz 2551 BLAKE2B 7087dd98d99135e4edb10543b40ef63aefdae3ff58d204501756185bf7b99ea6166b396be08185960f6a4a22afb01f901af12acb096bc662573a810362a05c90 SHA512 3c591cddd3d43acb771d874eea889a33ad3b2aa8b3f8039c7e7d8e444b8b95219611fa1c258e64ff3b50b7e33922d6e34cd57e0cb50f6fef98708be4d2de154f
EBUILD openerz-api-0.1.0.ebuild 722 BLAKE2B d4762f19277815940ef7ee69419be499b2f5fdae0c57745c6cb3ba68b670197b37580b01758b5056ab34a29e3181202734eca756e8197d731008f2d9163450e7 SHA512 84404cc8a0771ece10dbee0ef0d452106c8627d9bfdadf1506d4a71798dc5101a3762ed417a4ea97856e585e44da481926fccf55a031753ea0e3a66ee1a26672
MISC metadata.xml 461 BLAKE2B 83d564b4f6d4eb6e562f7e0b01e06b06dcfa167859899e03d605e5c3ed2db1cf33db5a1e2d72be4dc5480db55c9b5967034b1c9b80d0a53db0451d8fd7eb9fd3 SHA512 845ae02c12dd368ebca8725f1d57ec63c82f0d9b4a4ee5dc7dc98ee24796e65c9a5850a468d278e6f4e72b114c52618fb3e06a7555d0ca5ed6bed53cc2aa6e4c

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">openerz-api</remote-id>
<maintainer status="unknown">
<email>michal@terrestryal.com</email>
<name>Michał Ziemski</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 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="A Python wrapper around the OpenERZ API."
HOMEPAGE="https://github.com/misialq/openerz-api https://pypi.org/project/openerz-api/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~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
}