Received: by mail.netbsd.org (Postfix, from userid 605) id EAE8684D38; Tue, 21 Aug 2018 09:29:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0811484D20 for ; Tue, 21 Aug 2018 09:29:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ICHUNVHqnLdP for ; Tue, 21 Aug 2018 09:29:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3A9F184C78 for ; Tue, 21 Aug 2018 09:29:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 341E4FBEC; Tue, 21 Aug 2018 09:29:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1534843796139790" MIME-Version: 1.0 Date: Tue, 21 Aug 2018 09:29:56 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/math/p5-Statistics-CaseResampling To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20180821092956.341E4FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1534843796139790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Aug 21 09:29:56 UTC 2018 Added Files: pkgsrc/math/p5-Statistics-CaseResampling: DESCR Makefile distinfo Log Message: math/p5-Statistics-CaseResampling: import p5-Statistics-CaseResampling-0.15 The purpose of this perl module is to calculate the median (or in principle also other statistics) with confidence intervals on a sample. To do that, it uses a technique called bootstrapping. In a nutshell, it resamples the sample a lot of times and for each resample, it calculates the median. From the distribution of medians, it then calculates the confidence limits. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/math/p5-Statistics-CaseResampling/DESCR \ pkgsrc/math/p5-Statistics-CaseResampling/Makefile \ pkgsrc/math/p5-Statistics-CaseResampling/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1534843796139790 Content-Disposition: inline Content-Length: 2202 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/math/p5-Statistics-CaseResampling/DESCR diff -u /dev/null pkgsrc/math/p5-Statistics-CaseResampling/DESCR:1.1 --- /dev/null Tue Aug 21 09:29:56 2018 +++ pkgsrc/math/p5-Statistics-CaseResampling/DESCR Tue Aug 21 09:29:56 2018 @@ -0,0 +1,6 @@ +The purpose of this perl module is to calculate the median (or in +principle also other statistics) with confidence intervals on a sample. +To do that, it uses a technique called bootstrapping. In a nutshell, it +resamples the sample a lot of times and for each resample, it calculates +the median. From the distribution of medians, it then calculates the +confidence limits. Index: pkgsrc/math/p5-Statistics-CaseResampling/Makefile diff -u /dev/null pkgsrc/math/p5-Statistics-CaseResampling/Makefile:1.1 --- /dev/null Tue Aug 21 09:29:56 2018 +++ pkgsrc/math/p5-Statistics-CaseResampling/Makefile Tue Aug 21 09:29:56 2018 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2018/08/21 09:29:56 wiz Exp $ + +DISTNAME= Statistics-CaseResampling-0.15 +PKGNAME= p5-${DISTNAME} +CATEGORIES= math perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Statistics/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://metacpan.org/release/Statistics-CaseResampling +COMMENT= Efficient resampling and calculation of medians with confidence intervals +LICENSE= ${PERL5_LICENSE} + +PERL5_PACKLIST= auto/Statistics/CaseResampling/.packlist + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/p5-Statistics-CaseResampling/distinfo diff -u /dev/null pkgsrc/math/p5-Statistics-CaseResampling/distinfo:1.1 --- /dev/null Tue Aug 21 09:29:56 2018 +++ pkgsrc/math/p5-Statistics-CaseResampling/distinfo Tue Aug 21 09:29:56 2018 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2018/08/21 09:29:56 wiz Exp $ + +SHA1 (Statistics-CaseResampling-0.15.tar.gz) = 3a1f670b3eb1ef328a1def22abca4bbc29998539 +RMD160 (Statistics-CaseResampling-0.15.tar.gz) = b24a1720263c5a26bb8090d367bd833e88cd5ab0 +SHA512 (Statistics-CaseResampling-0.15.tar.gz) = 2e7baec4d87c74648963e3af8e88210182b9a6f22ce42c4a8652a2f802568c13736415d3d25f917843a6021921bbbe26d6b69742108569f649a41efe9e4168bf +Size (Statistics-CaseResampling-0.15.tar.gz) = 58153 bytes --_----------=_1534843796139790--