devel/R-cran-timechange: Add new port

Efficient routines for manipulation of date-time objects while
accounting for time-zones and daylight saving times. The package
includes utilities for updating of date-time components (year,
month, day etc.), modification of time-zones, rounding of date-times,
period addition and subtraction etc. Parts of the 'CCTZ' source
code, released under the Apache 2.0 License, are included in this
package.
This commit is contained in:
TAKATSU Tomonari 2023-05-06 02:28:17 +00:00
parent 17965a786b
commit c296b40ce6
4 changed files with 29 additions and 0 deletions

View file

@ -125,6 +125,7 @@
SUBDIR += R-cran-tibble
SUBDIR += R-cran-tidyr
SUBDIR += R-cran-tidyselect
SUBDIR += R-cran-timechange
SUBDIR += R-cran-tinytest
SUBDIR += R-cran-tzdb
SUBDIR += R-cran-usethis

View file

@ -0,0 +1,18 @@
PORTNAME= timechange
PORTVERSION= 0.2.0
CATEGORIES= devel
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Efficient Manipulation of Date-Times
WWW= https://cran.r-project.org/web/packages/timechange/
LICENSE= GPLv3
CRAN_DEPENDS= R-cran-cpp11>=0.2.7:devel/R-cran-cpp11
BUILD_DEPENDS= ${CRAN_DEPENDS}
RUN_DEPENDS= ${CRAN_DEPENDS}
USES= cran:auto-plist,compiles
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1683339397
SHA256 (timechange_0.2.0.tar.gz) = 3d602008052123daef94a5c3f5154c5461b4ec0432ab70c37273d7ddd252f7f1
SIZE (timechange_0.2.0.tar.gz) = 102806

View file

@ -0,0 +1,7 @@
Efficient routines for manipulation of date-time objects while
accounting for time-zones and daylight saving times. The package
includes utilities for updating of date-time components (year,
month, day etc.), modification of time-zones, rounding of date-times,
period addition and subtraction etc. Parts of the 'CCTZ' source
code, released under the Apache 2.0 License, are included in this
package. See <https: //github.com/google/cctz> for more details.