Date: Tue, 25 Dec 2012 11:21:14 +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: r309473 - in head/math: . R-cran-quadprog Message-ID: <201212251121.qBPBLEW7044508@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Tue Dec 25 11:21:13 2012 New Revision: 309473 URL: http://svnweb.freebsd.org/changeset/ports/309473 Log: - Add a new port: math/R-cran-quadprog This routine implements the dual method of Goldfarb and Idnani (1982, 1983) for solving quadratic programming problems of the form min(?dT b + 1/2bT Db) with the constraints AT b >= b0. WWW: http://cran.r-project.org/web/packages/quadprog/ PR: ports/172298 (based on) Submitted by: David Naylor <naylor.b.david_AT_gmail_DOT_com> Added: head/math/R-cran-quadprog/ head/math/R-cran-quadprog/Makefile (contents, props changed) head/math/R-cran-quadprog/distinfo (contents, props changed) head/math/R-cran-quadprog/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Dec 25 11:03:12 2012 (r309472) +++ head/math/Makefile Tue Dec 25 11:21:13 2012 (r309473) @@ -28,6 +28,7 @@ SUBDIR += R-cran-mvtnorm SUBDIR += R-cran-nnls SUBDIR += R-cran-psych + SUBDIR += R-cran-quadprog SUBDIR += R-cran-sandwich SUBDIR += R-cran-sm SUBDIR += R-cran-sp Added: head/math/R-cran-quadprog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-quadprog/Makefile Tue Dec 25 11:21:13 2012 (r309473) @@ -0,0 +1,18 @@ +# Created by: David Naylor <naylor.b.david@gmail.com> +# $FreeBSD$ + +PORTNAME= quadprog +DISTVERSION= 1.5-4 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= naylor.b.david@gmail.com +COMMENT= Functions to solve Quadratic Programming Problems + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/math/R-cran-quadprog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-quadprog/distinfo Tue Dec 25 11:21:13 2012 (r309473) @@ -0,0 +1,2 @@ +SHA256 (quadprog_1.5-4.tar.gz) = b596941afb3809a4f7fb7a635c78e64f9dbbce80c7f053825765880e79fe4ea0 +SIZE (quadprog_1.5-4.tar.gz) = 34653 Added: head/math/R-cran-quadprog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-quadprog/pkg-descr Tue Dec 25 11:21:13 2012 (r309473) @@ -0,0 +1,5 @@ +This routine implements the dual method of Goldfarb and Idnani +(1982, 1983) for solving quadratic programming problems of the form +min(?dT b + 1/2bT Db) with the constraints AT b >= b0. + +WWW: http://cran.r-project.org/web/packages/quadprog/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212251121.qBPBLEW7044508>