dev-python/pytest-xdist: drop 3.2.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 18:00:16 +01:00 committed by Andreas Billmeier
parent e7f9570578
commit 3f0d62b302
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 49 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 1615 Ebuilds in total, 1604 of them have in total 1622 (42 different) licenses assigned.
There are 1614 Ebuilds in total, 1603 of them have in total 1621 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|933|
|MIT|932|
|Apache-2.0|340|
|GPL-3|104|
|BSD|88|

View File

@ -1,5 +1,3 @@
DIST pytest-xdist-3.2.1.tar.gz 76362 BLAKE2B a5cea5bab1176554bd0d1ebfff5400f60bd43964ae13c7f77ad77fc257db32ba0a0d6f2f3ec16211e48852a6bfd02a0949d618c7f2f6a8da11dd2843d88565a4 SHA512 ea42bea8b4df3d77ef680cba81f76f9f79d0ffcaad6f5f879cc82c53203d36ffe26f233dd6c5d1cbea22b43d257f0f4e6be793116bb281956316c44fc412f9b7
DIST pytest-xdist-3.3.1.tar.gz 77751 BLAKE2B 483774b3fefefb513cc3021c49fd816089869a885ba098588e503530ff3b2dfb77612aff80a7147ff33fd8c1fe69c4fda40133de94007e41c699ad763d112e92 SHA512 f439ff1acf65a8df025fec847602ebdc5355b2099501845f8cde3c5287299a9c3102fa6dd6fc82a30bc016893556a24b0b5409323f5db4015e77c711a7b5c59f
EBUILD pytest-xdist-3.2.1.ebuild 1020 BLAKE2B ba031e1730fcf7be585812fe68850e311f1e199f2ed828de92be411fbac30c70eaaee1abe0123de38aae006c001b8fbf53e5b9a43759fc6aa37f42ae61c685c9 SHA512 f3bb232db5af5952a6279c4691fd41054ff027bfdc6f0109c9d6b8d8f2e3aa96daf01c05a5fc513acd84561b8ad85dcba2a5cc2265b3678a21ebdba22efc9fd8
EBUILD pytest-xdist-3.3.1-r1.ebuild 962 BLAKE2B ea3896ac2fbcc5ac9ac0db0f59817fcc9f54cb666202fac93081e7f2fceef649684698fc15df9350f67644677d364b0dccc61ee8f107460382c84c57992fe837 SHA512 08469da4bb4d165a86ff9c1e2217afcffd481b8805737f66b935dd43e542cf66555b76bbf04fd33d6a4ab9021beb2b3fddf6d3f2b0acfa01f0c2fc5cabc5abe4
MISC metadata.xml 560 BLAKE2B 1df999344406050f8b3cc8c82541e71b69eff6dde9a26f6418744834109808344c25c56edb61e8f56cacac11e7810e401b667a5b94f9e76d7bd767eabdc506d6 SHA512 d0625300a548d08d13962e7700da4b24b69bf990be4fe182a27c87a8048147cb0a0a70031cd6c51eba6cfe940c720e6d6232d99562a723e2621b90ae42bd237e

View File

@ -1,45 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
DESCRIPTION="Distributed testing and loop-on-failing modes"
HOMEPAGE="
https://pypi.org/project/pytest-xdist/
https://github.com/pytest-dev/pytest-xdist/
"
SLOT="0"
LICENSE="MIT"
KEYWORDS="amd64 arm arm64 x86"
RDEPEND="
dev-python/execnet[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
>=dev-python/pytest-6.2.0[${PYTHON_USEDEP}]
dev-python/pytest-forked[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-python/filelock[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
python_test() {
# disable autoloading plugins in nested pytest calls
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
# since we disabled autoloading, force loading necessary plugins
local -x PYTEST_PLUGINS=xdist.plugin,xdist.looponfail,pytest_forked
epytest
}