dev-python/respx: drop 0.20.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 18:07:22 +01:00 committed by Andreas Billmeier
parent f28096463c
commit 6abaa2bd5d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 35 deletions

View File

@ -612,14 +612,14 @@ 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 1598 Ebuilds in total, 1587 of them have in total 1604 (42 different) licenses assigned.
There are 1597 Ebuilds in total, 1586 of them have in total 1603 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|919|
|Apache-2.0|340|
|GPL-3|100|
|BSD|88|
|BSD|87|
|LGPL-3|23|
|GPL-2|20|
|all-rights-reserved|15|

View File

@ -1,5 +1,3 @@
DIST respx-0.20.1.tar.gz 25557 BLAKE2B 2326887d51618d5b66d73645205a0ad28d1b7205a2db4b5d3180783a1c9dd937756b8a4074a00f76c7bf29585442833503d4a8a85fc0ad9cd3208e907e4923f9 SHA512 bade20a2925e8564fb55ab45030d79c843b360a3283b6e1eacbdb61e94b9096056eeb0e0d0719be0b96f367bae28576f9a77bbc0b0f44c552975b215f203f019
DIST respx-0.20.2.tar.gz 26080 BLAKE2B ccbd0bd26deb98a98989a04ac31ad0747086dc3552368f820afab51b953bfdefd02d3167ae638f3bc6e91b983f931b3ac6c4ba2dcbc7d13392a5da0c48bc59b5 SHA512 20c831eaf51551188470f2553c9a3d93397d220563d1bd1d76f8ba24636cc0c4e2ee55f08fe5583e926a938b396b8b93c009e54cb8418ef8c10a313c6e258721
EBUILD respx-0.20.1.ebuild 666 BLAKE2B 1211a515bfd333bc60a57b43b79ed96f1d3d116dbb9e8165bc1736eb593b89c23c219867901af4432e7d874b0f7409cea9da2fe1e9637b8da7edf8da5b4440d8 SHA512 5ffe7625e9d33f6454d7c6709aa3bb24315eb1511578055d62c9d4d98e7392e73a8dba0e525b50109bb5ec96f49c6b338f8a4257d08c6784800daf5ef24ad7e0
EBUILD respx-0.20.2.ebuild 666 BLAKE2B 1211a515bfd333bc60a57b43b79ed96f1d3d116dbb9e8165bc1736eb593b89c23c219867901af4432e7d874b0f7409cea9da2fe1e9637b8da7edf8da5b4440d8 SHA512 5ffe7625e9d33f6454d7c6709aa3bb24315eb1511578055d62c9d4d98e7392e73a8dba0e525b50109bb5ec96f49c6b338f8a4257d08c6784800daf5ef24ad7e0
MISC metadata.xml 505 BLAKE2B aa6f8c72fb543b60cef233dc7554befef7d7bff367388fdbd8b2cb1626c61e492b5990f341ba2a9388ffed8c73c2dafc6c4b12277c5a8a3dde33650bf8039044 SHA512 1a88f2f5d95a5cd63920a9bba3072af463fb15edb8ce6eac93c2fc06dd1ff4283ae320f319f6982e1ad4b6d63e7e8d29daa967911d3b62326246c2d6fd4a79e9

View File

@ -1,31 +0,0 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="A utility for mocking out the Python HTTPX and HTTP Core libraries."
HOMEPAGE="https://github.com/lundberg/respx https://pypi.org/project/respx/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/httpx-0.21.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest