dev-python/aioairzone: rework, remove olds

This commit is contained in:
2022-10-15 13:08:41 +02:00
committed by Andreas Billmeier
parent 1fa73fa895
commit 950af5e988
3 changed files with 2 additions and 39 deletions

View File

@@ -538,12 +538,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 1712 Ebuilds in total, 1705 of them have in total 1717 (35 different) licenses assigned.
There are 1711 Ebuilds in total, 1704 of them have in total 1716 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1021|
|Apache-2.0|332|
|Apache-2.0|331|
|GPL-3|103|
|BSD|98|
|LGPL-3|26|

View File

@@ -1,7 +1,5 @@
DIST aioairzone-0.4.5.tar.gz 17080 BLAKE2B 60de28c6ab880e3d242e0d780fe3762d12d201051847a2560cf67d9b62a9be59f1ffc0bd29a0ce5f9b3f5ce5e9a4213d47b42e9aa9f76736ecc5e91dc970febc SHA512 2b1fbe1b46cff013dba0e2394efa4b5dfa4e8ef8d487aa495836ace559dd4b6fcc4e2899e732739462f81314a710451b0f2cf4b16fc407f73b14492ecc41f072
DIST aioairzone-0.4.6.tar.gz 17154 BLAKE2B 68de44a11108527525e35b381af94ef1fa42f527582b444bde0ee04d88666eee4c830d085c60c489be0102c49570205680385d9097f8a5b5b0e5003993790fb8 SHA512 a8c460f7b8f630c4f635d18280b881363a062ed48e24fc12ea90e7f3d33f47cb7c8618e89e844d4443b5c1cd215f7ee5073cce8d49422391df44680a245805f4
DIST aioairzone-0.4.8.tar.gz 17284 BLAKE2B 5d20309bc150b240a31a2801aac95f61b360e7740d6d775df450225adad1e7df8cfa8d703706475c95843c5c22d2e07bfc338621b4f77ac795dfdb65482658ff SHA512 63f9ceafce00a25dac88521e0c2a22a027c7845c10daa252276c7c876e3a7e12fa878c834358363f1ce5523a5415e9295ae7d00a1e4a26e9e7b9136e7b5ff4de
EBUILD aioairzone-0.4.5.ebuild 761 BLAKE2B 87619025519f7f62898a57dd3decd017aea3a5ddb6f1641566d55d0ec29c1609412c179f7efa5e2ba996cc56f4470b3269b874384d373a2a0eed64dc0541865f SHA512 4048930cc604310fb740f3e661ee37493396d43312ea920215cb882baf97f945ca2370f0a66b81a93c2f4b3bfa63daaa3504bcc99b4b18a48a02f1ac3c5585ef
EBUILD aioairzone-0.4.6.ebuild 761 BLAKE2B 87619025519f7f62898a57dd3decd017aea3a5ddb6f1641566d55d0ec29c1609412c179f7efa5e2ba996cc56f4470b3269b874384d373a2a0eed64dc0541865f SHA512 4048930cc604310fb740f3e661ee37493396d43312ea920215cb882baf97f945ca2370f0a66b81a93c2f4b3bfa63daaa3504bcc99b4b18a48a02f1ac3c5585ef
EBUILD aioairzone-0.4.8.ebuild 761 BLAKE2B 87619025519f7f62898a57dd3decd017aea3a5ddb6f1641566d55d0ec29c1609412c179f7efa5e2ba996cc56f4470b3269b874384d373a2a0eed64dc0541865f SHA512 4048930cc604310fb740f3e661ee37493396d43312ea920215cb882baf97f945ca2370f0a66b81a93c2f4b3bfa63daaa3504bcc99b4b18a48a02f1ac3c5585ef
MISC metadata.xml 464 BLAKE2B 3cf890902a32ca4935c41d8f707e716af2f0df4772af33a83b77fbd23781683fa97b5376cb88adf12ba65dd2380c837bc99025a39049f1f895b32b98888149d8 SHA512 631a0d19d8a8386150443781e8d6ad2027d1d957520dacc224e0bd06556dbdbfae7c1c88055569265060ba8e865d07e8054af62f10b7565c0d83891ddb5ba929

View File

@@ -1,35 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Library to control Airzone devices"
HOMEPAGE="https://github.com/Noltari/aioairzone https://pypi.org/project/aioairzone/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest