From owner-svn-ports-all@FreeBSD.ORG Tue Dec 25 11:21:15 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 285B02C3; Tue, 25 Dec 2012 11:21:15 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0D8298FC0A; Tue, 25 Dec 2012 11:21:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBPBLEXV044516; Tue, 25 Dec 2012 11:21:14 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBPBLEW7044508; Tue, 25 Dec 2012 11:21:14 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201212251121.qBPBLEW7044508@svn.freebsd.org> From: TAKATSU Tomonari Date: Tue, 25 Dec 2012 11:21:14 +0000 (UTC) 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 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.14 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, 25 Dec 2012 11:21:15 -0000 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 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 +# $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 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/