summaryrefslogtreecommitdiff
path: root/dev-python/pplpy
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-05-02 19:08:42 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-05-02 19:08:42 +0000
commit265855a209a72957bd712b57fbb11a508ee33cf0 (patch)
treee814d424c4e886b62ee44e2e149624de1d3df634 /dev-python/pplpy
parent4a1bcc485932394e05bc3a82bc5911c5534f8150 (diff)
downloadbaldeagleos-repo-265855a209a72957bd712b57fbb11a508ee33cf0.tar.gz
baldeagleos-repo-265855a209a72957bd712b57fbb11a508ee33cf0.tar.xz
baldeagleos-repo-265855a209a72957bd712b57fbb11a508ee33cf0.zip
Adding metadata
Diffstat (limited to 'dev-python/pplpy')
-rw-r--r--dev-python/pplpy/Manifest1
-rw-r--r--dev-python/pplpy/pplpy-0.9.0.ebuild46
2 files changed, 47 insertions, 0 deletions
diff --git a/dev-python/pplpy/Manifest b/dev-python/pplpy/Manifest
index f8d6a7f443cd..46a1885dec7e 100644
--- a/dev-python/pplpy/Manifest
+++ b/dev-python/pplpy/Manifest
@@ -1 +1,2 @@
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.9.0.ebuild b/dev-python/pplpy/pplpy-0.9.0.ebuild
new file mode 100644
index 000000000000..9f2538459eb1
--- /dev/null
+++ b/dev-python/pplpy/pplpy-0.9.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=meson-python
+PYTHON_COMPAT=( python3_{10..14} )
+
+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/gmp:=[cxx]
+ dev-libs/ppl:=
+ dev-python/cysignals[${PYTHON_USEDEP}]
+ >=dev-python/gmpy2-2.2.0[${PYTHON_USEDEP}]
+"
+RDEPEND="
+ ${DEPEND}
+"
+BDEPEND="
+ dev-python/cython[${PYTHON_USEDEP}]
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+"
+
+python_compile_all() {
+ rm -r ppl || die
+ use doc && build_sphinx docs/source
+}
+
+python_test(){
+ "${EPYTHON}" tests/runtests.py || die
+}