diff --git a/devel/Makefile b/devel/Makefile index 27245fbfdd7f..4740a91a9158 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -60,6 +60,7 @@ SUBDIR += R-cran-sourcetools SUBDIR += R-cran-tibble SUBDIR += R-cran-tidyr + SUBDIR += R-cran-tidyselect SUBDIR += SpecTcl SUBDIR += aap SUBDIR += aarch64-binutils diff --git a/devel/R-cran-tidyselect/Makefile b/devel/R-cran-tidyselect/Makefile new file mode 100644 index 000000000000..f0417942b7ba --- /dev/null +++ b/devel/R-cran-tidyselect/Makefile @@ -0,0 +1,23 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= tidyselect +PORTVERSION= 0.2.0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Select from a Set of Strings + +LICENSE= GPLv3 + +CRAN_DEPENDS= R-cran-glue>0:devel/R-cran-glue \ + R-cran-purrr>0:devel/R-cran-purrr \ + R-cran-rlang>=0.1:devel/R-cran-rlang \ + R-cran-Rcpp>=0.12.0:devel/R-cran-Rcpp +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include diff --git a/devel/R-cran-tidyselect/distinfo b/devel/R-cran-tidyselect/distinfo new file mode 100644 index 000000000000..7922b5939977 --- /dev/null +++ b/devel/R-cran-tidyselect/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1504632747 +SHA256 (tidyselect_0.2.0.tar.gz) = 396117335269021d8709e2b1ddd613da81e2bfe56fdc58e107bbccbe0ac320c0 +SIZE (tidyselect_0.2.0.tar.gz) = 20642 diff --git a/devel/R-cran-tidyselect/pkg-descr b/devel/R-cran-tidyselect/pkg-descr new file mode 100644 index 000000000000..b6c66590a26d --- /dev/null +++ b/devel/R-cran-tidyselect/pkg-descr @@ -0,0 +1,6 @@ +A backend for the selecting functions of the 'tidyverse'. It makes +it easy to implement select-like functions in your own packages in +a way that is consistent with other 'tidyverse' interfaces for +selection. + +WWW: https://cran.r-project.org/web/packages/tidyselect/