diff --git a/dev-python/hunter/Manifest b/dev-python/hunter/Manifest index 8fff7a232b..8d03869834 100644 --- a/dev-python/hunter/Manifest +++ b/dev-python/hunter/Manifest @@ -1,2 +1 @@ -DIST hunter-3.3.5.tar.gz 536004 BLAKE2B 2851449ab6c9e3b71a546f5464eda272053060bdc6fb2d75f3e746c4d103b25c2ecfbfd0449521a98fe12851d62044bb0f3bc9d083e1496f861679eff827eafc SHA512 7c8700ae010bc58c4fefb1f6a343ee4bb375e55c2ddf3ab6a7d9f94102f1bafa50d3723985031a7633be2928a8b47a2bad2c3a7676df6d6a1dee2e38dbf6c02d DIST hunter-3.3.8.tar.gz 536260 BLAKE2B cdb048798dd831229f3c3ff784b16f94ee45c54bc35eb29e9b228f2736c103dbc39357df82476a2b25310501d33be67474f85c2f5a97a61baca20c8dfc5a725f SHA512 4d715893c805afb5ca709f8c8ce20fbf5ec8540a06c7536862d941a5a4f45b0721f8cd3aa2eeb79c072152d243f4d0ce949431defbdc8c17831f744c3f7ff58a diff --git a/dev-python/hunter/hunter-3.3.5.ebuild b/dev-python/hunter/hunter-3.3.5.ebuild deleted file mode 100644 index fea16deccd..0000000000 --- a/dev-python/hunter/hunter-3.3.5.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 - -DESCRIPTION="Hunter is a flexible code tracing toolkit" -HOMEPAGE=" - https://github.com/ionelmc/python-hunter - https://pypi.org/project/hunter -" -SRC_URI="https://github.com/ionelmc/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/python-${P}" -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-python/colorama[${PYTHON_USEDEP}]" -DEPEND=" - ${RDEPEND} - test? ( - dev-python/aspectlib[${PYTHON_USEDEP}] - dev-python/ipdb[${PYTHON_USEDEP}] - dev-python/manhole[${PYTHON_USEDEP}] - dev-python/process-tests[${PYTHON_USEDEP}] - dev-python/pytest-benchmark[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - ) -" -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] - >=dev-python/setuptools_scm-3.3.1[${PYTHON_USEDEP}] -" - -PATCHES=( "${FILESDIR}/remove-setuptools_scm-upper-constraint.patch" ) - -distutils_enable_tests pytest -distutils_enable_sphinx docs ">=dev-python/sphinx-py3doc-enhanced-theme-2.3.2" - -python_compile() { - distutils-r1_python_compile - - if use test; then - "${EPYTHON}" tests/setup.py build_ext --force --inplace || die - fi -} - -python_test() { - local -x PYTHONPATH="${S}/tests:${BUILD_DIR}/lib:${PYTHONPATH}" - epytest -vv \ - --deselect tests/test_integration.py::test_pid_prefix[True-CodePrinter] \ - --deselect tests/test_integration.py::test_pid_prefix[False-CodePrinter] \ - --deselect tests/test_integration.py::test_pid_prefix[True-CallPrinter] \ - --deselect tests/test_integration.py::test_pid_prefix[False-CallPrinter] \ - --deselect tests/test_remote.py::test_manhole \ - --deselect tests/test_remote.py::test_manhole_clean_exit \ - --deselect tests/test_tracer.py::test_perf_stdlib[cython] \ - || die -}