aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEinar Bjarni Halldórsson <einar@isnic.is>2024-04-05 12:03:32 +0000
committerNuno Teixeira <eduardo@FreeBSD.org>2024-04-06 14:42:38 +0000
commitc2b1d87a575836dd2ca8956ac1020749dd48aa2a (patch)
tree56942398665cd2d5b6ae48e12fb1ae307fb05a5a
parent7a0870824158bb1c47bd4ae12411c2261fe9bf3c (diff)
devel/R-cran-modelr: New port: Modelling Functions that Work with the Pipe
- Submitter becomes maintainer Functions for modelling that help you seamlessly integrate modelling into a pipeline of data manipulation and visualisation. WWW: https://modelr.tidyverse.org Differential Revision: https://reviews.freebsd.org/D43735
-rw-r--r--devel/Makefile1
-rw-r--r--devel/R-cran-modelr/Makefile26
-rw-r--r--devel/R-cran-modelr/distinfo3
-rw-r--r--devel/R-cran-modelr/pkg-descr2
4 files changed, 32 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 033005693cfd..9ae086e1bb6a 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -86,6 +86,7 @@
SUBDIR += R-cran-mlbench
SUBDIR += R-cran-mockery
SUBDIR += R-cran-mockr
+ SUBDIR += R-cran-modelr
SUBDIR += R-cran-msm
SUBDIR += R-cran-multicool
SUBDIR += R-cran-optparse
diff --git a/devel/R-cran-modelr/Makefile b/devel/R-cran-modelr/Makefile
new file mode 100644
index 000000000000..4001506d91e1
--- /dev/null
+++ b/devel/R-cran-modelr/Makefile
@@ -0,0 +1,26 @@
+PORTNAME= modelr
+DISTVERSION= 0.1.11
+CATEGORIES= devel
+DISTNAME= ${PORTNAME}_${DISTVERSION}
+
+MAINTAINER= einar@isnic.is
+COMMENT= Modelling Functions that Work with the Pipe
+WWW= https://modelr.tidyverse.org
+
+LICENSE= GPLv3
+
+CRAN_DEPENDS= R-cran-broom>0:devel/R-cran-broom \
+ R-cran-magrittr>0:devel/R-cran-magrittr \
+ R-cran-purrr>=0.2.2:devel/R-cran-purrr \
+ R-cran-rlang>=1.0.6:devel/R-cran-rlang \
+ R-cran-tibble>0:devel/R-cran-tibble \
+ R-cran-tidyr>=0.8.0:devel/R-cran-tidyr \
+ R-cran-tidyselect>0:devel/R-cran-tidyselect \
+ R-cran-vctrs>0:devel/R-cran-vctrs
+BUILD_DEPENDS= ${CRAN_DEPENDS}
+RUN_DEPENDS= ${CRAN_DEPENDS}
+TEST_DEPENDS= R-cran-testthat>0:devel/R-cran-testthat
+
+USES= cran:auto-plist
+
+.include <bsd.port.mk>
diff --git a/devel/R-cran-modelr/distinfo b/devel/R-cran-modelr/distinfo
new file mode 100644
index 000000000000..4531bcb9062c
--- /dev/null
+++ b/devel/R-cran-modelr/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1706954655
+SHA256 (modelr_0.1.11.tar.gz) = 94ebd506e9ccf3bf25318be6a182f8f89c3669a77b41864a0b9dbcc1d4337bd3
+SIZE (modelr_0.1.11.tar.gz) = 121480
diff --git a/devel/R-cran-modelr/pkg-descr b/devel/R-cran-modelr/pkg-descr
new file mode 100644
index 000000000000..8f9dd480ad62
--- /dev/null
+++ b/devel/R-cran-modelr/pkg-descr
@@ -0,0 +1,2 @@
+Functions for modelling that help you seamlessly integrate modelling into a
+pipeline of data manipulation and visualisation.