dev-python/spiderpy: remove olds, cleanup, enable pytest

This commit is contained in:
Andreas Billmeier 2022-10-18 00:00:44 +02:00 committed by Andreas Billmeier
parent a6aee6e00a
commit 8d2c55129c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 6 additions and 6 deletions

View File

@ -586,9 +586,9 @@ There are 1482 Ebuilds in total, 1475 of them have in total 1485 (34 different)
|CC0-1.0|1|
|GPL-2+|1|
(Last counted: 17/10/2022)
(Last counted: 18/10/2022)
I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources.
A big thanks goes to Iris for reviewing this README.
Last updated: 17/10/2022
Last updated: 18/10/2022

View File

@ -1,3 +1,3 @@
DIST spiderpy-1.6.1.tar.gz 7087 BLAKE2B f1241f682dd109f353c88ddff51ba799229981c7c02c561356769206a73c754bcb10a21f3a1bafc54e5120522db1b51df8dad7916908d9c4cf282d06d5c136cf SHA512 7b9be9b8b738e9f4869a5309309d55e5f5b3e9a154dbe6aa1a868d396b4ea63e65668b08f687745efc6ef98b9dedc0aabc3b2ee3c4280e43aa737f8f57076b59
EBUILD spiderpy-1.6.1.ebuild 781 BLAKE2B 47d53fcfa2da39a0245ad49824aeaacbbb14c232b4cef0cb78c16bf12329d404084451b692ca366edd5698b1ea9607c899ac3d017f7bc02238dedbca835c0f48 SHA512 5b749876429b3e77480aa63be947c1133afac9d38bda266658384baf065740a18fc90a5f49be25f704e85e6bb9484fee66183d593986f4612df8b34efe8ac7a4
EBUILD spiderpy-1.6.1.ebuild 748 BLAKE2B c9e19a44ce845be1de6da17b229660586fd758f1d2a7d8047c19bc8c88aed15fc97e7db8919aac2558210c57c8da22cdf89f1bda8623210566752e8b42143783 SHA512 1e65f4bf9a630ad956c0d2d486dd8abeaa64b79024dbb79381a1d244dafa2ff5eb3db58517b5b702fb400c3d041023b40a48a80c977087f4664983f0a53b0a13
MISC metadata.xml 455 BLAKE2B b0216d4772e94dad3091266c7911c35769b30c1fdc2336dff64d047c86dd0b61fe721b4e6e7be9365247cc23311a0365058d279eee5c4d7f30422ee4bcf8d0bb SHA512 f2ad62345c9d20c08a18c0824a61623078653dfb79d3b37ca1827cd1401ea08a1751ad0236fda47157b780f87f3741114e1a41501c066d901c15c360baf4095f

View File

@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@ -23,11 +23,11 @@ RDEPEND=">=dev-python/requests-2.26.0[${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