Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Dec 2015 14:04:33 +0000 (UTC)
From:      Wen Heping <wen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r402738 - in head/math: . R-cran-maxLik
Message-ID:  <201512011404.tB1E4Xud064029@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wen
Date: Tue Dec  1 14:04:33 2015
New Revision: 402738
URL: https://svnweb.freebsd.org/changeset/ports/402738

Log:
  Functions for Maximum Likelihood (ML) estimation and non-linear
  optimization, and related tools. It includes a unified way to
  call different optimizers, and classes and methods to handle the
  results from the ML viewpoint. It also includes a number of
  convenience tools for testing and developing your own models.
  
  WWW: http://www.maxlik.org/

Added:
  head/math/R-cran-maxLik/
  head/math/R-cran-maxLik/Makefile   (contents, props changed)
  head/math/R-cran-maxLik/distinfo   (contents, props changed)
  head/math/R-cran-maxLik/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Tue Dec  1 14:04:13 2015	(r402737)
+++ head/math/Makefile	Tue Dec  1 14:04:33 2015	(r402738)
@@ -36,6 +36,7 @@
     SUBDIR += R-cran-irlba
     SUBDIR += R-cran-labeling
     SUBDIR += R-cran-lme4
+    SUBDIR += R-cran-maxLik
     SUBDIR += R-cran-memisc
     SUBDIR += R-cran-minqa
     SUBDIR += R-cran-miscTools

Added: head/math/R-cran-maxLik/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-maxLik/Makefile	Tue Dec  1 14:04:33 2015	(r402738)
@@ -0,0 +1,22 @@
+# Created by: Wen Heping <wenheping@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	maxLik
+DISTVERSION=	1.3-4
+CATEGORIES=	math
+DISTNAME=	${PORTNAME}_${DISTVERSION}
+
+MAINTAINER=	wen@FreeBSD.org
+COMMENT=	Maximum Likelihood Estimation and Related Tools
+
+LICENSE=	GPLv2 GPLv3
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS=	R-cran-miscTools>=0.6.8:${PORTSDIR}/math/R-cran-miscTools \
+		R-cran-sandwich>=0:${PORTSDIR}/math/R-cran-sandwich
+RUN_DEPENDS=	R-cran-miscTools>=0.6.8:${PORTSDIR}/math/R-cran-miscTools \
+		R-cran-sandwich>=0:${PORTSDIR}/math/R-cran-sandwich
+
+USES=	cran:auto-plist
+
+.include <bsd.port.mk>

Added: head/math/R-cran-maxLik/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-maxLik/distinfo	Tue Dec  1 14:04:33 2015	(r402738)
@@ -0,0 +1,2 @@
+SHA256 (maxLik_1.3-4.tar.gz) = 181ab87721b1e6e3859c60d12eea2f67a7135bfa679db73c20a9ef76d82c4b4a
+SIZE (maxLik_1.3-4.tar.gz) = 115355

Added: head/math/R-cran-maxLik/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-maxLik/pkg-descr	Tue Dec  1 14:04:33 2015	(r402738)
@@ -0,0 +1,7 @@
+Functions for Maximum Likelihood (ML) estimation and non-linear
+optimization, and related tools. It includes a unified way to
+call different optimizers, and classes and methods to handle the
+results from the ML viewpoint. It also includes a number of
+convenience tools for testing and developing your own models.
+
+WWW: http://www.maxlik.org/



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