From owner-svn-ports-head@FreeBSD.ORG Mon May 4 14:01:43 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02109F4C; Mon, 4 May 2015 14:01:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 D915912AA; Mon, 4 May 2015 14:01:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t44E1gDG030161; Mon, 4 May 2015 14:01:42 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t44E1fCb030155; Mon, 4 May 2015 14:01:41 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201505041401.t44E1fCb030155@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 4 May 2015 14:01:41 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 May 2015 14:01:43 -0000 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 +# $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 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/