add pyoverkiz-1.3.1

This commit is contained in:
Andreas Billmeier 2022-01-29 07:21:42 +01:00 committed by Andreas Billmeier
parent a6e502abc6
commit 938c64af2d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pyoverkiz-1.3.1.tar.gz 29011 BLAKE2B 1702ce4133fbdd7228eb1eeb9bdfbd20a93333d9164cf7fb95c969cffbb68bdec8d137f341d55f9c0f04e3db9b5863bc5c17493f9c1b3fb16a622912eb1c7be7 SHA512 3565d1662ae100a6ad213519492787fc6b89ec143b316c19effedf7803ad028d9cb2e01456a32fa942f2d25580a0febd409dfbbf065bfa9cb95bb864fb704d94
EBUILD pyoverkiz-1.3.1.ebuild 1026 BLAKE2B 689429d444b01b1f898ee3227c8f31c34b452bfde84ee584f0b22032ea8cb3e65e057c697676c3d0248923b73548aba76c7bb2466a31bd50dfa7bfa3fd168203 SHA512 06a1781f6f0c2d7905d019d7eeb0a6a61661486e3466f814d9d9393d00938855355afbef508e97345acdc540912f0f1bdbf9e56a4f144025559932254684b1ea
MISC metadata.xml 328 BLAKE2B c9d7e0ea1cecedbc6293de37b2423b3d0a0d51696cbe37bbe5cfc1e871e041cd33d5211ee62826fb66ca1745438ca9bf1d4f0f4fbc33fef4b4470a4fbdbc30a3 SHA512 64452547d075441f1de2da987998cb982da73f0c33eae5100959d0d631e9c47dfb02a1cdabbfef86aca80f810095437298bdfc0003759cfb3cd88e62cbdc19ee

View File

@ -0,0 +1,11 @@
<?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">pyoverkiz</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,37 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Async Python client to interact with internal OverKiz API (e.g. used by Somfy TaHoma)."
HOMEPAGE="https://github.com/iMicknl/python-overkiz-api https://pypi.org/project/pyoverkiz/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.6.1[${PYTHON_USEDEP}]
>=dev-python/pyhumps-3.0.2[${PYTHON_USEDEP}]
>=dev-python/backoff-1.10.0[${PYTHON_USEDEP}]
>=dev-python/attrs-21.2.0[${PYTHON_USEDEP}]
>=dev-python/boto3-1.18.59[${PYTHON_USEDEP}]
>=dev-python/warrant-lite-1.0.4[${PYTHON_USEDEP}]"
BDEPEND="
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
}