svn commit: r449318 - in head/devel: . R-cran-tidyselect

TAKATSU Tomonari tota at FreeBSD.org
Tue Sep 5 23:09:57 UTC 2017


Author: tota
Date: Tue Sep  5 23:09:55 2017
New Revision: 449318
URL: https://svnweb.freebsd.org/changeset/ports/449318

Log:
  - 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/

Added:
  head/devel/R-cran-tidyselect/
  head/devel/R-cran-tidyselect/Makefile   (contents, props changed)
  head/devel/R-cran-tidyselect/distinfo   (contents, props changed)
  head/devel/R-cran-tidyselect/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile   (contents, props changed)

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Sep  5 23:05:29 2017	(r449317)
+++ head/devel/Makefile	Tue Sep  5 23:09:55 2017	(r449318)
@@ -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

Added: head/devel/R-cran-tidyselect/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-tidyselect/Makefile	Tue Sep  5 23:09:55 2017	(r449318)
@@ -0,0 +1,23 @@
+# Created by: TAKATSU Tomonari <tota at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	tidyselect
+PORTVERSION=	0.2.0
+CATEGORIES=	devel
+DISTNAME=	${PORTNAME}_${PORTVERSION}
+
+MAINTAINER=	tota at 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>

Added: head/devel/R-cran-tidyselect/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-tidyselect/distinfo	Tue Sep  5 23:09:55 2017	(r449318)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1504632747
+SHA256 (tidyselect_0.2.0.tar.gz) = 396117335269021d8709e2b1ddd613da81e2bfe56fdc58e107bbccbe0ac320c0
+SIZE (tidyselect_0.2.0.tar.gz) = 20642

Added: head/devel/R-cran-tidyselect/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-tidyselect/pkg-descr	Tue Sep  5 23:09:55 2017	(r449318)
@@ -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/


More information about the svn-ports-all mailing list