From owner-svn-ports-all@freebsd.org Tue Jun 27 06:31:27 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 9D424DA250F; Tue, 27 Jun 2017 06:31:27 +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 753667DA32; Tue, 27 Jun 2017 06:31:27 +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 v5R6VQlK043926; Tue, 27 Jun 2017 06:31:26 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5R6VQpe043922; Tue, 27 Jun 2017 06:31:26 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201706270631.v5R6VQpe043922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 27 Jun 2017 06:31:26 +0000 (UTC) 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 X-SVN-Group: ports-head 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: Tue, 27 Jun 2017 06:31:27 -0000 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 +# $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 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/