mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 05:30:50 +00:00
34 lines
745 B
Bash
34 lines
745 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
DISTUTILS_USE_PEP517=standalone
|
|
DISTUTILS_EXT=1
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Cython interface to PARI"
|
|
HOMEPAGE="https://github.com/sagemath/cypari2"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~riscv"
|
|
|
|
DEPEND=">=sci-mathematics/pari-2.17.1:=[gmp,doc]
|
|
dev-python/cysignals[${PYTHON_USEDEP}]"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=">=dev-python/cython-3[${PYTHON_USEDEP}]"
|
|
|
|
PATCHES=( "${FILESDIR}/cypari2-2.2.0-regen-bindings-for-each-python.patch" )
|
|
|
|
python_test(){
|
|
cd "${S}"/tests || die
|
|
"${EPYTHON}" rundoctest.py || die
|
|
}
|
|
|
|
python_install() {
|
|
distutils-r1_python_install
|
|
python_optimize
|
|
}
|