From owner-svn-ports-all@freebsd.org Tue Sep 5 23:09:57 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2DCDCE0118E; Tue, 5 Sep 2017 23:09:57 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AE9473973; Tue, 5 Sep 2017 23:09:56 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v85N9tkN011768; Tue, 5 Sep 2017 23:09:55 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v85N9tLI011764; Tue, 5 Sep 2017 23:09:55 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201709052309.v85N9tLI011764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 5 Sep 2017 23:09:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449318 - in head/devel: . R-cran-tidyselect X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/devel: . R-cran-tidyselect X-SVN-Commit-Revision: 449318 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Sep 2017 23:09:57 -0000 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 +# $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 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/