dev-R/abind: new package, add 1.4.5

Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
Robert Greener
2022-07-03 18:31:29 +01:00
parent 6de5d2b617
commit cc9d4173b5
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages edo
DESCRIPTION="Unified Parallel and Distributed Processing in R for Everyone"
KEYWORDS="~amd64"
LICENSE='LGPL-2+'
CRAN_PV="1.4-5"
SRC_URI="mirror://cran/src/contrib/${PN}_${CRAN_PV}.tar.gz"
src_test() {
cd "${WORKDIR}/${P}/tests" || die
for i in *.R; do
R_LIBS="${T}/R" edo Rscript --vanilla $i
done
}