Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-18 08:53:37 +01:00 committed by Andreas Billmeier
parent 5a35539f54
commit 3887271707
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 21 additions and 13 deletions

View File

@ -612,9 +612,9 @@ There are 1732 Ebuilds in total, 1725 of them have in total 1729 (34 different)
|CC0-1.0|1|
|GPL-2+|1|
(Last counted: 15/02/2023)
(Last counted: 18/02/2023)
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: 15/02/2023
Last updated: 18/02/2023

View File

@ -1,3 +1,3 @@
DIST codecov-2.1.12.tar.gz 20866 BLAKE2B dbccde91bf2290eb403a9f52583b1bb4629860a200bc4a592e2e2ad48443c77c3de36c02503f3716b16d941016296f20071ab7f34227058ccdc7c7f8d925d909 SHA512 9d364844dc864996e7d65d6210c7bca345a67d5aa61bcdd351591f0aeadcd2662101e59449e8a86b8341d9fc840889cb635b2c41c6287001b598ee1647c86b02
EBUILD codecov-2.1.12.ebuild 759 BLAKE2B 20a6725c184797b5d2d6f679fe0af1266f7a52f8bb74e1e665c7f35e9258885763d84d015134be5334dbf0a0f0337c22a8549becb42e1b90bd66e1811f82012f SHA512 32a9d0380be6759c0b26054861d6f587a883ef48813d30a42c45cf75144bef7f674a3450fb87087095733d7236b89cf435047fb0455a4b2dced1455a900dc53b
EBUILD codecov-2.1.12-r1.ebuild 1052 BLAKE2B 02c6aa7b1a079fa24a1f70b011aaa1f5d0f0218ad40e10321659c8aaf9db3cd508c54a74e54b23125f46a65a09d953ed34b284e56273c0021bb23a90a3491ceb SHA512 92ed5009941b800eb8ee8952137959c23e8b2bc18e9619bfbbddea17dd6070981630dfc02d40aa45fa3b5374ca8b8046824070a833d53ceaaf0c466626031ed7
MISC metadata.xml 509 BLAKE2B 997b08d67725238f708687b5f5a1a05da623a720046afc17afa110b2f3f4cd8258916d3e75c7374497a7d2bc782ad8ad50e9bf66c891e05875650ed9eeb882c3 SHA512 4154073bc04fd5b4a950ec63faaf8e63c91112c73080ffb60c0f54cc104c7b4b7887e919945cf5a12a3f8ab5470d39802e2b2f9384e7682db0faf5f30000612b

View File

@ -1,4 +1,4 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@ -21,14 +21,22 @@ DOCS=""
RDEPEND=">=dev-python/requests-2.7.9[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
python_prepare_all() {
# The tests does not follow the naming convention
rm -r "${S}/tests"
distutils-r1_python_prepare_all
}
distutils_enable_tests pytest
#BDEPEND="
# test? (
# dev-python/pytest[${PYTHON_USEDEP}]
# dev-python/ddt[${PYTHON_USEDEP}]
# dev-python/mock[${PYTHON_USEDEP}]
# dev-python/pytest-cov[${PYTHON_USEDEP}]
# dev-python/funcsigs[${PYTHON_USEDEP}]
# dev-python/requests[${PYTHON_USEDEP}]
# dev-python/black[${PYTHON_USEDEP}]
# )"
#
# distutils_enable_tests pytest