From owner-svn-ports-all@FreeBSD.ORG Wed Aug 22 14:03:18 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F262106566C; Wed, 22 Aug 2012 14:03:18 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 502EB8FC1D; Wed, 22 Aug 2012 14:03:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7ME3Iar040915; Wed, 22 Aug 2012 14:03:18 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7ME3I08040910; Wed, 22 Aug 2012 14:03:18 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201208221403.q7ME3I08040910@svn.freebsd.org> From: Steven Kreuzer Date: Wed, 22 Aug 2012 14:03:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302939 - in head/math: . R-cran-nnls X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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: Wed, 22 Aug 2012 14:03:18 -0000 Author: skreuzer Date: Wed Aug 22 14:03:17 2012 New Revision: 302939 URL: http://svn.freebsd.org/changeset/ports/302939 Log: An R interface to the Lawson-Hanson implementation of an algorithm for non-negative least squares (NNLS). Also allows the combination of non-negative and non-positive constraints. WWW: http://cran.r-project.org/web/packages/nnls/ Added: head/math/R-cran-nnls/ head/math/R-cran-nnls/Makefile (contents, props changed) head/math/R-cran-nnls/distinfo (contents, props changed) head/math/R-cran-nnls/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Aug 22 13:59:54 2012 (r302938) +++ head/math/Makefile Wed Aug 22 14:03:17 2012 (r302939) @@ -22,6 +22,7 @@ SUBDIR += R-cran-labeling SUBDIR += R-cran-memisc SUBDIR += R-cran-mvtnorm + SUBDIR += R-cran-nnls SUBDIR += R-cran-psych SUBDIR += R-cran-sandwich SUBDIR += R-cran-sm Added: head/math/R-cran-nnls/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-nnls/Makefile Wed Aug 22 14:03:17 2012 (r302939) @@ -0,0 +1,20 @@ +# New ports collection makefile for: nnls +# Date created: 2012-08-21 +# Whom: Steven Kreuzer +# +# $FreeBSD$ + +PORTNAME= nnls +PORTVERSION= 1.4 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= R implementation of an algorithm for non-negative least squares + +LICENSE= GPLv2 + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include Added: head/math/R-cran-nnls/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-nnls/distinfo Wed Aug 22 14:03:17 2012 (r302939) @@ -0,0 +1,2 @@ +SHA256 (nnls_1.4.tar.gz) = 0e5d77abae12bc50639d34354f96a8e079408c9d7138a360743b73bd7bce6c1f +SIZE (nnls_1.4.tar.gz) = 10538 Added: head/math/R-cran-nnls/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-nnls/pkg-descr Wed Aug 22 14:03:17 2012 (r302939) @@ -0,0 +1,5 @@ +An R interface to the Lawson-Hanson implementation of an algorithm for +non-negative least squares (NNLS). Also allows the combination of non-negative +and non-positive constraints. + +WWW: http://cran.r-project.org/web/packages/nnls/