From 6795025a6a4786049a955b5dea64d4a830a1f089 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Wed, 1 Mar 2023 19:55:59 +0100 Subject: [PATCH] dev-python/python-otbr-api: add 1.0.5 Signed-off-by: Andreas Billmeier --- README.md | 4 +-- dev-python/python-otbr-api/Manifest | 2 ++ .../python-otbr-api-1.0.5.ebuild | 34 +++++++++++++++++++ 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 dev-python/python-otbr-api/python-otbr-api-1.0.5.ebuild diff --git a/README.md b/README.md index 51b5d6bce..6c3e6cab1 100644 --- a/README.md +++ b/README.md @@ -573,11 +573,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1767 Ebuilds in total, 1756 of them have in total 1760 (34 different) licenses assigned. +There are 1768 Ebuilds in total, 1757 of them have in total 1761 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1030| +|MIT|1031| |Apache-2.0|383| |GPL-3|108| |BSD|93| diff --git a/dev-python/python-otbr-api/Manifest b/dev-python/python-otbr-api/Manifest index 58bfe9c0e..5d488d05f 100644 --- a/dev-python/python-otbr-api/Manifest +++ b/dev-python/python-otbr-api/Manifest @@ -1,3 +1,5 @@ DIST python-otbr-api-1.0.2.tar.gz 2688 BLAKE2B 23fb4ccda7f1b1b0aa7fc64d9c769a7689d0efd716a0df3e7d721cb7a6977ecdc205448470fb03d7ed23898cd12129ef9de83f0553cc4282ca5995cfae4da15d SHA512 bd4e4511a3acfe8d14239e91964ba94f93a5212abcdb5df43ba021f3797b8502639f8c3677e251a7ce8b2b1544a7f823d6bb0f6b2d5eb2b662ab02301191de1e +DIST python-otbr-api-1.0.5.tar.gz 5972 BLAKE2B cd4c33d4d3752a623b4b1c0214b91e7179578c0332cf785a68609068331394b99dcf6c7ac43da533bbbdf0aa72c273373c2efcf4ae5bf152d7658ee21dcb042d SHA512 0b03cc50eb7a29e6df4baaedabe36c8b6ca8963034e4d0a6aca11f985c6b7f5f93ebd8d7fb7dcd78529f467640097a981ebb5af3a3ddb1921352d3c5e0ff30c2 EBUILD python-otbr-api-1.0.2.ebuild 707 BLAKE2B 50126014728e0a90bf53791f65dfa305d614bec5ad331cf78ee4402fd60133685504bd7de524b480d30780d94c4b533d5aca53afa0f0965762578d30da34ad3a SHA512 ca599f321c59bbbdabbd25375bad312ff96e704d86ffa55329535b6b8cfeb6f0a5ff21d56af93974139d65f96ed6a8e5f66ab78dd469bb94e02303b4dbe2ce8f +EBUILD python-otbr-api-1.0.5.ebuild 797 BLAKE2B 0ebf1c74becb21a4ade979de991fcc48bb914ed049eb38702779da0b7646990fc930fc7171b0a05804a054773c737333bd92d30e39ef94dba56a3759f92eaaf2 SHA512 edb45c5bde75f7c4b7e969a5a4f743240fc31310ead0b8fc757337a2034220a2c54b9ebe44fa630514aa7734ec6c3f1dcf0aac7fe59914c186f8fd604f4f2f5b MISC metadata.xml 554 BLAKE2B a8d375b099b64cb710eca6e2792f5a483c3058157b8de816c98280b5ebc93aa010969ec089b82cf167c6120ddacc225fc85ed5411d0bdf0be4d9cd084ebe527d SHA512 ccc131077599419a1654c0de23feaf0f8813111cc128933a10be10b2c92078e39bb5e512a15fb84c52aa6dcbb610ae66a48762cd62c828af46ce2788704d3b09 diff --git a/dev-python/python-otbr-api/python-otbr-api-1.0.5.ebuild b/dev-python/python-otbr-api/python-otbr-api-1.0.5.ebuild new file mode 100644 index 000000000..35b54f77c --- /dev/null +++ b/dev-python/python-otbr-api/python-otbr-api-1.0.5.ebuild @@ -0,0 +1,34 @@ +# 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" + +RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}] + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/voluptuous[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest