Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Oct 2016 12:49:50 +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: r423659 - in head/math: . R-cran-numDeriv
Message-ID:  <201610101249.u9ACnot5073863@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tota
Date: Mon Oct 10 12:49:50 2016
New Revision: 423659
URL: https://svnweb.freebsd.org/changeset/ports/423659

Log:
  - Add new port: math/R-cran-numDeriv
  
    Methods for calculating (usually) accurate numerical first and
    second order derivatives. Accurate calculations are done using
    'Richardson"s' extrapolation or, when applicable, a complex step
    derivative is available. A simple difference method is also provided.
    Simple difference is (usually) less accurate but is much quicker
    than 'Richardson"s' extrapolation and provides a useful cross-check.
    Methods are provided for real scalar and vector valued functions.
  
    WWW: https://cran.r-project.org/web/packages/numDeriv/

Added:
  head/math/R-cran-numDeriv/
  head/math/R-cran-numDeriv/Makefile   (contents, props changed)
  head/math/R-cran-numDeriv/distinfo   (contents, props changed)
  head/math/R-cran-numDeriv/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile   (contents, props changed)

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Mon Oct 10 12:43:44 2016	(r423658)
+++ head/math/Makefile	Mon Oct 10 12:49:50 2016	(r423659)
@@ -55,6 +55,7 @@
     SUBDIR += R-cran-nloptr
     SUBDIR += R-cran-nnls
     SUBDIR += R-cran-nortest
+    SUBDIR += R-cran-numDeriv
     SUBDIR += R-cran-outliers
     SUBDIR += R-cran-pbkrtest
     SUBDIR += R-cran-psych

Added: head/math/R-cran-numDeriv/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-numDeriv/Makefile	Mon Oct 10 12:49:50 2016	(r423659)
@@ -0,0 +1,16 @@
+# Created by: TAKATSU Tomonari <tota@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	numDeriv
+DISTVERSION=	2016.8-1
+CATEGORIES=	math
+DISTNAME=	${PORTNAME}_${DISTVERSION}
+
+MAINTAINER=	tota@FreeBSD.org
+COMMENT=	Accurate Numerical Derivatives
+
+LICENSE=	GPLv2
+
+USES=		cran:auto-plist
+
+.include <bsd.port.mk>

Added: head/math/R-cran-numDeriv/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-numDeriv/distinfo	Mon Oct 10 12:49:50 2016	(r423659)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1475924566
+SHA256 (numDeriv_2016.8-1.tar.gz) = 1b681d273697dc780a3ac5bedabb4a257785732d9ca4ef68e4e4aac8b328d11e
+SIZE (numDeriv_2016.8-1.tar.gz) = 76303

Added: head/math/R-cran-numDeriv/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-numDeriv/pkg-descr	Mon Oct 10 12:49:50 2016	(r423659)
@@ -0,0 +1,9 @@
+Methods for calculating (usually) accurate numerical first and
+second order derivatives. Accurate calculations are done using
+'Richardson"s' extrapolation or, when applicable, a complex step
+derivative is available. A simple difference method is also provided.
+Simple difference is (usually) less accurate but is much quicker
+than 'Richardson"s' extrapolation and provides a useful cross-check.
+Methods are provided for real scalar and vector valued functions.
+
+WWW: https://cran.r-project.org/web/packages/numDeriv/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610101249.u9ACnot5073863>