blob: b15f2a17d6e023cda7c791461f279af712fec497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_TESTED=( python3_{10..12} )
PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" )
inherit distutils-r1 multiprocessing
MY_P=${P/_p/.post}
DESCRIPTION="Ahead of Time compiler for numeric kernels"
HOMEPAGE="
https://pypi.org/project/pythran/
https://github.com/serge-sans-paille/pythran/
"
SRC_URI="
https://github.com/serge-sans-paille/pythran/archive/${PV/_p/.post}.tar.gz
-> ${MY_P}.gh.tar.gz
"
S=${WORKDIR}/${MY_P}
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~sparc ~x86"
RDEPEND="
dev-libs/boost
=dev-python/beniget-0.4*[${PYTHON_USEDEP}]
=dev-python/gast-0.5*[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
>=dev-python/ply-3.4[${PYTHON_USEDEP}]
"
DEPEND="
dev-libs/boost
dev-cpp/xsimd
"
BDEPEND="
test? (
$(python_gen_cond_dep '
dev-python/ipython[${PYTHON_USEDEP}]
' "${PYTHON_TESTED[@]}")
dev-python/pytest-xdist[${PYTHON_USEDEP}]
dev-python/scipy[${PYTHON_USEDEP}]
dev-python/wheel[${PYTHON_USEDEP}]
virtual/cblas
!!dev-python/setuptools-declarative-requirements
)
"
distutils_enable_tests pytest
src_configure() {
cat >> setup.cfg <<-EOF
[build_py]
no_boost = True
no_xsimd = True
EOF
}
python_test() {
local EPYTEST_DESELECT=(
# TODO
pythran/tests/test_xdoc.py::TestDoctest::test_cli
pythran/tests/test_xdoc.py::TestDoctest::test_toolchain
# Tries to invoke pip
pythran/tests/test_distutils.py::TestDistutils::test_setup_build
pythran/tests/test_distutils.py::TestDistutils::test_setup_build2
)
case ${EPYTHON} in
python3.12)
EPYTEST_DESELECT+=(
pythran/tests/test_cases.py::TestCases::test_convnet_run0
pythran/tests/test_advanced.py::TestAdvanced::test_matmul_operator
pythran/tests/test_distutils.py::TestDistutils::test_setup_{b,s}dist_install3
pythran/tests/test_cases.py::TestCases::test_euclidean_distance_square_run0
pythran/tests/test_numpy_func2.py::TestNumpyFunc2::test_matrix_power{0..2}
pythran/tests/test_numpy_func3.py::TestNumpyFunc3::test_dot{5,7,9,11,12b,13,14b}
pythran/tests/test_numpy_func3.py::TestNumpyFunc3::test_dot{15..23}
)
;;
esac
local -x COLUMNS=80
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest -p xdist -n "$(makeopts_jobs)"
}
|