Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/gp2c/
Date: Fri, 06 Mar 2020 14:01:43
Message-Id: 1583502859.daf61b4defd22c00ad48673a834a0e706f2c4c4a.mjo@gentoo
1 commit: daf61b4defd22c00ad48673a834a0e706f2c4c4a
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 6 13:54:19 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 6 13:54:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf61b4d
7
8 sci-mathematics/gp2c: new version 0.0.11.3.
9
10 Upstream bugfix release gp2c-0.0.11pl3. The most interesting thing
11 here Gentoo-wise is support for gcc-10.x (-fno-common).
12
13 Package-Manager: Portage-2.3.84, Repoman-2.3.20
14 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
15
16 sci-mathematics/gp2c/Manifest | 1 +
17 sci-mathematics/gp2c/gp2c-0.0.11.3.ebuild | 29 +++++++++++++++++++++++++++++
18 2 files changed, 30 insertions(+)
19
20 diff --git a/sci-mathematics/gp2c/Manifest b/sci-mathematics/gp2c/Manifest
21 index 28aa36077e4..f69c31f8cc4 100644
22 --- a/sci-mathematics/gp2c/Manifest
23 +++ b/sci-mathematics/gp2c/Manifest
24 @@ -1 +1,2 @@
25 DIST gp2c-0.0.11pl2.tar.gz 851845 BLAKE2B 599469af3e9975270e6d9f88c1209ee3da9ae9ab9bfc90abf2431e00d553d427c15a509278b099a133262b6d02d6fa3f06090bd0083c46c9488e697dc5da5245 SHA512 20f7fc61480a70d3f8811d7881e0f386a1ced522b5c538443dc0a9fe3332d37a67ba68441eb512b5fefdb761e232f9316704fa456a311651161da7b4653ca4b7
26 +DIST gp2c-0.0.11pl3.tar.gz 854003 BLAKE2B 478307b9fa56b8e58a66001bbeac3ce6193a446cb6a339bbd65de9105924fe92a0e9c39302d836c7f3e7d2fe100ac678514d4e7eef1bdb0b880cc55763002864 SHA512 06d3680da739ce13a0a80a88c7b07a9b336acecb95f4841d8e984f1d4b66ad0a3ffe47e2abb77ad7e564fa976d16c468d62e6ddc15ede3beba00db6d92a91d97
27
28 diff --git a/sci-mathematics/gp2c/gp2c-0.0.11.3.ebuild b/sci-mathematics/gp2c/gp2c-0.0.11.3.ebuild
29 new file mode 100644
30 index 00000000000..b7314146b67
31 --- /dev/null
32 +++ b/sci-mathematics/gp2c/gp2c-0.0.11.3.ebuild
33 @@ -0,0 +1,29 @@
34 +# Copyright 1999-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +MY_P="${PN}-"$(ver_rs 3 'pl')
40 +DESCRIPTION="A GP to C translator"
41 +HOMEPAGE="http://pari.math.u-bordeaux.fr/"
42 +SRC_URI="http://pari.math.u-bordeaux.fr/pub/pari/GP2C/${MY_P}.tar.gz"
43 +
44 +LICENSE="GPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +# Perl is run on the build host to compile the descriptions in desc/,
51 +# see for example desc/Makefile.am.
52 +BDEPEND="dev-lang/perl"
53 +
54 +# This is the first version of pari to put pari.cfg where we expect it.
55 +DEPEND=">=sci-mathematics/pari-2.11.2"
56 +RDEPEND="${DEPEND}"
57 +
58 +S="${WORKDIR}/${MY_P}"
59 +
60 +src_configure() {
61 + econf --with-paricfg="${EPREFIX}/usr/share/pari/pari.cfg"
62 +}