dev-python/gios: add 3.2.2

Closes: #2444
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 10:12:32 +01:00 committed by Andreas Billmeier
parent 38e020fc75
commit 777c17b72e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 2 deletions

View File

@ -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 1674 Ebuilds in total, 1663 of them have in total 1684 (43 different) licenses assigned.
There are 1675 Ebuilds in total, 1664 of them have in total 1685 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|980|
|Apache-2.0|349|
|Apache-2.0|350|
|BSD|96|
|GPL-3|95|
|GPL-2|24|

View File

@ -1,5 +1,7 @@
DIST gios-3.1.0.tar.gz 10234 BLAKE2B 2485421202b5f3a962d29cf1b1231aee18342191ba1c08a1892e5df0574682f7493def4f3e755fdeb0fe18e407cd43ac4f607af8b5666673d6065a2a9d0962bd SHA512 5285b2aa4c7b2adac3522eb1bb1f343393d7f14dc7da88916ef88afda2753381656274645514446844fd0dc47c084e2c0cb7239f5d7b5f2d9fb4cde0308466f5
DIST gios-3.2.0.tar.gz 10361 BLAKE2B 4ccce06fd4a9b16df8f90cd64391049e922d767e77f26d26bfb6c1cc6dbbe644296d0673f5cb4e25b930bdb9f6664e54e792dda27d57973eccca406f6919e66e SHA512 3b8d239c79ba85f18bb2ad811f6607bbb0d7c171cf6f2594d9870ffc09be59ee5e0045f59be37231dfa189a87e7d293c0b6296ea7b2777f1f2ed9ee5960ce4f8
DIST gios-3.2.2.tar.gz 11551 BLAKE2B 6072ea1b954ac293d54220c141c547f0e27bb6779e0ba1a8d6b61e494eb360c446f80263f2752e534d000e2492f0466acceb73e1fe821081cf840ee55147d0b8 SHA512 57301127f2f397dc622deae3d711075a916fb50bddcf1bf347dcee695b43103916874d3dfe3d8b3da916a3f7bd19453f59d1e53e44f5e9327fb7d4e03ee37576
EBUILD gios-3.1.0.ebuild 965 BLAKE2B 86ef569a7a8c54ba68b4faff1d6b465bf0a18ffa5aa23d491b65792f6bd134a8e5a6d0217c73524a5a68de98de9890c163c4e5be9585945016b97ec5b06a81bf SHA512 72bb359cb08b109c5dc8f18a78cd7c24b70ded995cc98321fc6c9b7bb3beb51e575e0fe5baf45957f8b166c72fd3c93074714fa1e5afd2998050c96241004d80
EBUILD gios-3.2.0.ebuild 1086 BLAKE2B 753daa6036434a3472145a834b3f1f1e6c99c3e8ad6d78ac8da4814ae88733881480d840bf25ffd15afad63a7b9912cf962ff2e2a13005da0e6f1e00485bf3e9 SHA512 81f31d93d94cc8881423c5603fbfd681921a98a75d4ecc32c3a7cb15321271699940dbdcdf3a239921c6a26bff83f64d5ecad677ffb68ec108e6caa6ab96c5bb
EBUILD gios-3.2.2.ebuild 966 BLAKE2B 1381e4a6f04c557c4444d865d5530bfebeba693139678ad2a52215736bc4a6ea693bcd8a9fd31219d3aa8b9836773b1756a21bf0ed04bcc053c78797ae38e71c SHA512 7cfc1d99248837bdddaf55317b754a595b2e8861d6cee14e2aa11b637d8eceb98b18284c7a63383498413668628e98fd166b354e1efa67d5df55cff3a2a330df
MISC metadata.xml 376 BLAKE2B 7636771b135d76a67fd60ada3aeba36629394b96b6f5514f30b039db51ea4520fce67a5e624ba41b52d9e98e0641da00523b738df41a440d6f1633143a03f1e0 SHA512 c4c0c0f13b72b423082c305a56a36705a37b474f2193bfbf0e8470e79c66c7ae87daca4ebb65e8e48668a667038d181f79c3b5e2c8b3a441e1cb374075071560

View File

@ -0,0 +1,38 @@
# 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="Python wrapper for getting air quality data from GIOS servers."
HOMEPAGE="https://github.com/bieniu/gios https://pypi.org/project/gios/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.7.0[${PYTHON_USEDEP}]
>=dev-python/dacite-1.7.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
test? (
dev-python/aioresponses[${PYTHON_USEDEP}]
dev-python/pylint[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest