summaryrefslogtreecommitdiff
path: root/dev-python/mpmath/mpmath-1.4.0_alpha3.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-07-19 19:08:59 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-07-19 19:08:59 +0000
commitbfabd5d3432c97d97d2688bb4a10c91ba586142f (patch)
treea0ce1dd8a01e9606654447fc8adbc7168476e955 /dev-python/mpmath/mpmath-1.4.0_alpha3.ebuild
parentac9e85ef52639f2621ff4296928dc9e914159b9d (diff)
downloadbaldeagleos-repo-bfabd5d3432c97d97d2688bb4a10c91ba586142f.tar.gz
baldeagleos-repo-bfabd5d3432c97d97d2688bb4a10c91ba586142f.tar.xz
baldeagleos-repo-bfabd5d3432c97d97d2688bb4a10c91ba586142f.zip
Adding metadata
Diffstat (limited to 'dev-python/mpmath/mpmath-1.4.0_alpha3.ebuild')
-rw-r--r--dev-python/mpmath/mpmath-1.4.0_alpha3.ebuild70
1 files changed, 0 insertions, 70 deletions
diff --git a/dev-python/mpmath/mpmath-1.4.0_alpha3.ebuild b/dev-python/mpmath/mpmath-1.4.0_alpha3.ebuild
deleted file mode 100644
index 7de388693490..000000000000
--- a/dev-python/mpmath/mpmath-1.4.0_alpha3.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
-
-inherit distutils-r1 optfeature pypi
-
-DESCRIPTION="Python library for arbitrary-precision floating-point arithmetic"
-HOMEPAGE="
- https://mpmath.org/
- https://github.com/mpmath/mpmath/
- https://pypi.org/project/mpmath/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-
-BDEPEND="
- dev-python/setuptools-scm[${PYTHON_USEDEP}]
- test? (
- dev-python/hypothesis[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/packaging[${PYTHON_USEDEP}]
- dev-python/pexpect[${PYTHON_USEDEP}]
- dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
- dev-python/pytest-timeout[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- dev-python/gmpy2[${PYTHON_USEDEP}]
- ' 'python3*')
- !mips? (
- dev-python/ipython[${PYTHON_USEDEP}]
- !hppa? (
- dev-python/matplotlib[${PYTHON_USEDEP}]
- )
- )
- )
-"
-
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=()
-
- case ${EPYTHON} in
- pypy3)
- EPYTEST_DESELECT+=(
- # minor whitespace mismatch, apparently fixed in pypy 7.3.18
- mpmath/tests/test_format.py::test_mpf_floats_bulk
- mpmath/tests/test_format.py::test_mpc_complexes
- )
- ;;
- esac
-
- # CLI crashes otherwise, sigh (not a regression)
- # https://github.com/mpmath/mpmath/issues/907
- > "${HOME}/.python_history" || die
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -p rerunfailures --reruns=5 -p timeout
-}
-
-pkg_postinst() {
- optfeature "gmp support" dev-python/gmpy2
- optfeature "matplotlib support" dev-python/matplotlib
-}