dev-R/globals: new package, add 0.15.1

Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
Robert Greener
2022-07-02 16:49:01 +01:00
parent b30bd4d4b7
commit 1b0195fa85
3 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages edo
DESCRIPTION='Identify Global Objects in R Expressions'
KEYWORDS="~amd64"
LICENSE='LGPL-2.1+'
DEPEND="
dev-R/codetools
"
src_test() {
cd "${WORKDIR}/${P}/tests"
for i in *.R; do
R_LIBS="${T}/R" edo Rscript --vanilla $i
done
}