From owner-svn-ports-all@freebsd.org Tue Dec 1 14:04:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BD85A3E334; Tue, 1 Dec 2015 14:04:35 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EDE481DA3; Tue, 1 Dec 2015 14:04:34 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1E4YYB064033; Tue, 1 Dec 2015 14:04:34 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB1E4Xud064029; Tue, 1 Dec 2015 14:04:33 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201512011404.tB1E4Xud064029@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 1 Dec 2015 14:04:33 +0000 (UTC) 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 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.20 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, 01 Dec 2015 14:04:35 -0000 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 +# $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 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/