Date: Sun, 10 Sep 2017 10:18:12 +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: r449529 - in head/devel: . R-cran-lubridate Message-ID: <201709101018.v8AAICoo042492@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Sun Sep 10 10:18:11 2017 New Revision: 449529 URL: https://svnweb.freebsd.org/changeset/ports/449529 Log: - Add new port: devel/R-cran-lubridate Functions to work with date-times and time-spans: fast and user friendly parsing of date-time data, extraction and updating of components of a date-time (years, months, days, hours, minutes, and seconds), algebraic manipulation on date-time and time-span objects. The 'lubridate' package has a consistent and memorable syntax that makes working with dates easy and fun. WWW: https://cran.r-project.org/web/packages/lubridate/ Added: head/devel/R-cran-lubridate/ head/devel/R-cran-lubridate/Makefile (contents, props changed) head/devel/R-cran-lubridate/distinfo (contents, props changed) head/devel/R-cran-lubridate/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Sep 10 09:31:11 2017 (r449528) +++ head/devel/Makefile Sun Sep 10 10:18:11 2017 (r449529) @@ -38,6 +38,7 @@ SUBDIR += R-cran-hms SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools + SUBDIR += R-cran-lubridate SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise SUBDIR += R-cran-microbenchmark Added: head/devel/R-cran-lubridate/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-lubridate/Makefile Sun Sep 10 10:18:11 2017 (r449529) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= lubridate +PORTVERSION= 1.6.0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Make Dealing with Dates a Little Easier + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-stringr>0:textproc/R-cran-stringr +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> Added: head/devel/R-cran-lubridate/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-lubridate/distinfo Sun Sep 10 10:18:11 2017 (r449529) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505036380 +SHA256 (lubridate_1.6.0.tar.gz) = 1a87edfc2c57b22b6d9b49354545dd063e6c03a415544090b531c42423cf2632 +SIZE (lubridate_1.6.0.tar.gz) = 317672 Added: head/devel/R-cran-lubridate/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-lubridate/pkg-descr Sun Sep 10 10:18:11 2017 (r449529) @@ -0,0 +1,8 @@ +Functions to work with date-times and time-spans: fast and user +friendly parsing of date-time data, extraction and updating of +components of a date-time (years, months, days, hours, minutes, and +seconds), algebraic manipulation on date-time and time-span objects. +The 'lubridate' package has a consistent and memorable syntax that +makes working with dates easy and fun. + +WWW: https://cran.r-project.org/web/packages/lubridate/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709101018.v8AAICoo042492>