Date: Tue, 27 Jun 2017 06:31:26 +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: r444441 - in head/math: . R-cran-units Message-ID: <201706270631.v5R6VQpe043922@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Tue Jun 27 06:31:26 2017 New Revision: 444441 URL: https://svnweb.freebsd.org/changeset/ports/444441 Log: - Add new port: math/R-cran-units Support for measurement units in R vectors; automatic propagation, conversion, derivation and simplification of units; raising errors in case of unit incompatibility. Compatible with the difftime class. Uses the UNIDATA udunits library and unit database for unit conversion and compatibility checking. WWW: https://cran.r-project.org/web/packages/units/ Added: head/math/R-cran-units/ head/math/R-cran-units/Makefile (contents, props changed) head/math/R-cran-units/distinfo (contents, props changed) head/math/R-cran-units/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Jun 27 03:36:03 2017 (r444440) +++ head/math/Makefile Tue Jun 27 06:31:26 2017 (r444441) @@ -74,6 +74,7 @@ SUBDIR += R-cran-stabledist SUBDIR += R-cran-survey SUBDIR += R-cran-truncnorm + SUBDIR += R-cran-units SUBDIR += R-cran-xts SUBDIR += R-cran-zoo SUBDIR += aamath Added: head/math/R-cran-units/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-units/Makefile Tue Jun 27 06:31:26 2017 (r444441) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= units +DISTVERSION= 0.4-5 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Measurement Units for R Vectors + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-udunits2>=0.13:science/R-cran-udunits2 +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include <bsd.port.mk> Added: head/math/R-cran-units/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-units/distinfo Tue Jun 27 06:31:26 2017 (r444441) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498444362 +SHA256 (units_0.4-5.tar.gz) = 5c208cc8266bc37373bb630d22172643630a4e0f7a34d02a56cba67e03045469 +SIZE (units_0.4-5.tar.gz) = 781927 Added: head/math/R-cran-units/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-units/pkg-descr Tue Jun 27 06:31:26 2017 (r444441) @@ -0,0 +1,7 @@ +Support for measurement units in R vectors; automatic propagation, +conversion, derivation and simplification of units; raising errors +in case of unit incompatibility. Compatible with the difftime class. +Uses the UNIDATA udunits library and unit database for unit conversion +and compatibility checking. + +WWW: https://cran.r-project.org/web/packages/units/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706270631.v5R6VQpe043922>