summaryrefslogtreecommitdiff
path: root/dev-python/mpmath/mpmath-1.4.0_alpha6.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-01-03 19:18:17 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-01-03 19:18:17 +0000
commit2bcf13fb87c49cfe6fa274eb0258c034e5eae958 (patch)
tree28961aff57cabca5eb58d51a02851e8d950f5f8c /dev-python/mpmath/mpmath-1.4.0_alpha6.ebuild
parent2406209f428ab349fc33209834caf1a7a0477fda (diff)
downloadbaldeagleos-repo-2bcf13fb87c49cfe6fa274eb0258c034e5eae958.tar.gz
baldeagleos-repo-2bcf13fb87c49cfe6fa274eb0258c034e5eae958.tar.xz
baldeagleos-repo-2bcf13fb87c49cfe6fa274eb0258c034e5eae958.zip
Adding metadata
Diffstat (limited to 'dev-python/mpmath/mpmath-1.4.0_alpha6.ebuild')
-rw-r--r--dev-python/mpmath/mpmath-1.4.0_alpha6.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/dev-python/mpmath/mpmath-1.4.0_alpha6.ebuild b/dev-python/mpmath/mpmath-1.4.0_alpha6.ebuild
deleted file mode 100644
index e2e3ffd7f1d8..000000000000
--- a/dev-python/mpmath/mpmath-1.4.0_alpha6.ebuild
+++ /dev/null
@@ -1,60 +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_FULLY_TESTED=( pypy3_11 python3_{11..13} )
-PYTHON_COMPAT=( "${PYTHON_FULLY_TESTED[@]}" )
-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 ~x64-macos"
-IUSE="test-full"
-
-BDEPEND="
- dev-python/setuptools-scm[${PYTHON_USEDEP}]
- test? (
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/packaging[${PYTHON_USEDEP}]
- dev-python/pexpect[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- dev-python/gmpy2[${PYTHON_USEDEP}]
- ' 'python3*')
- test-full? (
- $(python_gen_cond_dep '
- dev-python/matplotlib[${PYTHON_USEDEP}]
- ' "${PYTHON_FULLY_TESTED[@]}")
- )
- )
-"
-
-EPYTEST_PLUGINS=( hypothesis pytest-{rerunfailures,timeout} )
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- # Slow and often needs a re-run to pass
- mpmath/tests/test_cli.py::test_bare_console_bare_division
- mpmath/tests/test_cli.py::test_bare_console_no_bare_division
- mpmath/tests/test_cli.py::test_bare_console_pretty
- mpmath/tests/test_cli.py::test_bare_console_without_ipython
- mpmath/tests/test_cli.py::test_bare_console_wrap_floats
- )
-
- epytest --reruns=5
-}
-
-pkg_postinst() {
- optfeature "gmp support" dev-python/gmpy2
- optfeature "matplotlib support" dev-python/matplotlib
-}