From owner-svn-ports-all@freebsd.org Fri Sep 30 06:24:28 2016 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 A0E28C03C8D; Fri, 30 Sep 2016 06:24:28 +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 4CBCF1AA0; Fri, 30 Sep 2016 06:24:28 +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 u8U6ORPK097614; Fri, 30 Sep 2016 06:24:27 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8U6ORPs097610; Fri, 30 Sep 2016 06:24:27 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609300624.u8U6ORPs097610@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 30 Sep 2016 06:24:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422959 - in head/math: . R-cran-truncnorm 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.23 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: Fri, 30 Sep 2016 06:24:28 -0000 Author: wen Date: Fri Sep 30 06:24:27 2016 New Revision: 422959 URL: https://svnweb.freebsd.org/changeset/ports/422959 Log: Density, distribution function, quantile function, random generation and expected value function for the truncated normal distribution with mean equal to 'mean' and standard deviation equal to 'sd'. WWW: http://cran.r-project.org/web/packages/truncnorm/ PR: 213091 Submitted by: pfg@ Added: head/math/R-cran-truncnorm/ head/math/R-cran-truncnorm/Makefile (contents, props changed) head/math/R-cran-truncnorm/distinfo (contents, props changed) head/math/R-cran-truncnorm/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Sep 30 04:58:50 2016 (r422958) +++ head/math/Makefile Fri Sep 30 06:24:27 2016 (r422959) @@ -66,6 +66,7 @@ SUBDIR += R-cran-sspir SUBDIR += R-cran-stabledist SUBDIR += R-cran-survey + SUBDIR += R-cran-truncnorm SUBDIR += R-cran-xts SUBDIR += R-cran-zoo SUBDIR += aamath Added: head/math/R-cran-truncnorm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-truncnorm/Makefile Fri Sep 30 06:24:27 2016 (r422959) @@ -0,0 +1,16 @@ +# Created by: Pedro Giffuni +# $FreeBSD$ + +PORTNAME= truncnorm +DISTVERSION= 1.0-7 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= pfg@FreeBSD.org +COMMENT= Truncated normal distribution + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include Added: head/math/R-cran-truncnorm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-truncnorm/distinfo Fri Sep 30 06:24:27 2016 (r422959) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475192353 +SHA256 (truncnorm_1.0-7.tar.gz) = c7d775d09e2dcbcc543c03a207b4407b8548b5fdfeb4c017f12818507e014ce1 +SIZE (truncnorm_1.0-7.tar.gz) = 9909 Added: head/math/R-cran-truncnorm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-truncnorm/pkg-descr Fri Sep 30 06:24:27 2016 (r422959) @@ -0,0 +1,5 @@ +Density, distribution function, quantile function, random generation +and expected value function for the truncated normal distribution +with mean equal to 'mean' and standard deviation equal to 'sd'. + +WWW: http://cran.r-project.org/web/packages/truncnorm/