diff --git a/README.md b/README.md index 2d48919b4..e459df9d5 100644 --- a/README.md +++ b/README.md @@ -612,12 +612,12 @@ 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 1750 Ebuilds in total, 1739 of them have in total 1763 (43 different) licenses assigned. +There are 1749 Ebuilds in total, 1738 of them have in total 1762 (43 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1020| -|Apache-2.0|368| +|Apache-2.0|367| |GPL-3|110| |BSD|98| |LGPL-3|24| diff --git a/dev-python/aioharmony/Manifest b/dev-python/aioharmony/Manifest index 246fa2650..54068fbfa 100644 --- a/dev-python/aioharmony/Manifest +++ b/dev-python/aioharmony/Manifest @@ -1,5 +1,3 @@ DIST aioharmony-0.2.10.tar.gz 35174 BLAKE2B 55bb3a0a995f431928cd2a2bd84de3fa92c908c94bea76c498d589a34abc249bf4f5455a502e84d862d0983c328c2a419a783e6b8cbb84f9bff500fc434be7d4 SHA512 640768f079e9e09c3adff431246512cfea1084ca40ae064da899ae7988512703171fe8dbba28d3715cb8892fd60471137e243972d41f2b8768e3dd1e713af81d -DIST aioharmony-0.2.9.tar.gz 34740 BLAKE2B 776699d5336c43e71b010bd58f708397bd5ffa9f5d04a658d25d4ea405331e9f0e026b3ae7a5d42d1b5fd5c601ecf222e2d746ec31bea5915d53391ce12d58f1 SHA512 0735e470739ba840a8be636cc8d4a6b8d9ffa5e92b6cba6e40e78fba99d439c560da8c74d92fc742e8425663ea2c64b6191077c916c05d6d7276a900cd4cb9ee EBUILD aioharmony-0.2.10.ebuild 805 BLAKE2B d662587e931bdc493e6bb68764435552556119e0cb9a2d918699e31d9eb9e447ac19d580e4f3d15c574368f195b05ca9532c0356c1349b0ace0fa072f4ac2ccb SHA512 4107da88b88242fed88b89c31ab440ef0277ecd552a1d38c20dd3bfdd0a53cbc423308e970254064ba9e9691cc420a3ffe484b9f760b515a42f56499973b6b14 -EBUILD aioharmony-0.2.9.ebuild 716 BLAKE2B 1fc36aecbbcf784662458a6950636a9b39663ebe39f72ed18fbb11bcd439422a284f0ed7c167582b357615b69bca390abacf55737b36885e83d31152fd1faefc SHA512 574e2d71350fb5bb68bb1cb1b7e5a3e0fcc9874612cb8248516377289dd02c091d06694bcbd19c238315551c836607ae8e2419f6c4eed383a543c2cfdd25ec95 MISC metadata.xml 392 BLAKE2B 8e0e4c52f9d4cf2c1ece5a2cbc2441876f207f085242d240ec27ac3060106a5c0d348def289526551f989f3fde4433cef094abf2f08471f882a5a0f53cb72ae6 SHA512 c2afe2a56d9dda064ee8ee7d5d523e2e1cdc3588f4a3fde914572a924ccad3e9151d07e5d5b1efcf589b9ed74065aa0a2e1c981ee117390bd0a06e91f2fafc7f diff --git a/dev-python/aioharmony/aioharmony-0.2.9.ebuild b/dev-python/aioharmony/aioharmony-0.2.9.ebuild deleted file mode 100644 index bd5a97a7e..000000000 --- a/dev-python/aioharmony/aioharmony-0.2.9.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 pypi -DESCRIPTION="Asyncio Python library for connecting to and controlling the Logitech Harmony" -HOMEPAGE="https://github.com/ehendrix23/aioharmony https://pypi.org/project/aioharmony/" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS="README.rst" - -RDEPEND="dev-python/aiohttp - dev-python/async-timeout - dev-python/slixmpp" -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - py.test -v -v || die -} - -distutils_enable_tests pytest