dev-python/aiowaqi: add 2.1.0
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -591,11 +591,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 1830 Ebuilds in total, 1819 of them have in total 1835 (40 different) licenses assigned.
|
||||
There are 1831 Ebuilds in total, 1820 of them have in total 1836 (40 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1069|
|
||||
|MIT|1070|
|
||||
|Apache-2.0|374|
|
||||
|GPL-3|116|
|
||||
|BSD|103|
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
DIST aiowaqi-2.0.0.tar.gz 9982 BLAKE2B c177626b274189f2790b7f5c5a152f58add2533737d3ef69ca8376baa5ded35cc94997bd7c24d8a87afa761ae0915924f3d592445b7ffcece4e66dcb2342d2a9 SHA512 816d355221f9dde4a3aa6d1c9c8520f749c11efe3d7d2665e6e65963f6e7ebb81394b54adfda6b74b7a4f7afcfa6b6240e791e6bd504e9353eb85178f34286ac
|
||||
DIST aiowaqi-2.1.0.tar.gz 9991 BLAKE2B ff28a457b7b092e3eb600b943f822cef0ed0493780d59803da5c1e7f83d67d6afbbcd3147fe96cc4dcba4611179402cbb769f13817eac6526d531f0fa7bb3375 SHA512 0f0c14d3ae73fa5a1808cc5589f53fa0fe4c10e626fc1006fd3bc4dd1dd24d37514886e4f7ed73039df51e6da49416d9c6f767727306be812f89ffbcfae61a9e
|
||||
EBUILD aiowaqi-2.0.0.ebuild 775 BLAKE2B 075d0cd9fafcb79ee1b29452ab345afb25bd00ab5cf020982f151ba5159e4c3e90e2a7d59441108d04e088cc83480fe50cb78c494cced21500ef7b252b3adc69 SHA512 bd3f0f485b2aab8a0bf310a46331d907205b5dbe685f2e681ac29c17841f2ed86d149aa2a6550701eb706b7c1af435ecbdfcf7d9eb95ba0ef88b73074349b673
|
||||
EBUILD aiowaqi-2.1.0.ebuild 775 BLAKE2B 075d0cd9fafcb79ee1b29452ab345afb25bd00ab5cf020982f151ba5159e4c3e90e2a7d59441108d04e088cc83480fe50cb78c494cced21500ef7b252b3adc69 SHA512 bd3f0f485b2aab8a0bf310a46331d907205b5dbe685f2e681ac29c17841f2ed86d149aa2a6550701eb706b7c1af435ecbdfcf7d9eb95ba0ef88b73074349b673
|
||||
MISC metadata.xml 520 BLAKE2B 94e732a20636d04e48864c2ccabc60ce5df94f4a7a46745d873aaeb6cb42ee870bd7c1eee3c6ed4b9ab480a3ff25029f8212d57e47352dc734985136f8534b67 SHA512 fea8fb6f7c486ddb2264c56770b867bdd8e692cdf47ba0ecc0e89ab51a90ec41d63fed5f40f4c0d2ee1fd7acf79937861a4b4e80af4dd300d8c9fffc185409d6
|
||||
|
||||
34
dev-python/aiowaqi/aiowaqi-2.1.0.ebuild
Normal file
34
dev-python/aiowaqi/aiowaqi-2.1.0.ebuild
Normal file
@@ -0,0 +1,34 @@
|
||||
# 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="Asynchronous Python client for WAQI API."
|
||||
HOMEPAGE="https://github.com/joostlek/python-waqi https://pypi.org/project/aiowaqi/"
|
||||
|
||||
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}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/aresponses[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user