Install this version:
emerge -a =sci-mathematics/pari-data-20191216
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sci-mathematics/pari-data-20191216
Or alternatively:
emerge --autounmask-write -a =sci-mathematics/pari-data-20191216
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 20191216 | 7 | ~alpha amd64 ~arm ~hppa ~mips ~ppc ppc64 ~riscv ~sparc ~x86 | 0 |
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Additional dataset packages for PARI"
HOMEPAGE="https://pari.math.u-bordeaux.fr/packages.html"
# Beware, upstream occasionally updates these tarballs in-place
# with new versions. When that happens, we need to bump this
# package to a new version so that any mirrored tarballs will
# get re-fetched to a new name.
for p in elldata galpol seadata nftables galdata; do
SRC_URI+="https://pari.math.u-bordeaux.fr/pub/pari/packages/${p}.tgz \
-> ${p}-${PV}.tgz "
done
S="${WORKDIR}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ppc64 ~riscv ~sparc ~x86"
src_install() {
insinto /usr/share/pari
doins -r data/* nftables
}