1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

- Add new port: devel/R-cran-tidyselect

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/
This commit is contained in:
TAKATSU Tomonari 2017-09-05 23:09:55 +00:00
parent f1f02b2277
commit f38da462f0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=449318
4 changed files with 33 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,23 @@
# Created by: TAKATSU Tomonari <tota@FreeBSD.org>
# $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 <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1504632747
SHA256 (tidyselect_0.2.0.tar.gz) = 396117335269021d8709e2b1ddd613da81e2bfe56fdc58e107bbccbe0ac320c0
SIZE (tidyselect_0.2.0.tar.gz) = 20642

View File

@ -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/