dev-python/aioasuswrt: rework, remove olds

This commit is contained in:
Andreas Billmeier 2022-10-15 07:18:22 +02:00 committed by Andreas Billmeier
parent 2e6ac6095f
commit a651f2caf4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 8 additions and 45 deletions

View File

@ -538,11 +538,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 1931 Ebuilds in total, 1924 of them have in total 1936 (35 different) licenses assigned.
There are 1930 Ebuilds in total, 1923 of them have in total 1935 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1166|
|MIT|1165|
|Apache-2.0|364|
|GPL-3|122|
|BSD|106|

View File

@ -1,5 +1,3 @@
DIST aioasuswrt-1.3.4.tar.gz 11213 BLAKE2B d9ba3a89bb8008431b15020fbe013cf3b8ea3ff755ff80855c4d6be565c7d76238f029ab38cca55e436c84de0de2142b0f59628d7e111bc87d0115e5cfd65142 SHA512 b19d5d00a95b2a85daa3d3613b897322dcb31a34f0caa5b21d627cde408a9673b209e0c528a65e24f36e6f2776641316990cb224a4aec6bde470197ac07a4026
DIST aioasuswrt-1.4.0.tar.gz 12069 BLAKE2B 83c95affd5b99258b1e9d07765a26e7576c2a01ca6068df272d0dbc48b4ebbcc80decd8332608c1a8c761e69e35a194d81062bd4b1869b751d9ea46473efa716 SHA512 08bca2ca2243352634a8a4e614a2ffef559e37efb508a9b00afbcda062e6500b78d39861e69cc4b104195e355137d337ce2e78c2e61d46af1cd8e52de069cb04
EBUILD aioasuswrt-1.3.4.ebuild 998 BLAKE2B be6ee9b89b367abcd284c512720a5627759dc17dc4752eb71af423746f938e9ce8ba232a5b2714409f48a4bd33e6dabdd41ab4e6d1387213aeff1cd1a33fd6ad SHA512 7d374270d83a84f1414a2328ca98c8b30ab241d663fc3a5d59ed2369b8567b4c35ff8b88987f46ec4094a99ca3c95c583625a5a42c9599398564366518e2de59
EBUILD aioasuswrt-1.4.0.ebuild 996 BLAKE2B 96478d75e3cd3bc2371500f34d9d3d15d9844f35b34e4d4547d187d3b6a5faadd9f713d8a9d4e9c15a4519e041d8a386f346d7e5b4cb870fbce47c84f0754c45 SHA512 f1dc333edd9851153cf7128a3de14fdddaeb61f28e0c95a4c379f28dc5b25c7b53ddd89153ee60c3f829b4ed8811c59fc9daa75187f5f0d41443e69e60aa57cc
EBUILD aioasuswrt-1.4.0.ebuild 1002 BLAKE2B 61c503bb6fc421106dfbbcfd677154079885306d9db6e563516948c97390c052ea69c0a10e3e54b75c49382e067da15d35424eaeeb638781a6ea32802718db09 SHA512 61119f70b8aaf8c530c65d4fe136e55f5aaf7cf02f4f0034f011d234807934af9f9a52a6e7b0aa11a92d42861cfe52d954d4ca22a48099eea108e9d7dc46461f
MISC metadata.xml 458 BLAKE2B 301ae4f59eedf22107580cb876b65ea892ca40f49760d70b0d174c29e4b15ad16fde1c5e5fb3b8c392ae9f9afa930fea925f4a1c57db3890cd9da46b7e69a77b SHA512 2c29f145e464560e4f8f6c2feffbd64fe6a5ee7ac06636df0b7573eefeee503555700a337665ef73a30da7ef99aef8b3b13b58409da693b16449cb57e362f7e1

View File

@ -1,37 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Api wrapper for Asuswrt https://www.asus.com/ASUSWRT/"
HOMEPAGE="https://github.com/kennedyshead/aioasuswrt https://pypi.org/project/aioasuswrt/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 x86 amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/asyncssh[${PYTHON_USEDEP}]"
BDEPEND="dev-python/pytest-runner[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/setuptools-markdown[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 x86 amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
@ -35,3 +35,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest