diff --git a/README.md b/README.md index f8ef6f46a..3271b2234 100644 --- a/README.md +++ b/README.md @@ -606,11 +606,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 1962 Ebuilds in total, 1951 of them have in total 1975 (42 different) licenses assigned. +There are 1963 Ebuilds in total, 1952 of them have in total 1976 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1128| +|MIT|1129| |Apache-2.0|440| |GPL-3|114| |BSD|113| diff --git a/dev-python/airgradient/Manifest b/dev-python/airgradient/Manifest index b5c325be4..8c749a5cd 100644 --- a/dev-python/airgradient/Manifest +++ b/dev-python/airgradient/Manifest @@ -1,3 +1,5 @@ DIST airgradient-0.4.3.tar.gz 6358 BLAKE2B 1e37642772c6346e4f1de545b2db012b8dc6863a04258dec9b4956a5d5faf051a4e894575d2b2ec11922c52a6b29ee00b36b17c1105be21fe723a90ee95261c9 SHA512 ffdce6d42b0883379358b7b681521d4b9d87897970685e7a5656be5c058007a0a9dc2670ce23a1ddacb34ce3c84219f5dd01bf66e5c6f256ebe9e5769058c411 +DIST airgradient-0.8.0.tar.gz 8971 BLAKE2B 020c7d3a53416dc0f7c08723e412f1e811153b701a8719d4e2a8348a80a714b238d91c9b1551fb420eca44804947e8ff45955a7aecee0b06c9e6628a7b8591c9 SHA512 19eb5b46a0b48b4a06739f6e160bc7fc13851014023fef9fdb527b54c3709579e446564d9bf9cabc27146028922a4dbbc281d69aaa5fd458db877ac39972859c EBUILD airgradient-0.4.3.ebuild 859 BLAKE2B 18d4172e5498ed5ce6843726be1db9610ce10f38c4c1daa69b9b22ee3451811974d08e7abc7610839ad5e3eef91f4ab1f0e70edd7318e3c3ea7e1f886ce690e9 SHA512 ca552cdc966e23584f108d2d01c29f6679042ac3c2f6268b0ae91e3d9f53ee7c9b184761f96d6902361cf3d99e21499ad1d6721a897bb8d5c08f1abcca4c7ebb +EBUILD airgradient-0.8.0.ebuild 807 BLAKE2B 15f5bee58868433272c1658d5a77cffa27d433616489d19431179a9b4ba1f782f51b551e8a2956d486ab6b1d6e36ce203f60305045037c486e667924eb471a04 SHA512 e0079d0eae03e069e3d690aab13ce262cc90e9ffb8c055345a8cf0385745d03d4ac97c8d6c3f096fdda638ca57e7119f0374ca02c4d999ff0f44b73d015f2101 MISC metadata.xml 536 BLAKE2B a892e20cee5e51ceceaa7cf5387937898c115f0b001b766c6aa78c7163f975730bfb8b7f4dc923a41872d9e3fb20d82ac73ded357a50c0f841ddf2e1804324fb SHA512 bfafecad13aa18d88d3ea715bf6665f8c0fc456b08a13cb448ad8b01ae1d06a971edfcec286aafc303449d692dd299d8969228b369cf42668ce4d21c9ea742dd diff --git a/dev-python/airgradient/airgradient-0.8.0.ebuild b/dev-python/airgradient/airgradient-0.8.0.ebuild new file mode 100644 index 000000000..aabbefa28 --- /dev/null +++ b/dev-python/airgradient/airgradient-0.8.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 pypi + +DESCRIPTION="Asynchronous Python client for AirGradient." +HOMEPAGE="https://github.com/airgradienthq/python-airgradient https://pypi.org/project/airgradient/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}] + >=dev-python/yarl-1.6.0[${PYTHON_USEDEP}] + >=dev-python/mashumaro-3.11[${PYTHON_USEDEP}] + >=dev-python/orjson-3.9.0[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/aresponses[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest