Date: Sun, 9 Jun 2019 13:27:29 +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: r503817 - in head/devel: . R-cran-zeallot Message-ID: <201906091327.x59DRTsp067766@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Sun Jun 9 13:27:29 2019 New Revision: 503817 URL: https://svnweb.freebsd.org/changeset/ports/503817 Log: - Add new port: devel/R-cran-zeallot Provides a %<-% operator to perform multiple, unpacking, and destructuring assignment in R. The operator unpacks the right-hand side of an assignment into multiple values and assigns these values to variables on the left-hand side of the assignment. WWW: https://cran.r-project.org/web/packages/zeallot/ Added: head/devel/R-cran-zeallot/ head/devel/R-cran-zeallot/Makefile (contents, props changed) head/devel/R-cran-zeallot/distinfo (contents, props changed) head/devel/R-cran-zeallot/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 9 12:58:00 2019 (r503816) +++ head/devel/Makefile Sun Jun 9 13:27:29 2019 (r503817) @@ -5240,6 +5240,7 @@ SUBDIR += qtcreator SUBDIR += quickcheck++ SUBDIR += quilt + SUBDIR += R-cran-zeallot SUBDIR += rabs SUBDIR += racer SUBDIR += racerd Added: head/devel/R-cran-zeallot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-zeallot/Makefile Sun Jun 9 13:27:29 2019 (r503817) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= zeallot +PORTVERSION= 0.1.0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Multiple, Unpacking, and Destructuring Assignment + +LICENSE= MIT + +USES= cran:auto-plist + +.include <bsd.port.mk> Added: head/devel/R-cran-zeallot/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-zeallot/distinfo Sun Jun 9 13:27:29 2019 (r503817) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560084661 +SHA256 (zeallot_0.1.0.tar.gz) = 439f1213c97c8ddef9a1e1499bdf81c2940859f78b76bc86ba476cebd88ba1e9 +SIZE (zeallot_0.1.0.tar.gz) = 32549 Added: head/devel/R-cran-zeallot/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-zeallot/pkg-descr Sun Jun 9 13:27:29 2019 (r503817) @@ -0,0 +1,6 @@ +Provides a %<-% operator to perform multiple, unpacking, and +destructuring assignment in R. The operator unpacks the right-hand +side of an assignment into multiple values and assigns these values +to variables on the left-hand side of the assignment. + +WWW: https://cran.r-project.org/web/packages/zeallot/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906091327.x59DRTsp067766>