git: b58df2cff0c7 - main - math/R-cran-Deriv: Add new port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 02 Jul 2024 10:27:27 UTC
The branch main has been updated by tota: URL: https://cgit.FreeBSD.org/ports/commit/?id=b58df2cff0c73133e1ec64495f489b9498ac0bb0 commit b58df2cff0c73133e1ec64495f489b9498ac0bb0 Author: TAKATSU Tomonari <tota@FreeBSD.org> AuthorDate: 2024-06-30 08:42:45 +0000 Commit: TAKATSU Tomonari <tota@FreeBSD.org> CommitDate: 2024-07-02 10:23:42 +0000 math/R-cran-Deriv: Add new port R-based solution for symbolic differentiation. It admits user-defined function as well as function substitution in arguments of functions to be differentiated. Some symbolic simplification is part of the work. --- math/Makefile | 1 + math/R-cran-Deriv/Makefile | 14 ++++++++++++++ math/R-cran-Deriv/distinfo | 3 +++ math/R-cran-Deriv/pkg-descr | 4 ++++ 4 files changed, 22 insertions(+) diff --git a/math/Makefile b/math/Makefile index de329683fee5..1f016e2c465e 100644 --- a/math/Makefile +++ b/math/Makefile @@ -12,6 +12,7 @@ SUBDIR += R-cran-ChangeAnomalyDetection SUBDIR += R-cran-DEoptimR SUBDIR += R-cran-DRR + SUBDIR += R-cran-Deriv SUBDIR += R-cran-DoE.base SUBDIR += R-cran-FNN SUBDIR += R-cran-Formula diff --git a/math/R-cran-Deriv/Makefile b/math/R-cran-Deriv/Makefile new file mode 100644 index 000000000000..54fa042d2825 --- /dev/null +++ b/math/R-cran-Deriv/Makefile @@ -0,0 +1,14 @@ +PORTNAME= Deriv +PORTVERSION= 4.1.3 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Symbolic Differentiation +WWW= https://cran.r-project.org/web/packages/Deriv/ + +LICENSE= GPLv3 + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/math/R-cran-Deriv/distinfo b/math/R-cran-Deriv/distinfo new file mode 100644 index 000000000000..d869e081b087 --- /dev/null +++ b/math/R-cran-Deriv/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1719730526 +SHA256 (Deriv_4.1.3.tar.gz) = dbdbf5ed8babf706373ae33a937d013c46110a490aa821bcd158a70f761d0f8c +SIZE (Deriv_4.1.3.tar.gz) = 37214 diff --git a/math/R-cran-Deriv/pkg-descr b/math/R-cran-Deriv/pkg-descr new file mode 100644 index 000000000000..c4c802d1babd --- /dev/null +++ b/math/R-cran-Deriv/pkg-descr @@ -0,0 +1,4 @@ +R-based solution for symbolic differentiation. It admits user-defined +function as well as function substitution in arguments of functions +to be differentiated. Some symbolic simplification is part of the +work.