dev-python/pytest-socket: add 0.7.0

Closes: #3054
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-03-10 20:37:21 +01:00
parent 4f5e1c4089
commit 5618ae8d37
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 35 additions and 5 deletions

View File

@ -617,11 +617,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 1903 Ebuilds in total, 1892 of them have in total 1911 (42 different) licenses assigned.
There are 1904 Ebuilds in total, 1893 of them have in total 1912 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1071|
|MIT|1072|
|Apache-2.0|440|
|GPL-3|127|
|BSD|105|

View File

@ -1,3 +1,5 @@
DIST pytest_socket-0.6.0.tar.gz 12484 BLAKE2B 790025ee952a0a727185400078b7b4b8414859fbc406f4836ae0f9be5feb4e2d7693c2a91edbf8465bcc963559c50e74505cb35891a6a6558be311dd2c3de359 SHA512 f26055495ad77c94b6af53ddf3ea628e2b8ce68efcd1006457b7e87957f74ad3d30a944ef9c8f32368e8e010cfa3d2e62864ca4125a7e7c832c32f48b192ce78
EBUILD pytest-socket-0.6.0.ebuild 720 BLAKE2B 50e0df5cdf730c016b98efaf0303e77a56d0dff2641c9b41327bd6e36417f63d691b987a776622b0dae614036a2c7f3ec6f723e6ad8bdd2014746dbe6b513515 SHA512 6c612fa1d67e58f7d7189332f2e8a6491f9e5513fe0ee17f29fa0886f28fdc90b8ed61f7cd32ce1e2d007258f48fbaa9b65f0bcbc034fd77eec8a2d0b510d9ce
DIST pytest_socket-0.7.0.tar.gz 12389 BLAKE2B e99e607e1a614c1e59a1d0d3a2eb00124e43906af5b25b812e7b7975f80e7b31bf5900403e1618e41583e2438bbd25a17fd984f9460356876305de748a376bd0 SHA512 b32d0077287cbdea19c65f750f904084aeb9ede6b95916a471b4d16ba89648a77b799d33d1b33e1aee0fa7560bd9fe532fc1e59406aee08648efe35499fc936b
EBUILD pytest-socket-0.6.0.ebuild 720 BLAKE2B 46649e68edef894a34a7a7f975e7bd8ebd9cc98c6613b30bb02f1cee0bc36180fdde9d5e44cf06f22d802bf8cb2ec1b4226504f77b35241ee3e54902c54f72f3 SHA512 398612e054fe9e39ba511512144e4cc8ff8fa993c79df0585562bfb5da1832a2365fdc0c19e06154b0e5789956374791399357f8f295cb303b59413d836fd6d1
EBUILD pytest-socket-0.7.0.ebuild 679 BLAKE2B 0b58dafc728c83530841cb2a765aceac4312ed76565931ac96d02c38a9606a30291cdcda9fec7987707368065b1bda0035a21da44c5e9915fcdaa527ef8fc3aa SHA512 541056734bd72ade2ba718e6046e38f8a8511c86b6df3bf1d3aab8aa90b187f3ddc689d9eb1aef8888fb9ddafc57bf70da7770e2c18eea6a3c2923f9a5cfbe5d
MISC metadata.xml 524 BLAKE2B 2cffc60048d94a142ded5186cbb0a9116c7923f0899cb03c83c3efcd26af9ae6a1e3a0c38c533b7785302f7f9324644bdf43a634883b2cdb1838e7629d39a702 SHA512 433b6f976553d68030ddef00e441693a7974901a9fd9582de91c4f143fe0fd0498fab52f22dad0202cdc9e8968ef8968377f7b0b299bcdb9860d89a3a7581900

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi

View File

@ -0,0 +1,28 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=poetry
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-6.2.5[${PYTHON_USEDEP}]"
distutils_enable_tests pytest
src_prepare() {
default
cat pyproject.toml | grep -v "LICENSE" | grep -v "README.md" > x && mv x pyproject.toml
}