From 97857ed05d6249463867b34e35f1c60ad949696d Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Tue, 2 May 2023 09:28:10 +0300 Subject: [PATCH] dev-python/pytest-benchmark: drop 3.4.1 Signed-off-by: Alfred Wingate --- .../pytest-benchmark-3.4.1.ebuild | 67 ------------------- 1 file changed, 67 deletions(-) delete mode 100644 dev-python/pytest-benchmark/pytest-benchmark-3.4.1.ebuild diff --git a/dev-python/pytest-benchmark/pytest-benchmark-3.4.1.ebuild b/dev-python/pytest-benchmark/pytest-benchmark-3.4.1.ebuild deleted file mode 100644 index e5e14f0..0000000 --- a/dev-python/pytest-benchmark/pytest-benchmark-3.4.1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..9} ) -inherit distutils-r1 multiprocessing - -DESCRIPTION="py.test fixture for benchmarking code" -HOMEPAGE="https://github.com/ionelmc/pytest-benchmark" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/aspectlib[${PYTHON_USEDEP}] - dev-python/elasticsearch-py[${PYTHON_USEDEP}] - dev-python/py-cpuinfo[${PYTHON_USEDEP}] - dev-python/pygal[${PYTHON_USEDEP}] - dev-python/pygaljs[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] -" -DEPEND=" - dev-python/sphinx-py3doc-enhanced-theme[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - dev-python/freezegun[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] - ) -" -BDEPEND=" - dev-python/sphinx -" - -distutils_enable_tests pytest - -DOCS=( "README.rst" ) - -python_prepare_all() { - sed -i\ - -e "/def test_help(testdir):/i@pytest.mark.xfail(reason='Not quite sure why it fails in the ebuild, please tell if it succeeds')" \ - -e "/def test_help_compare(testdir, args):/i@pytest.mark.xfail(reason='Not quite sure why it fails in the ebuild, please tell if it succeeds')" \ - tests/test_cli.py || die - distutils-r1_python_prepare_all -} - -python_compile_all() { - if use doc; then - sphinx-build -b html docs docs/_build/html || die - fi - sphinx-build -b man docs docs/_build/man || die -} - -python_test() { - distutils_install_for_testing - epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" -} - -python_install_all() { - use doc && HTML_DOCS=( docs/_build/html/. ) - doman docs/_build/man/* - distutils-r1_python_install_all -}