summaryrefslogtreecommitdiff
path: root/dev-python/pplpy
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pplpy')
-rw-r--r--dev-python/pplpy/Manifest1
-rw-r--r--dev-python/pplpy/pplpy-0.8.10-r1.ebuild50
2 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/pplpy/Manifest b/dev-python/pplpy/Manifest
index 46a1885dec7e..8da0252e472d 100644
--- a/dev-python/pplpy/Manifest
+++ b/dev-python/pplpy/Manifest
@@ -1,2 +1 @@
-DIST pplpy-0.8.10.tar.gz 64203 BLAKE2B b0735722a051ef33b7415528147a84a163ac49bf5d07e2f6599a7bbf004140abf5e6a09b7f0555ac57b55614a1c059bba20cc7ac7fe47a83f429e33d7f0dd1bc SHA512 982d36291cd0108786e47cb1ff73127ba2b2a619edc697e28360a87ace743e7fc6dd04e32aab38d41724d455de4861065f9ac3d409fd2f68114b07f4d1328c23
DIST pplpy-0.9.0.tar.gz 69232 BLAKE2B 3453e0aa2961393766a152b0d5e1ff1d794da415436c04ed8fa88d9d522337db042c3d568079dbde856600f6aa9d13113295196b8a49c705c089e1f5ea9bd77c SHA512 ba0390c9e3a82c8cb896299e663969862cec3b4f82bbe3ea48499af011c498436037a1435948839168abac127ed6560efabeda0e6f2ad66ae7242cd638dc5b21
diff --git a/dev-python/pplpy/pplpy-0.8.10-r1.ebuild b/dev-python/pplpy/pplpy-0.8.10-r1.ebuild
deleted file mode 100644
index fc400c6fb3ca..000000000000
--- a/dev-python/pplpy/pplpy-0.8.10-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9,10,11,12,13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python bindings for the Parma Polyhedra Library (PPL)"
-HOMEPAGE="
- https://github.com/sagemath/pplpy/
- https://pypi.org/project/pplpy/
-"
-
-# The file headers under ppl/ contain the "or later" bit
-LICENSE="GPL-3+"
-# API/ABI changes in point releases
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~riscv"
-IUSE="doc"
-
-DEPEND="
- dev-libs/ppl
- dev-python/cysignals[${PYTHON_USEDEP}]
- >=dev-python/gmpy2-2.1.0_beta1[${PYTHON_USEDEP}]
-"
-RDEPEND="
- ${DEPEND}
-"
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-"
-
-python_compile() {
- # https://bugs.gentoo.org/927770
- distutils-r1_python_compile -j1
-}
-
-python_compile_all() {
- rm -r ppl || die
- use doc && build_sphinx docs/source
-}
-
-python_test(){
- "${EPYTHON}" tests/runtests.py || die
-}