blob: 4b14e228d55bfc5df508e6229d61f2cd526909cf (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3 python3_{10..13} )
inherit distutils-r1
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 ~ppc64 ~riscv ~s390 ~sparc ~x86"
RDEPEND="
dev-libs/boost
dev-cpp/xsimd
=dev-python/beniget-0.4*[${PYTHON_USEDEP}]
=dev-python/gast-0.6*[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
>=dev-python/ply-3.4[${PYTHON_USEDEP}]
>=dev-python/setuptools-73.0.1[${PYTHON_USEDEP}]
"
DEPEND="
test? (
dev-libs/boost
dev-cpp/xsimd
)
"
BDEPEND="
test? (
dev-python/ipython[${PYTHON_USEDEP}]
dev-python/pip[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
dev-python/scipy[${PYTHON_USEDEP}]
dev-python/wheel[${PYTHON_USEDEP}]
virtual/cblas
!!dev-python/setuptools-declarative-requirements
)
"
EPYTEST_XDIST=1
distutils_enable_tests pytest
src_configure() {
# vendored C++ headers -- use system copies
rm -r pythran/{boost,xsimd} || die
if use test ; then
# https://bugs.gentoo.org/916461
sed -i \
-e 's|blas=blas|blas=cblas|' \
-e 's|libs=|libs=cblas|' \
pythran/pythran-*.cfg || die
fi
}
python_test() {
local -x COLUMNS=80
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
local EPYTEST_DESELECT=(
# TODO
pythran/tests/test_numpy_ufunc_unary.py::TestNumpyUFuncUnary::test_signbit0
)
if has_version ">=dev-python/numpy-2[${PYTHON_USEDEP}]"; then
case ${EPYTHON} in
pypy3)
EPYTEST_DESELECT+=(
pythran/tests/test_distutils.py::TestDistutils::test_setup_bdist_install3
pythran/tests/test_distutils.py::TestDistutils::test_setup_build3
pythran/tests/test_distutils.py::TestDistutils::test_setup_sdist_install
pythran/tests/test_distutils.py::TestDistutils::test_setup_sdist_install2
pythran/tests/test_distutils.py::TestDistutils::test_setup_sdist_install3
pythran/tests/test_distutils.py::TestMeson::test_meson_build
pythran/tests/test_exception.py::TestException::test_multiple_tuple_exception_register
pythran/tests/test_ndarray.py::TestNdarray::test_ndarray_fancy_indexing1
pythran/tests/test_numpy_fft.py::TestNumpyFFTN::test_fftn_1
pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ravel0
pythran/tests/test_numpy_func3.py::TestNumpyFunc3::test_list_imag0
pythran/tests/test_numpy_random.py::TestNumpyRandom::test_numpy_uniform_size_int
pythran/tests/test_set.py::TestSet::test_fct_symmetric_difference_update
)
;;
python3.13)
EPYTEST_DESELECT+=(
# repr() differences?
pythran/tests/test_xdoc.py::TestDoctest::test_tutorial
)
esac
fi
epytest
}
|