bump pytest-socket-0.5.1

This commit is contained in:
Andreas Billmeier 2022-04-30 21:16:52 +02:00 committed by Andreas Billmeier
parent 7e8aedee4d
commit 32cd7538aa
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 2 deletions

View File

@ -506,11 +506,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 1706 Ebuilds in total, 1699 of them have in total 1703 (35 different) licenses assigned.
There are 1707 Ebuilds in total, 1700 of them have in total 1704 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1038|
|MIT|1039|
|Apache-2.0|306|
|GPL-3|106|
|BSD|90|

View File

@ -1,3 +1,5 @@
DIST pytest-socket-0.4.1.tar.gz 10187 BLAKE2B cfee7f353ed622e88be246fcf2552c713a87cfc494ce25ef68ee220554cfd8a7521861713db1185348264469ca5dd29986aa06ffc2b8eceae84b6196795d8bdd SHA512 d929c447767522ead4b6a2e1f27cda8459674a099ac222bf194a69e222837b97101cc6f3ab3eb177f2cf97af8d2aa7538fe4acdfc6eb63d11a902c3e09d0f48f
DIST pytest-socket-0.5.1.tar.gz 12034 BLAKE2B cc3ae1f988c475a1e7300bf0222b8663b152f9cd8c50059b99f6c801536756bab218fced1fc1199abe3b5f7b00f25f643c6b651cdd52ca3d680dd8e9b5149afd SHA512 e87f3350fb4db621f40c7f9061955a613fc11959789e5165717b656c78bc38f67e6323b028d900ce798b9fa48f8f9c8c37779972e8cb2b98d07548aed5edcdf8
EBUILD pytest-socket-0.4.1.ebuild 780 BLAKE2B 58a925a915d2d9f90940a4bfbe60dcc751e24a44f26420bb0cf03b2bfa87b132254e78084f7f88d65642c1108c6f9f531ea05fa4991c2fb9d2915302c8774285 SHA512 334bbbebafcfa3be814ad617f9ee3e7cf93742fc3d8eaecc0e6cb0ee2e65929b34767267300481ecd8dd8d51135bc33532646aeb5ad3dd6083329fc521001dd8
EBUILD pytest-socket-0.5.1.ebuild 784 BLAKE2B 58d1c57c5b3f02c535efd162da8537e0e550622ebba11592f8bc4ab0c4d1628a4bcd24fbb8920ea427444b9fde2a615618b9536360c4e4c3d903e2084f0b1a85 SHA512 5355a10f6b9fa9e6d327798cf57b699aa5629cd02c5f5a20517de22372c474f639fb91028f96f030f6ddd44180e0ca031dca718b04dbb54b1e3074a46ba00a73
MISC metadata.xml 458 BLAKE2B deaf1bd6fdbeb5af629f8ae2e039fca3c03040a749784730eea3c70824f4b8d0890a9aa8849eac7efddd367e833fa38d57b120932f0e7c66fd5276132021f685 SHA512 f58095b789edabc7c01592b2a993b890f59c0829758a7180e890414ccd9d30094d21622b38af2541a3b91d0b9bbb387ba397bffa3c827df504e0aad24532e3b9

View File

@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Pytest Plugin to disable socket calls during tests"
HOMEPAGE="https://github.com/miketheman/pytest-socket/ https://pypi.org/project/pytest-socket/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/pytest-3.6.3[${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
}