dev-python/python-otbr-api: new package, add 1.0.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-10 18:25:02 +01:00 committed by Andreas Billmeier
parent d460418f6b
commit 626c7a1845
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST python-otbr-api-1.0.2.tar.gz 2688 BLAKE2B 23fb4ccda7f1b1b0aa7fc64d9c769a7689d0efd716a0df3e7d721cb7a6977ecdc205448470fb03d7ed23898cd12129ef9de83f0553cc4282ca5995cfae4da15d SHA512 bd4e4511a3acfe8d14239e91964ba94f93a5212abcdb5df43ba021f3797b8502639f8c3677e251a7ce8b2b1544a7f823d6bb0f6b2d5eb2b662ab02301191de1e
EBUILD python-otbr-api-1.0.2.ebuild 707 BLAKE2B 50126014728e0a90bf53791f65dfa305d614bec5ad331cf78ee4402fd60133685504bd7de524b480d30780d94c4b533d5aca53afa0f0965762578d30da34ad3a SHA512 ca599f321c59bbbdabbd25375bad312ff96e704d86ffa55329535b6b8cfeb6f0a5ff21d56af93974139d65f96ed6a8e5f66ab78dd469bb94e02303b4dbe2ce8f
MISC metadata.xml 554 BLAKE2B a8d375b099b64cb710eca6e2792f5a483c3058157b8de816c98280b5ebc93aa010969ec089b82cf167c6120ddacc225fc85ed5411d0bdf0be4d9cd084ebe527d SHA512 ccc131077599419a1654c0de23feaf0f8813111cc128933a10be10b2c92078e39bb5e512a15fb84c52aa6dcbb610ae66a48762cd62c828af46ce2788704d3b09

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 type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">python-otbr-api</remote-id>
<remote-id type="github">home-assistant-libs/python-otbr-api</remote-id>
<maintainer status="unknown">
<email>hello@home-assistant.io</email>
<name>The Home Assistant Authors</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="API to interact with an OTBR via its REST API"
HOMEPAGE="https://github.com/home-assistant-libs/python-otbr-api https://pypi.org/project/python-otbr-api/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest