diff --git a/README.md b/README.md index 12c27f1ba..9f3e9858b 100644 --- a/README.md +++ b/README.md @@ -612,11 +612,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 1651 Ebuilds in total, 1640 of them have in total 1658 (42 different) licenses assigned. +There are 1650 Ebuilds in total, 1639 of them have in total 1657 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|958| +|MIT|957| |Apache-2.0|344| |GPL-3|105| |BSD|90| diff --git a/dev-python/pyairvisual/Manifest b/dev-python/pyairvisual/Manifest index 30d75d773..d17a5b2f8 100644 --- a/dev-python/pyairvisual/Manifest +++ b/dev-python/pyairvisual/Manifest @@ -1,5 +1,3 @@ -DIST pyairvisual-2022.12.1.tar.gz 14985 BLAKE2B 6efc24ea0f478f3c4d070b128ac61e6b5de3e77462170ca2ded1e022088721ab39388b7409c2bc41739b69675d27b6269c309ad1c21eee55b9778f10f10dc549 SHA512 5912d17749370f15f2c82b69c670307ea157db7a356dd777873151cbc403402ffac492c9cf539f92b4e34fd9d4ee2bb922f3caae29b4a44b86f182a970ff25be DIST pyairvisual-2023.8.1.tar.gz 14079 BLAKE2B 201a4f1f99e272c39470e99582afe45d8a1bcd7e479762b1382331fdb23cc25e18ac23dbf156606ab34d08b00eb92059ecbc5b7c0b508e4519f65494019832e7 SHA512 1ed8cdaa2c722cc9ee9a232fa1eea81dffd0b46cd5758c515ee42cc0028db8f1f024a804d1eed7a6b6238a23aaebe54d9298d1876b8e093b86005f38b528535d -EBUILD pyairvisual-2022.12.1.ebuild 641 BLAKE2B 49d972d4900576c9662ee4a0e6b5e4633945c0f9c5b8a5e71256605956434d03f7c93e7be72e65114a0277380dc5f098ffd9ef860b1183cd5e7f6956ef9964e7 SHA512 23ee33bca1e8dc7ba633076bc7fcef280b6f92a8a1c0a3736eb0ceee5fc454950802b5f776e480e16b92ceaf8e47e3cc988fc3cb7c4b440fc7df531b2870546b EBUILD pyairvisual-2023.8.1.ebuild 785 BLAKE2B 15153cd27178f0dfcd6d53918fdcfcdc5088cd1585ab1e150361bc6ccea7de921a56774779b7042d0d62611d465b087e15a9d3f5bd63c35b02aed909348b6693 SHA512 ade006dc6ec92f25a4a897d54fadd8ddac9b64882af83d561e1ff62768ae883380a46938d62f872992d0ff192a6f35067230fa03c786ebd708c15fb1bb940c5f MISC metadata.xml 514 BLAKE2B f0dc17ed7356e3521779b82f6e66a3e4751e3da6f3b0f15ca18759ef2e03af5edeed82ffc7151bf73e7e229037db2a6662eebf78d6c019810ca289da8fdf2d47 SHA512 ed819784006cc9faf4320672fa84009f97b57f264dc7c069f71d778469608eac889dff8bc96fcf6d40b67d7b5775b35981f2ed39477347005a4c3d8e60692144 diff --git a/dev-python/pyairvisual/pyairvisual-2022.12.1.ebuild b/dev-python/pyairvisual/pyairvisual-2022.12.1.ebuild deleted file mode 100644 index d465f5276..000000000 --- a/dev-python/pyairvisual/pyairvisual-2022.12.1.ebuild +++ /dev/null @@ -1,31 +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=poetry -inherit distutils-r1 pypi - -DESCRIPTION="A simple API for AirVisual air quality data" -HOMEPAGE="https://github.com/bachya/pyairvisual https://pypi.org/project/pyairvisual/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS="README.md" - -RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - py.test -v -v || die -} - -distutils_enable_tests pytest