diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2011-07-27 19:03:15 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2011-07-27 19:03:15 +0000 |
commit | 63da0decb150081031bf5865fe430425e09b915a (patch) | |
tree | c395fbf8f8a26363b6aad0f5642703d496996ae4 /sci-mathematics | |
parent | backport some fixes from 2.5.4 for testing (diff) | |
download | gentoo-2-63da0decb150081031bf5865fe430425e09b915a.tar.gz gentoo-2-63da0decb150081031bf5865fe430425e09b915a.tar.bz2 gentoo-2-63da0decb150081031bf5865fe430425e09b915a.zip |
Initial import. Ebuild initially submitted by Francois Bissey
(Portage version: 2.1.10.7/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/pari-data/ChangeLog | 10 | ||||
-rw-r--r-- | sci-mathematics/pari-data/metadata.xml | 15 | ||||
-rw-r--r-- | sci-mathematics/pari-data/pari-data-20110727.ebuild | 26 |
3 files changed, 51 insertions, 0 deletions
diff --git a/sci-mathematics/pari-data/ChangeLog b/sci-mathematics/pari-data/ChangeLog new file mode 100644 index 000000000000..d7a4e1da15a5 --- /dev/null +++ b/sci-mathematics/pari-data/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sci-mathematics/pari-data +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari-data/ChangeLog,v 1.1 2011/07/27 19:03:15 bicatali Exp $ + +*pari-data-20110727 (27 Jul 2011) + + 27 Jul 2011; Sébastien Fabbro <bicatali@gentoo.org> + +pari-data-20110727.ebuild, +metadata.xml: + Initial import. Ebuild initially submitted by Francois Bissey + diff --git a/sci-mathematics/pari-data/metadata.xml b/sci-mathematics/pari-data/metadata.xml new file mode 100644 index 000000000000..05b8117db0af --- /dev/null +++ b/sci-mathematics/pari-data/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sci-mathematics</herd> +<longdescription lang="en"> + The extra data for PARI consists of: + * elldata is PARI/GP version of J. E. Cremona Elliptic Curve Data, + needed by ellsearch and ellidentify. + * galdata is needed by polgalois to compute Galois group in degrees + 8 through 11. + * seadata is needed by ellap for large primes. + * nftables is a repackaging of the historical megrez number field + tables (errors fixed, 1/10th the size, easier to use). +</longdescription> +</pkgmetadata> diff --git a/sci-mathematics/pari-data/pari-data-20110727.ebuild b/sci-mathematics/pari-data/pari-data-20110727.ebuild new file mode 100644 index 000000000000..5e13bc3028c7 --- /dev/null +++ b/sci-mathematics/pari-data/pari-data-20110727.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari-data/pari-data-20110727.ebuild,v 1.1 2011/07/27 19:03:15 bicatali Exp $ + +EAPI="4" + +DESCRIPTION="Data sets for pari" +HOMEPAGE="http://pari.math.u-bordeaux.fr/" + +for p in elldata galdata galpol seadata nftables; do + SRC_URI="${SRC_URI} http://pari.math.u-bordeaux.fr/pub/pari/packages/${p}.tgz -> ${p}-${PV}.tgz" +done + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" +IUSE="" + +RDEPEND="" +DEPEND="" +S="${WORKDIR}" + +src_install() { + insinto /usr/share/pari + doins -r data/* nftables +} |