Date: Mon, 4 May 2015 14:01:41 +0000 (UTC) From: TAKATSU Tomonari <tota@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385405 - in head/devel: . R-cran-magrittr Message-ID: <201505041401.t44E1fCb030155@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Mon May 4 14:01:41 2015 New Revision: 385405 URL: https://svnweb.freebsd.org/changeset/ports/385405 Log: - Add a new port: devel/R-cran-magrittr The magrittr package offers a set of operators which promote semantics that will improve your code by * structuring sequences of data operations left-to-right (as opposed to from the inside and out), * avoiding nested function calls, * minimizing the need for local variables and function definitions, and * making it easy to add steps anywhere in the sequence of operations. WWW: http://cran.r-project.org/web/magrittr/ Added: head/devel/R-cran-magrittr/ head/devel/R-cran-magrittr/Makefile (contents, props changed) head/devel/R-cran-magrittr/distinfo (contents, props changed) head/devel/R-cran-magrittr/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon May 4 13:26:28 2015 (r385404) +++ head/devel/Makefile Mon May 4 14:01:41 2015 (r385405) @@ -24,6 +24,7 @@ SUBDIR += R-cran-gtools SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools + SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise SUBDIR += R-cran-microbenchmark SUBDIR += R-cran-plyr Added: head/devel/R-cran-magrittr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-magrittr/Makefile Mon May 4 14:01:41 2015 (r385405) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= magrittr +PORTVERSION= 1.5 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Forward-Pipe Operator for R + +LICENSE= MIT + +USES= cran:auto-plist + +.include <bsd.port.mk> Added: head/devel/R-cran-magrittr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-magrittr/distinfo Mon May 4 14:01:41 2015 (r385405) @@ -0,0 +1,2 @@ +SHA256 (magrittr_1.5.tar.gz) = 05c45943ada9443134caa0ab24db4a962b629f00b755ccf039a2a2a7b2c92ae8 +SIZE (magrittr_1.5.tar.gz) = 200504 Added: head/devel/R-cran-magrittr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-magrittr/pkg-descr Mon May 4 14:01:41 2015 (r385405) @@ -0,0 +1,11 @@ +The magrittr package offers a set of operators which promote semantics +that will improve your code by + +* structuring sequences of data operations left-to-right (as + opposed to from the inside and out), +* avoiding nested function calls, +* minimizing the need for local variables and function + definitions, and +* making it easy to add steps anywhere in the sequence of operations. + +WWW: http://cran.r-project.org/web/magrittr/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505041401.t44E1fCb030155>