mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 12:03:02 -04:00
dev-python/hunter: enable py3.10
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
@@ -3,9 +3,7 @@
|
|||||||
|
|
||||||
EAPI=8
|
EAPI=8
|
||||||
|
|
||||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
PYTHON_COMPAT=( python3_{8..10} )
|
||||||
PYTHON_COMPAT=( python3_{8..9} )
|
|
||||||
|
|
||||||
inherit distutils-r1
|
inherit distutils-r1
|
||||||
|
|
||||||
DESCRIPTION="Hunter is a flexible code tracing toolkit"
|
DESCRIPTION="Hunter is a flexible code tracing toolkit"
|
||||||
@@ -20,8 +18,9 @@ SLOT="0"
|
|||||||
KEYWORDS="~amd64 ~x86"
|
KEYWORDS="~amd64 ~x86"
|
||||||
|
|
||||||
RDEPEND="dev-python/colorama[${PYTHON_USEDEP}]"
|
RDEPEND="dev-python/colorama[${PYTHON_USEDEP}]"
|
||||||
DEPEND="
|
DEPEND="dev-python/cython[${PYTHON_USEDEP}]"
|
||||||
${RDEPEND}
|
BDEPEND="
|
||||||
|
>=dev-python/setuptools_scm-3.3.1[${PYTHON_USEDEP}]
|
||||||
test? (
|
test? (
|
||||||
dev-python/aspectlib[${PYTHON_USEDEP}]
|
dev-python/aspectlib[${PYTHON_USEDEP}]
|
||||||
dev-python/ipdb[${PYTHON_USEDEP}]
|
dev-python/ipdb[${PYTHON_USEDEP}]
|
||||||
@@ -31,28 +30,47 @@ DEPEND="
|
|||||||
dev-python/six[${PYTHON_USEDEP}]
|
dev-python/six[${PYTHON_USEDEP}]
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
BDEPEND="
|
|
||||||
dev-python/cython[${PYTHON_USEDEP}]
|
|
||||||
>=dev-python/setuptools_scm-3.3.1[${PYTHON_USEDEP}]
|
|
||||||
"
|
|
||||||
|
|
||||||
|
DOCS=( AUTHORS.rst CHANGELOG.rst README.rst )
|
||||||
PATCHES=( "${FILESDIR}/remove-setuptools_scm-upper-constraint.patch" )
|
PATCHES=( "${FILESDIR}/remove-setuptools_scm-upper-constraint.patch" )
|
||||||
|
|
||||||
distutils_enable_tests pytest
|
distutils_enable_tests pytest
|
||||||
distutils_enable_sphinx docs ">=dev-python/sphinx-py3doc-enhanced-theme-2.3.2"
|
distutils_enable_sphinx docs ">=dev-python/sphinx-py3doc-enhanced-theme-2.3.2"
|
||||||
|
|
||||||
python_compile() {
|
python_compile() {
|
||||||
distutils-r1_python_compile
|
# native extension build fails with python3.10
|
||||||
|
# https://github.com/ionelmc/python-hunter/issues/104
|
||||||
|
if [[ ${EPYTHON} == python3.10 ]]; then
|
||||||
|
SETUPPY_NOEXT="yes" distutils-r1_python_compile
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
distutils-r1_python_compile
|
||||||
if use test; then
|
if use test; then
|
||||||
"${EPYTHON}" tests/setup.py build_ext --force --inplace || die
|
"${EPYTHON}" tests/setup.py build_ext --force --inplace || die
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
python_test() {
|
python_test() {
|
||||||
|
local PUREPYTHONHUNTER
|
||||||
local -x PYTHONPATH="${S}/tests:${BUILD_DIR}/lib:${PYTHONPATH}"
|
local -x PYTHONPATH="${S}/tests:${BUILD_DIR}/lib:${PYTHONPATH}"
|
||||||
epytest -vv \
|
local epytest_args=(
|
||||||
--deselect tests/test_remote.py::test_manhole \
|
--deselect tests/test_remote.py::test_gdb
|
||||||
--deselect tests/test_remote.py::test_manhole_clean_exit \
|
--deselect tests/test_remote.py::test_gdb_clean_exit
|
||||||
|| die
|
--deselect tests/test_remote.py::test_manhole
|
||||||
|
--deselect tests/test_remote.py::test_manhole_clean_exit
|
||||||
|
)
|
||||||
|
|
||||||
|
if [[ ${EPYTHON} == python3.10 ]]; then
|
||||||
|
epytest_args+=(
|
||||||
|
--deselect tests/test_cookbook.py::test_probe
|
||||||
|
--deselect tests/test_tracer.py::test_perf_filter[pure]
|
||||||
|
--deselect tests/test_tracer.py::test_perf_stdlib[pure]
|
||||||
|
--deselect tests/test_tracer.py::test_perf_actions[pure]
|
||||||
|
--deselect tests/test_tracer.py::test_proper_backend
|
||||||
|
)
|
||||||
|
PUREPYTHONHUNTER="yes"
|
||||||
|
fi
|
||||||
|
|
||||||
|
epytest "${epytest_args[@]}"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user