From 58ddb285a50afff35cfc9897293f309e34d888db Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Wed, 1 Mar 2023 18:39:38 +0100 Subject: [PATCH] dev-python/greeclimate: add 1.4.1 Signed-off-by: Andreas Billmeier --- README.md | 4 +-- dev-python/greeclimate/Manifest | 2 ++ .../greeclimate/greeclimate-1.4.1.ebuild | 33 +++++++++++++++++++ 3 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 dev-python/greeclimate/greeclimate-1.4.1.ebuild diff --git a/README.md b/README.md index 69aa70bac..b2e8ca9a3 100644 --- a/README.md +++ b/README.md @@ -573,13 +573,13 @@ 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 1757 Ebuilds in total, 1746 of them have in total 1750 (34 different) licenses assigned. +There are 1758 Ebuilds in total, 1747 of them have in total 1751 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1025| |Apache-2.0|380| -|GPL-3|107| +|GPL-3|108| |BSD|92| |LGPL-3|23| |GPL-2|20| diff --git a/dev-python/greeclimate/Manifest b/dev-python/greeclimate/Manifest index 0c3dda05d..0374e70e0 100644 --- a/dev-python/greeclimate/Manifest +++ b/dev-python/greeclimate/Manifest @@ -1,3 +1,5 @@ DIST greeclimate-1.3.0.tar.gz 26102 BLAKE2B 2d335dd9086e8a35225a2674f9729e9f9b942f348b5627d664ed80042dca4658af73e8f8f13c1ef6cc9e101acf3916a87cd3d32391a2d7ce2879ab369ec23f74 SHA512 1973c288028dc7169f3ed3f155a499c4f9ddf3c4da16a89fa250b33b990bb2b392e507b0fd8cf686c051c83f1079f58688ce472f8b0c5cc6ebe6c3009f5884b5 +DIST greeclimate-1.4.1.tar.gz 26548 BLAKE2B a0a10830128a53820e5ad749cac90e38dc3bef385d72a4e865fb16b7f13709f1df731d23e45ae19c63fc0d63bad4ffcc1abb3249c82ee7fd1202095c607c82c1 SHA512 2f1d06c74385908507546b1b5857f0929326723a1d140636a9e9060ac855bda81d35dc0b69a051493dd3411046ffc68ad4ab9b3c6965e087946b98b3959831e8 EBUILD greeclimate-1.3.0.ebuild 772 BLAKE2B b5ccb68f8e58e245406c29d3c8a047d03281705fa214c33100e326de18763d4cd4b3e3186424b26f3d8b03f80c3270b1545d3202d061019e3ce50c6d99e0a74a SHA512 5084d8519a90922181c5ea476052c3382d028028ddf74b6909114697a2f73cda1230d10ff0233cacc2b1c0c86cbe0f9a8ab02336d4094dc5eccbe9b109f63304 +EBUILD greeclimate-1.4.1.ebuild 744 BLAKE2B 16304c6f335c8b33d230825b8afd2b8ca218a44e93b206cc886b2a1a95a6ed141195d0cd38ed4b47da6fb7787adeeac4ed58f4accd7f8db0bc1247765e07f949 SHA512 adab176028f432247eceecc7fe459c2bafb83fb38c064126a4ebf5353450706e15f489b7b152c7b624e9fdbef003d872d5f960eb23043bb829fbceaeac1efbe8 MISC metadata.xml 391 BLAKE2B fc250afca50f682c5d3fc183df48682a6fbf869f0c6941a8d4d3e48d19985639c5e8f6cf70f740ccfa7aea4943f9ad369a76e7481e138768caa547f2c90ac7fd SHA512 53c88a8cf9de73c881be61c94867f4d1bdd460321fbeb9eb4f91e4c15902d5f3db6ba3da68ca1f5e0350930757595274d21dfeda9414a392ec1958c44991f677 diff --git a/dev-python/greeclimate/greeclimate-1.4.1.ebuild b/dev-python/greeclimate/greeclimate-1.4.1.ebuild new file mode 100644 index 000000000..7adfba6a7 --- /dev/null +++ b/dev-python/greeclimate/greeclimate-1.4.1.ebuild @@ -0,0 +1,33 @@ +# 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="Discover, connect and control Gree based minisplit systems" +HOMEPAGE="https://github.com/cmroche/greeclimate https://pypi.org/project/greeclimate/" +SRC_URI="$(pypi_sdist_url)" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/netifaces[${PYTHON_USEDEP}] + >=dev-python/pycryptodome-3.10.0[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest