dev-python/pytest-timeout: add 2.2.0

Closes: #3093
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-03-24 09:34:19 +01:00
parent 2987ea0ee5
commit e0d885b6fe
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 41 additions and 7 deletions

View File

@ -617,12 +617,12 @@ 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 1936 Ebuilds in total, 1925 of them have in total 1944 (42 different) licenses assigned.
There are 1939 Ebuilds in total, 1928 of them have in total 1947 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1090|
|Apache-2.0|445|
|MIT|1091|
|Apache-2.0|447|
|GPL-3|130|
|BSD|108|
|LGPL-3|25|

View File

@ -1,3 +1,5 @@
DIST pytest-timeout-2.1.0.tar.gz 18386 BLAKE2B 1c84b67e8d07056f9c5b188e467832d4aa292ce1047da6cb13b2939962d2599853db134b16ff3a1a953cbdc1c1772be961eadc9925b32f8dbe514938ede90d40 SHA512 5750e5183669ed9b83fbb76bd7fc9fc1f5f6eef3d9b675dc44f6c7edfd2c6d15739d71e845ededaa192c93da73026ac3376a3295be9f7d3f3eac325660ce7bf3
EBUILD pytest-timeout-2.1.0.ebuild 794 BLAKE2B 5191792a1dd44fd7e74dd0a1424ef2539321caa21bfea60bf74a421286e742e75c4e5028fa06c630ad8ef049156aa1135f97bad056d8ea6ba608a02f6ff00363 SHA512 8873202b09704d0bebd197ee3cac5213c59ce70ab430cc94b7f2dfbd31b1a30464204ac34dd6731ae0ccca582a5bdb307a91dfee0bd5d2cba3e22d7a4f104448
DIST pytest-timeout-2.2.0.tar.gz 16391 BLAKE2B 550b803ed4a64ab0fead7f6e61297ea6bfc6e59988998c5383fdccdebb3664fe9f6651314bb1a439f6431e844bb770feb50bedcabd568e4dfea7526d8c328dd7 SHA512 11a0c4e958b324bff3e149bf2a7dc5bf6ab6549405d5061856f8f1ad0e43df1cddce83df4c804b717276bfbcfcf60ee6b400625d0f4e4e73c98785146c22164f
EBUILD pytest-timeout-2.1.0.ebuild 698 BLAKE2B acf8fd899537c121d3edd8302359c2e21549fd0aa90ded49ab069a45ed61bfb0172cec9f99ce40a06201d52745354ef9588d6aa22dbee97e9a8de9a4a7a08036 SHA512 449169fe9c61027b59862326a6b80a47bc40a77033fbbc6f38a4822011d1c555ead7a46f1b47426777c5dd12d993a4818eef18b2557fc8701b2ab8189a335b90
EBUILD pytest-timeout-2.2.0.ebuild 716 BLAKE2B f192561b72fa29b30689be0d7f0bd64c4cc2f1563e5a45abaa3628f12ae1c9a2a11ea8db6661cff5e190d04285a88fed7ed64a7a7fdc07d1916d115db7490901 SHA512 1e95a939e8c2ce8f16ce40df479207fb17b9129d26b3240dc43ad60595531106df162504ee3c618dacc31e9ea4cafd69fbfb7adf86c1d5e2e6eed2826154e0d0
MISC metadata.xml 458 BLAKE2B 26c33def9c4938e32eb3704d141605a94e997206154cfc3ab2a6bbbfa9955d672a0a071da6c9ee993bdf7fad891bd1074d35b06babc989fdac0cd084391f74f4 SHA512 3eaf00fa7c31a053fd5ea02d440318f13b9688ed0e9541fbedb6a367bc7a0d8542c4065c61444bf967bc7a74b0ff800f6f2e737c3731d635d37b1f887605a38d

View File

@ -1,11 +1,11 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 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} pypy3 )
PYTHON_COMPAT=( python3_{11..12} )
inherit distutils-r1 pypi
@ -14,7 +14,7 @@ HOMEPAGE="https://pypi.org/project/pytest-timeout/"
SLOT="0"
LICENSE="MIT"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
# do not rdepend on pytest, it won't be used without it anyway
# pytest-cov used to test compatibility

View File

@ -0,0 +1,32 @@
# Copyright 1999-2024 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_{11..12} )
inherit distutils-r1 pypi
DESCRIPTION="pytest plugin to abort hanging tests"
HOMEPAGE="https://pypi.org/project/pytest-timeout/"
SLOT="0"
LICENSE="MIT"
KEYWORDS="amd64 arm arm64 x86"
DOCS="README.rst"
# do not rdepend on pytest, it won't be used without it anyway
# pytest-cov used to test compatibility
BDEPEND="
test? (
dev-python/pexpect[${PYTHON_USEDEP}]
!hppa? (
$(python_gen_cond_dep '
dev-python/pytest-cov[${PYTHON_USEDEP}]
' python3_{10..11} pypy3)
)
)"
distutils_enable_tests pytest