dev-python/hunter: python_targets_python3_12
Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
This commit is contained in:
parent
ad785894d3
commit
91bceab106
|
@ -1,2 +1 @@
|
||||||
DIST hunter-3.4.3.gh.tar.gz 538017 BLAKE2B 92ad2b653d0285059ea2f005c6ba9564f357e1ea438a0fe30087f88efa202aaa504bad65985a88484cf7178c24432ac44705098dabc2667328c71e0ee38f718c SHA512 921bb48ac5d384977908dda060e178e623eb7c1e4298cbf3c0a273cab23695f2a2a60221afb257e54cd144399d2b3b55b80ae9a2c7f71ba452894cc86112d5f7
|
|
||||||
DIST hunter-3.5.1.gh.tar.gz 543137 BLAKE2B a06966f78fd442231c08e2aafe57702f7cc16e5db6aa9a1da7288e4a3a05ff9db3dfc49352641610ade31cb967996c3add64f07ddf637f46e5d269e9d0363a9f SHA512 2c302fa8b88c07be5361f11d8c250c5673be9dc691df9e966959eed45eaf0a8499ae8a6381256d83ab7219c818ed981628fb3299ef5d17d7b1d95c43a2fc63a7
|
DIST hunter-3.5.1.gh.tar.gz 543137 BLAKE2B a06966f78fd442231c08e2aafe57702f7cc16e5db6aa9a1da7288e4a3a05ff9db3dfc49352641610ade31cb967996c3add64f07ddf637f46e5d269e9d0363a9f SHA512 2c302fa8b88c07be5361f11d8c250c5673be9dc691df9e966959eed45eaf0a8499ae8a6381256d83ab7219c818ed981628fb3299ef5d17d7b1d95c43a2fc63a7
|
||||||
|
|
|
@ -1,69 +0,0 @@
|
||||||
# Copyright 1999-2022 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=8
|
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{8..10} )
|
|
||||||
DISTUTILS_USE_PEP517=setuptools
|
|
||||||
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}.gh.tar.gz"
|
|
||||||
S="${WORKDIR}/python-${P}"
|
|
||||||
LICENSE="BSD-2"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64"
|
|
||||||
|
|
||||||
# python-hunter only works if deps are vendored (some .pth stuff)
|
|
||||||
#RDEPEND="
|
|
||||||
#>=dev-python/colorama-0.4.4[${PYTHON_USEDEP}]
|
|
||||||
#dev-python/cymem[${PYTHON_USEDEP}]
|
|
||||||
#"
|
|
||||||
DEPEND="
|
|
||||||
dev-python/cython[${PYTHON_USEDEP}]
|
|
||||||
"
|
|
||||||
BDEPEND="
|
|
||||||
>=dev-python/setuptools_scm-3.3.1[${PYTHON_USEDEP}]
|
|
||||||
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}]
|
|
||||||
dev-python/toml[${PYTHON_USEDEP}]
|
|
||||||
)
|
|
||||||
" # toml is an indirect dependency (needed by ipdb)
|
|
||||||
|
|
||||||
DOCS=( AUTHORS.rst CHANGELOG.rst README.rst )
|
|
||||||
|
|
||||||
EPYTEST_IGNORE=( test_remote.py )
|
|
||||||
EPYTEST_DESELECT=(
|
|
||||||
tests/test_tracer.py::test_source_cython
|
|
||||||
tests/test_tracer.py::test_fullsource_cython
|
|
||||||
)
|
|
||||||
|
|
||||||
distutils_enable_tests pytest
|
|
||||||
|
|
||||||
distutils_enable_sphinx docs ">=dev-python/sphinx-py3doc-enhanced-theme-2.3.2"
|
|
||||||
|
|
||||||
src_unpack() {
|
|
||||||
default
|
|
||||||
cp -a "${S}" tests_package || die
|
|
||||||
mv -f tests_package/tests/setup.py tests_package || die
|
|
||||||
}
|
|
||||||
|
|
||||||
python_test() {
|
|
||||||
cp -a "${BUILD_DIR}"/{install,test} || die
|
|
||||||
local -x PATH=${BUILD_DIR}/test/usr/bin:${PATH}
|
|
||||||
|
|
||||||
cd "${WORKDIR}"/tests_package >/dev/null || die
|
|
||||||
distutils_pep517_install "${BUILD_DIR}"/test
|
|
||||||
|
|
||||||
cd ./tests || die
|
|
||||||
epytest
|
|
||||||
}
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
EAPI=8
|
EAPI=8
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{9..11} )
|
PYTHON_COMPAT=( python3_{10..12} )
|
||||||
DISTUTILS_USE_PEP517=setuptools
|
DISTUTILS_USE_PEP517=setuptools
|
||||||
inherit distutils-r1 multiprocessing
|
inherit distutils-r1 multiprocessing
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ KEYWORDS="~amd64"
|
||||||
|
|
||||||
BDEPEND="
|
BDEPEND="
|
||||||
dev-python/cython[${PYTHON_USEDEP}]
|
dev-python/cython[${PYTHON_USEDEP}]
|
||||||
>=dev-python/setuptools_scm-3.3.1[${PYTHON_USEDEP}]
|
>=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}]
|
||||||
|
@ -30,7 +30,7 @@ BDEPEND="
|
||||||
dev-python/process-tests[${PYTHON_USEDEP}]
|
dev-python/process-tests[${PYTHON_USEDEP}]
|
||||||
dev-python/pytest-benchmark[${PYTHON_USEDEP}]
|
dev-python/pytest-benchmark[${PYTHON_USEDEP}]
|
||||||
dev-python/six[${PYTHON_USEDEP}]
|
dev-python/six[${PYTHON_USEDEP}]
|
||||||
sys-devel/gdb
|
dev-debug/gdb
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue