dev-python/pytest-socket: drop 0.5.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:59:51 +01:00 committed by Andreas Billmeier
parent 4107c5749e
commit 4e707c4868
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 41 deletions

View File

@ -612,11 +612,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 1617 Ebuilds in total, 1606 of them have in total 1624 (42 different) licenses assigned.
There are 1616 Ebuilds in total, 1605 of them have in total 1623 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|935|
|MIT|934|
|Apache-2.0|340|
|GPL-3|104|
|BSD|88|

View File

@ -1,5 +1,3 @@
DIST pytest-socket-0.5.1.tar.gz 12034 BLAKE2B cc3ae1f988c475a1e7300bf0222b8663b152f9cd8c50059b99f6c801536756bab218fced1fc1199abe3b5f7b00f25f643c6b651cdd52ca3d680dd8e9b5149afd SHA512 e87f3350fb4db621f40c7f9061955a613fc11959789e5165717b656c78bc38f67e6323b028d900ce798b9fa48f8f9c8c37779972e8cb2b98d07548aed5edcdf8
DIST pytest_socket-0.6.0.tar.gz 12484 BLAKE2B 790025ee952a0a727185400078b7b4b8414859fbc406f4836ae0f9be5feb4e2d7693c2a91edbf8465bcc963559c50e74505cb35891a6a6558be311dd2c3de359 SHA512 f26055495ad77c94b6af53ddf3ea628e2b8ce68efcd1006457b7e87957f74ad3d30a944ef9c8f32368e8e010cfa3d2e62864ca4125a7e7c832c32f48b192ce78
EBUILD pytest-socket-0.5.1.ebuild 801 BLAKE2B b1ffc9cb3f4ffed64816bffada9eb981d0ed82bfa71ff6ff2351df4a7699e460ee45ae7398a57a954714ef3e002a728f75c82d2d26bddfeaf51b37a0ba4868e6 SHA512 e25aa7c6c6c397d6637f27274449cae1b89eee0c595c97478861500bf6a53879983483d1456b1d33df702cb3a45315b7be4b93b0e26eef5ec64bf43cd4bc8da3
EBUILD pytest-socket-0.6.0.ebuild 720 BLAKE2B 50e0df5cdf730c016b98efaf0303e77a56d0dff2641c9b41327bd6e36417f63d691b987a776622b0dae614036a2c7f3ec6f723e6ad8bdd2014746dbe6b513515 SHA512 6c612fa1d67e58f7d7189332f2e8a6491f9e5513fe0ee17f29fa0886f28fdc90b8ed61f7cd32ce1e2d007258f48fbaa9b65f0bcbc034fd77eec8a2d0b510d9ce
MISC metadata.xml 524 BLAKE2B 2cffc60048d94a142ded5186cbb0a9116c7923f0899cb03c83c3efcd26af9ae6a1e3a0c38c533b7785302f7f9324644bdf43a634883b2cdb1838e7629d39a702 SHA512 433b6f976553d68030ddef00e441693a7974901a9fd9582de91c4f143fe0fd0498fab52f22dad0202cdc9e8968ef8968377f7b0b299bcdb9860d89a3a7581900

View File

@ -1,37 +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=poetry
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Pytest Plugin to disable socket calls during tests"
HOMEPAGE="https://github.com/miketheman/pytest-socket/ https://pypi.org/project/pytest-socket/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/pytest-3.6.3[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest
src_prepare() {
default
cat pyproject.toml | grep -v "LICENSE" | grep -v "README.md" > x && mv x pyproject.toml
}