From owner-svn-ports-all@freebsd.org Sun Sep 10 10:18:13 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 67247E083D7; Sun, 10 Sep 2017 10:18:13 +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 3A9CB6D7AB; Sun, 10 Sep 2017 10:18:13 +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 v8AAICYi042496; Sun, 10 Sep 2017 10:18:12 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8AAICoo042492; Sun, 10 Sep 2017 10:18:12 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201709101018.v8AAICoo042492@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 10 Sep 2017 10:18:12 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/devel: . R-cran-lubridate X-SVN-Commit-Revision: 449529 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: Sun, 10 Sep 2017 10:18:13 -0000 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 +# $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 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/