From 66a7d60eb8beba754ba79c2752cbf70fcf741b0b Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 5 Mar 2024 07:05:51 +0000 Subject: gentoo auto-resync : 05:03:2024 - 07:05:50 --- dev-python/flaky/Manifest | 2 +- dev-python/flaky/flaky-3.7.0-r4.ebuild | 41 ------------------------------ dev-python/flaky/flaky-3.7.0-r5.ebuild | 46 ++++++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+), 42 deletions(-) delete mode 100644 dev-python/flaky/flaky-3.7.0-r4.ebuild create mode 100644 dev-python/flaky/flaky-3.7.0-r5.ebuild (limited to 'dev-python/flaky') diff --git a/dev-python/flaky/Manifest b/dev-python/flaky/Manifest index 3a0ef151772a..d2fb645da1fd 100644 --- a/dev-python/flaky/Manifest +++ b/dev-python/flaky/Manifest @@ -1,3 +1,3 @@ DIST flaky-3.7.0.tar.gz 29591 BLAKE2B 747fbda71055bba937abf3e7b97691c1f4b222f085069d1815d5a9eba669464d2ed5d6dcf1842ae82f1970de5cd5e3aea5b12476bfa2d9282549ad0cc62901e9 SHA512 b399f6e1323d6ca341803ac6f1eb318bf24dc37182d0b49b89bb81b9466dd36271ad6dbb9f48ea6fa4760ee631f1482bb6f49c64f4d4520c40634089c1b64f9a -EBUILD flaky-3.7.0-r4.ebuild 1108 BLAKE2B 99fa07558d63654d790cc368cfd117071283bc0f54fc4cfefc9b2949baa342f5f8f604ec30ca25dc784a5c133f797ff0254d3a7395d852ff2c527bb31a5cc405 SHA512 cdbaf56ffb5dfa3708ffbd253cb047764d3ecda7b284c495e2fa5c32d2b6b3a4028930d57b1eb3b624f13cc43ea918e55a04e7dfdc09a4e69d8536728a90d4d5 +EBUILD flaky-3.7.0-r5.ebuild 1227 BLAKE2B 9c25d355d44e891b1912bdb010f93ed1bcbce5fffe3693e3d0f2cb291ea438118016ea52b50391b6bd0b6919b71f1705eae21839f950b0a690c51150d766547f SHA512 bd40f57a14213028d1adab04d4a4e709e3439e1e6a2074c08f57fd88b066303af8f56066e3dbab2f25c2933b39aaab7b29ad44ae9260450b3f10c38953d47a18 MISC metadata.xml 395 BLAKE2B 06158c93157879bd7b181e833d84ea33a315103214cfaa54a092f965900f05f705183b74738543ac6bb83beb62de562a59ef43b734a74c9f3d0d5d677e8e00d1 SHA512 2d237ebccf03db7fc42fac5370f1046834646bdfc5755e2298e9cac131363e47e496d9d0f0d00ad914764bcbc2deaee8b7182ae3c32e18f95766351da50028aa diff --git a/dev-python/flaky/flaky-3.7.0-r4.ebuild b/dev-python/flaky/flaky-3.7.0-r4.ebuild deleted file mode 100644 index 31706c8905b4..000000000000 --- a/dev-python/flaky/flaky-3.7.0-r4.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} pypy3 ) - -inherit distutils-r1 pypi - -DESCRIPTION="Plugin for pytest that automatically reruns flaky tests" -HOMEPAGE=" - https://github.com/box/flaky/ - https://pypi.org/project/flaky/ -" - -SLOT="0" -LICENSE="Apache-2.0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=" - test? ( - dev-python/genty[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -src_prepare() { - rm flaky/flaky_nose_plugin.py || die - sed -i -e '/flaky_nose_plugin/d' setup.py || die - distutils-r1_src_prepare -} - -python_test() { - epytest -k 'example and not options' --doctest-modules test/test_pytest/ || die - epytest -p no:flaky test/test_pytest/test_flaky_pytest_plugin.py || die - epytest --force-flaky --max-runs 2 test/test_pytest/test_pytest_options_example.py || die -} diff --git a/dev-python/flaky/flaky-3.7.0-r5.ebuild b/dev-python/flaky/flaky-3.7.0-r5.ebuild new file mode 100644 index 000000000000..155976a6db4c --- /dev/null +++ b/dev-python/flaky/flaky-3.7.0-r5.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Plugin for pytest that automatically reruns flaky tests" +HOMEPAGE=" + https://github.com/box/flaky/ + https://pypi.org/project/flaky/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" +IUSE="test" +RESTRICT="!test? ( test )" + +# https://github.com/box/flaky/issues/198 +RDEPEND=" +