diff options
author | miwi <miwi@FreeBSD.org> | 2017-05-06 23:15:00 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2017-05-06 23:15:00 +0800 |
commit | d8431958d35fc80a677f793adc9d7fe9d23c01be (patch) | |
tree | 554afb515287b7dfae96f008be3d1eb7dfed17e1 /math | |
parent | 282495d39b922b5ed04b03bd35c95f1b5cf41d10 (diff) | |
download | freebsd-ports-gnome-d8431958d35fc80a677f793adc9d7fe9d23c01be.tar.gz freebsd-ports-gnome-d8431958d35fc80a677f793adc9d7fe9d23c01be.tar.zst freebsd-ports-gnome-d8431958d35fc80a677f793adc9d7fe9d23c01be.zip |
Rsolnp: General Non-Linear Optimization
General Non-linear Optimization Using Augmented Lagrange Multiplier
Method.
WWW: http://cran.r-project.org/web/packages/Rsolnp/
PR: 213102
Submitted by: Pedro Giffuni
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-Rsolnp/Makefile | 22 | ||||
-rw-r--r-- | math/R-cran-Rsolnp/distinfo | 3 | ||||
-rw-r--r-- | math/R-cran-Rsolnp/pkg-descr | 6 |
4 files changed, 32 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 3b2438eabfdc..1ae76645c256 100644 --- a/math/Makefile +++ b/math/Makefile @@ -22,6 +22,7 @@ SUBDIR += R-cran-RcppArmadillo SUBDIR += R-cran-RcppEigen SUBDIR += R-cran-Rmpfr + SUBDIR += R-cran-Rsolnp SUBDIR += R-cran-SparseM SUBDIR += R-cran-VGAM SUBDIR += R-cran-Zelig diff --git a/math/R-cran-Rsolnp/Makefile b/math/R-cran-Rsolnp/Makefile new file mode 100644 index 000000000000..2a7aed3595e7 --- /dev/null +++ b/math/R-cran-Rsolnp/Makefile @@ -0,0 +1,22 @@ +# Created by: Pedro Giffuni +# $FreeBSD$ + +PORTNAME= Rsolnp +DISTVERSION= 1.16 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= pfg@FreeBSD.org +COMMENT= General Non-Linear Optimization + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +CRAN_DEPENDS= R-cran-truncnorm>0:math/R-cran-truncnorm + +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/math/R-cran-Rsolnp/distinfo b/math/R-cran-Rsolnp/distinfo new file mode 100644 index 000000000000..d85cf0e0cb18 --- /dev/null +++ b/math/R-cran-Rsolnp/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1475163989 +SHA256 (Rsolnp_1.16.tar.gz) = 3142776062beb8e2b45cdbc4fe6e5446b6d33505253d79f2890fe4178d9cf670 +SIZE (Rsolnp_1.16.tar.gz) = 188216 diff --git a/math/R-cran-Rsolnp/pkg-descr b/math/R-cran-Rsolnp/pkg-descr new file mode 100644 index 000000000000..2efd92e3318c --- /dev/null +++ b/math/R-cran-Rsolnp/pkg-descr @@ -0,0 +1,6 @@ +Rsolnp: General Non-Linear Optimization + +General Non-linear Optimization Using Augmented Lagrange Multiplier +Method. + +WWW: http://cran.r-project.org/web/packages/Rsolnp/ |