From e871fbe566bdb59a33f33475290da47b51515150 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Thu, 9 Mar 2023 19:14:59 +0100 Subject: [PATCH] dev-python/pyfibaro: add 0.6.9 Signed-off-by: Andreas Billmeier --- README.md | 4 +-- dev-python/pyfibaro/Manifest | 2 ++ dev-python/pyfibaro/pyfibaro-0.6.9.ebuild | 32 +++++++++++++++++++++++ 3 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 dev-python/pyfibaro/pyfibaro-0.6.9.ebuild diff --git a/README.md b/README.md index 9ad231603..a3be0bb33 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 1808 Ebuilds in total, 1797 of them have in total 1802 (34 different) licenses assigned. +There are 1809 Ebuilds in total, 1798 of them have in total 1803 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1053| +|MIT|1054| |Apache-2.0|394| |GPL-3|112| |BSD|94| diff --git a/dev-python/pyfibaro/Manifest b/dev-python/pyfibaro/Manifest index 69e906ebf..9276420f7 100644 --- a/dev-python/pyfibaro/Manifest +++ b/dev-python/pyfibaro/Manifest @@ -1,3 +1,5 @@ DIST pyfibaro-0.6.8.tar.gz 10808 BLAKE2B 51b617cb2ffc25feebfdc007131d0fff525f98364f4ba9935884db58bad5e7bb35f970d23c354fbe5df16d5407061a07fc2dfced783a8159477c2995d39b3327 SHA512 a6708f4c13087dcd0c1d4bfb3e467eed468cb51e5e2895b485a3aba793b15c6c690cb3e496951315153b723fccc515b50141a005db7d0e2f5168c73012823ecf +DIST pyfibaro-0.6.9.tar.gz 10814 BLAKE2B 30e42dd680e36997d16fcf5b764f18253d400ac7a61a85fc185c8b0f170414b29505eaa19b745f0e5041bb9af4c8ee62812d72232698363c3184582092d0d196 SHA512 eed672930ef3478565496a95c416431204610dbd6b25ca3b8ad8be6ca8ccabcf247e24e66639d43cbe9e55b4972c7a3e25a5989e919763bf3688fe56006f0316 EBUILD pyfibaro-0.6.8.ebuild 775 BLAKE2B 64c841fe61705f8ce2dac6ec07f63d96ae7045c77aabb0cb29aab09ee4869730a8980fff5423b82fe2808e96d8b9ee677f4ba0f2f77ab846c0122e09ed3bc986 SHA512 5aece4d0a58d6e8393513b52a79aad3c694bf31fec966ac69d5804272dedb3ae09de1e902938126b1731b389069f21926aaeb255e49a4c81ab18a7b1e08a4896 +EBUILD pyfibaro-0.6.9.ebuild 734 BLAKE2B 352761a894c1f05ad7f0f9cdb801de555a90282084b0dd7bb71a6b610bb1afbcd611bb5e23fd3d66cb8389805e6dbc93149fb159417399eb4febd5bbb1d7dc6b SHA512 f7ce535be2ab70401c4af259ae9f0b9524d546f4808ba8c0dc075463f0eb7b80571857c878ad7e835659a2626ce4beacbf3c6ab6949200d357fe44b681e86ac5 MISC metadata.xml 386 BLAKE2B 52b48fa6342e4ae8781f654f258fa0be9f9b1d39c0addb350670b3908958ddbb624f95878930076a6243c9cdd2ddc4d8ed6135bf3dc1a893da07a6e45e3df58e SHA512 6a6913c1fcd32da6b0ad8737b9c489863226121c6db93e17cfa94d5db73e0a517a52f3672481cb00836c254ad3d5a63018a3c21e88806fd8bd0fa7c3bde3eb80 diff --git a/dev-python/pyfibaro/pyfibaro-0.6.9.ebuild b/dev-python/pyfibaro/pyfibaro-0.6.9.ebuild new file mode 100644 index 000000000..a9fa0beac --- /dev/null +++ b/dev-python/pyfibaro/pyfibaro-0.6.9.ebuild @@ -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 pypi + +DESCRIPTION="Simple API to access fibaro home center from any Python 3 script. Designed for Home Assistant (but not only)" +HOMEPAGE="https://github.com/rappenze/pyfibaro https://pypi.org/project/pyfibaro/" +SRC_URI="$(pypi_sdist_url)" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/requests[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest