diff options
author | Sam James <sam@gentoo.org> | 2022-10-09 00:39:12 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-10-09 00:45:01 +0100 |
commit | 11f3c49108a72ee851cd963732355334833d073e (patch) | |
tree | 8c5f724951584d1d59fe3f5da3e32dc9bb06262a /dev-python | |
parent | dev-python/meson-python: enable py3.11 (diff) | |
download | gentoo-11f3c49108a72ee851cd963732355334833d073e.tar.gz gentoo-11f3c49108a72ee851cd963732355334833d073e.tar.bz2 gentoo-11f3c49108a72ee851cd963732355334833d073e.zip |
dev-python/pythran: unbundle Boost; enable py3.11
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pythran/pythran-0.12.0-r1.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/dev-python/pythran/pythran-0.12.0-r1.ebuild b/dev-python/pythran/pythran-0.12.0-r1.ebuild new file mode 100644 index 000000000000..39003757d0de --- /dev/null +++ b/dev-python/pythran/pythran-0.12.0-r1.ebuild @@ -0,0 +1,65 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_TESTED=( python3_{8..10} ) +PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" python3_11 ) + +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 ~arm64 ~ppc64 ~riscv" + +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}] +" +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 + +PATCHES=( + "${FILESDIR}"/${PN}-0.10.0-tests-werror.patch +) + +src_configure() { + # TODO: package xsimd then set no_xsimd = True + cat >> setup.cfg <<-EOF + [build_py] + no_boost = True + EOF +} + +python_test() { + local -x COLUMNS=80 + epytest -n "$(makeopts_jobs)" +} |