Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Aug 2012 14:03:18 +0000 (UTC)
From:      Steven Kreuzer <skreuzer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r302939 - in head/math: . R-cran-nnls
Message-ID:  <201208221403.q7ME3I08040910@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <skreuzer@FreeBSD.org>
+#
+# $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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208221403.q7ME3I08040910>