dev-R/xtable: new package, add 1.8.4

Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
Robert Greener
2022-07-03 09:19:11 +01:00
parent 0a2b64c890
commit 860ceecdb6
3 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages edo
DESCRIPTION="Export Tables to LaTeX or HTML"
KEYWORDS="~amd64"
LICENSE='GPL-2+'
RESTRICT="!test? ( test )"
IUSE="test"
CRAN_PV="1.8-4"
SRC_URI="mirror://cran/src/contrib/${PN}_${CRAN_PV}.tar.gz"
SUGGESTED_PACKAGES="
dev-R/knitr
dev-R/plm
dev-R/zoo
dev-R/survival
"
src_test() {
cd "${WORKDIR}/${P}/tests" || die
for i in *.R; do
R_LIBS="${T}/R" edo Rscript --vanilla $i
done
}