aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTAKATSU Tomonari <tota@FreeBSD.org>2021-09-08 10:53:32 +0000
committerTAKATSU Tomonari <tota@FreeBSD.org>2021-09-08 11:43:38 +0000
commit63e5d7f8e383a51a5a3c4ee3fe9e6aec946f50af (patch)
tree96c0aa3e65cf482ce9720334f105f65f2996ca25
parent65a797cefa27c21db29be80f05531b54d37e1935 (diff)
downloadports-63e5d7f8e383a51a5a3c4ee3fe9e6aec946f50af.tar.gz
ports-63e5d7f8e383a51a5a3c4ee3fe9e6aec946f50af.zip
devel/R-cran-globals: Add new port
Identifies global ("unknown" or "free") objects in R expressions by code inspection using various strategies (ordered, liberal, or conservative). The objective of this package is to make it as simple as possible to identify global objects for the purpose of exporting them in parallel, distributed compute environments. WWW: https://cran.r-project.org/web/packages/globals/
-rw-r--r--devel/Makefile1
-rw-r--r--devel/R-cran-globals/Makefile13
-rw-r--r--devel/R-cran-globals/distinfo3
-rw-r--r--devel/R-cran-globals/pkg-descr7
4 files changed, 24 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index dac7d0b7558e..7c3ceaa79cce 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -50,6 +50,7 @@
SUBDIR += R-cran-getopt
SUBDIR += R-cran-git2r
SUBDIR += R-cran-glmnet
+ SUBDIR += R-cran-globals
SUBDIR += R-cran-glue
SUBDIR += R-cran-gmodels
SUBDIR += R-cran-gsubfn
diff --git a/devel/R-cran-globals/Makefile b/devel/R-cran-globals/Makefile
new file mode 100644
index 000000000000..87be123fd4ea
--- /dev/null
+++ b/devel/R-cran-globals/Makefile
@@ -0,0 +1,13 @@
+PORTNAME= globals
+PORTVERSION= 0.14.0
+CATEGORIES= devel
+DISTNAME= ${PORTNAME}_${PORTVERSION}
+
+MAINTAINER= tota@FreeBSD.org
+COMMENT= Identify Global Objects in R Expressions
+
+LICENSE= LGPL21+
+
+USES= cran:auto-plist
+
+.include <bsd.port.mk>
diff --git a/devel/R-cran-globals/distinfo b/devel/R-cran-globals/distinfo
new file mode 100644
index 000000000000..3d3053ab047f
--- /dev/null
+++ b/devel/R-cran-globals/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1631098233
+SHA256 (globals_0.14.0.tar.gz) = 203dbccb829ca9cc6aedb6f5e79cb126ea31f8dd379dff9111ec66e3628c32f3
+SIZE (globals_0.14.0.tar.gz) = 30786
diff --git a/devel/R-cran-globals/pkg-descr b/devel/R-cran-globals/pkg-descr
new file mode 100644
index 000000000000..9dcafc436e96
--- /dev/null
+++ b/devel/R-cran-globals/pkg-descr
@@ -0,0 +1,7 @@
+Identifies global ("unknown" or "free") objects in R expressions
+by code inspection using various strategies (ordered, liberal, or
+conservative). The objective of this package is to make it as simple
+as possible to identify global objects for the purpose of exporting
+them in parallel, distributed compute environments.
+
+WWW: https://cran.r-project.org/web/packages/globals/