commit: be3960c607b523375b158b509a69ffad98257424
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 8 12:12:59 2025 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Aug 8 12:25:31 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be3960c6
sci-mathematics/gp2c: add 0.0.14
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
sci-mathematics/gp2c/Manifest | 1 +
sci-mathematics/gp2c/gp2c-0.0.14.ebuild | 28 ++++++++++++++++++++++++++++
2 files changed, 29 insertions(+)
diff --git a/sci-mathematics/gp2c/Manifest b/sci-mathematics/gp2c/Manifest
index e65157b4671e..7cf7a377b0ca 100644
--- a/sci-mathematics/gp2c/Manifest
+++ b/sci-mathematics/gp2c/Manifest
@@ -1 +1,2 @@
DIST gp2c-0.0.12.tar.gz 872289 BLAKE2B
c72f092a0a8e335e68d14f00970bd4794d883194718dd89cae760e06b5b89bd1b1959389d422b086f7862870e212662fc736f1f6720a389b9484ff360d9b8293
SHA512
9dd13c37e7ba36d75614249b6a2ff62350b5c02ba519b2c5d2dc49c36e9b6672134902b5f2e6b23f42fd4ff2069bdd12bd4694f324ddf814296bf8cbe5f10cdd
+DIST gp2c-0.0.14.tar.gz 903744 BLAKE2B
18085bd4598e5f697cb23630b6a01308950de861cd6204807b6b0f99d5624608af20178013235b008e13751ad6cd205f4f4257054e9f65acaf97e3ebecb709a9
SHA512
e8add26d48c10b7f05d31299a8d605b7fc59bb7d667a284f471d35a72fd50e628ca03f6fb0a916d9491923121356c8175946eef919db010f0dde7901dcc933ef
diff --git a/sci-mathematics/gp2c/gp2c-0.0.14.ebuild
b/sci-mathematics/gp2c/gp2c-0.0.14.ebuild
new file mode 100644
index 000000000000..ae0f30f80161
--- /dev/null
+++ b/sci-mathematics/gp2c/gp2c-0.0.14.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${PN}-"$(ver_rs 3 'pl')
+DESCRIPTION="A GP to C translator"
+HOMEPAGE="https://pari.math.u-bordeaux.fr/"
+SRC_URI="https://pari.math.u-bordeaux.fr/pub/pari/GP2C/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+# Perl is run on the build host to compile the descriptions in desc/,
+# see for example desc/Makefile.am.
+BDEPEND="dev-lang/perl"
+
+# This is the first version of pari to put pari.cfg where we expect it.
+DEPEND=">=sci-mathematics/pari-2.11.2"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ econf --with-paricfg="${EPREFIX}/usr/share/pari/pari.cfg"
+}