diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-haskell/statistics | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-haskell/statistics')
-rw-r--r-- | dev-haskell/statistics/Manifest | 3 | ||||
-rw-r--r-- | dev-haskell/statistics/metadata.xml | 102 | ||||
-rw-r--r-- | dev-haskell/statistics/statistics-0.10.5.2.ebuild | 42 | ||||
-rw-r--r-- | dev-haskell/statistics/statistics-0.11.0.3.ebuild | 42 | ||||
-rw-r--r-- | dev-haskell/statistics/statistics-0.13.2.3.ebuild | 43 |
5 files changed, 232 insertions, 0 deletions
diff --git a/dev-haskell/statistics/Manifest b/dev-haskell/statistics/Manifest new file mode 100644 index 000000000000..3660c48c20b5 --- /dev/null +++ b/dev-haskell/statistics/Manifest @@ -0,0 +1,3 @@ +DIST statistics-0.10.5.2.tar.gz 67302 SHA256 7eef958aee470c3eda905cf29d62aa336681228f9e6bc30299e84436d0ef8b8f SHA512 92ca0852551d2f67b1a0d96d472952492422d0c35962c1c784baa4d28915b7938e588c6fd8eddab1071e4526b78181258dda79a1962312714d140ccaaf1367e1 WHIRLPOOL ba4edd519c4df73b65dd402a4dbe137cc99312ebc466433c56910ccfa6754bac88a77f07281591be811ecb522ea3924a1a5e13d64c5b21898041891a7b88fa61 +DIST statistics-0.11.0.3.tar.gz 69092 SHA256 0336acd8f61c36fe30217198660b75d7cf88655fb164cbfa4d464a8977fc94a0 SHA512 7715e5497a794d4706232372c63a83072a60a7ba25517bbecafcce5125d83ad13916755db83af0ece349a35a663447037fc0316cf841570fa3e6a83bb29457fb WHIRLPOOL 761ae858928c4d495e315afeddbc6623daa44ed788700a546c2e56e15a20a6e0124b49190500be78e24f2bce34e11aedc7eae17559a52a2d7b61fddbcfcb35a2 +DIST statistics-0.13.2.3.tar.gz 79522 SHA256 d624b1494959d3c64cfd068c9566778a799d3e3f5d6b22ec3e353ba6d6876fbd SHA512 5fcc6f6889ed5b54d17d5d3f505bc6860d836f6f9784cf768a337db00179b68e16fc9d9a3a2336563c76cb24cb4faf9e705f14150fd6adb5c649760b63726b17 WHIRLPOOL 9371403395313806253568cbeb14fd337c30e818e945c85867dab99fb1f1c34077bc38e7a9d9d3bab617c27e162d4fae05a0f3632dfef6ef824e5d333abd033d diff --git a/dev-haskell/statistics/metadata.xml b/dev-haskell/statistics/metadata.xml new file mode 100644 index 000000000000..1a9198b13f33 --- /dev/null +++ b/dev-haskell/statistics/metadata.xml @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>haskell</herd> + <longdescription> + This library provides a number of common functions and types useful + in statistics. We focus on high performance, numerical robustness, + and use of good algorithms. Where possible, we provide + references to the statistical literature. + + The library's facilities can be divided into four broad categories: + + * Working with widely used discrete and continuous probability + distributions. (There are dozens of exotic distributions in use; + we focus on the most common.) + + * Computing with sample data: quantile estimation, kernel density + estimation, histograms, bootstrap methods, significance testing, + and autocorrelation analysis. + + * Random variate generation under several different distributions. + + * Common statistical tests for significant differences between + samples. + + Changes in 0.10.0.0: + + * The type classes @Mean@ and @Variance@ are split in two. This is + required for distributions which do not have finite variance or + mean. + + * The @S.Sample.KernelDensity@ module has been renamed, and + completely rewritten to be much more robust. The older module + oversmoothed multi-modal data. (The older module is still + available under the name @S.Sample.KernelDensity.Simple@). + + * Histogram computation is added, in @S.Sample.Histogram@. + + * Forward and inverse discrete Fourier and cosine transforms are + added, in @S.Transform@. + + * Root finding is added, in @S.Math.RootFinding@. + + * The @complCumulative@ function is added to the @Distribution@ + class in order to accurately assess probalities P(X>x) which are + used in one-tailed tests. + + * A @stdDev@ function is added to the @Variance@ class for + distributions. + + * The constructor @S.Distribution.normalDistr@ now takes standard + deviation instead of variance as its parameter. + + * A bug in @S.Quantile.weightedAvg@ is fixed. It produced a wrong + answer if a sample contained only one element. + + * Bugs in quantile estimations for chi-square and gamma distribution + are fixed. + + * Integer overlow in @mannWhitneyUCriticalValue@ is fixed. It + produced incorrect critical values for moderately large + samples. Something around 20 for 32-bit machines and 40 for 64-bit + ones. + + * A bug in @mannWhitneyUSignificant@ is fixed. If either sample was + larger than 20, it produced a completely incorrect answer. + + * One- and two-tailed tests in @S.Tests.NonParametric@ are selected + with sum types instead of @Bool@. + + * Test results returned as enumeration instead of @Bool@. + + * Performance improvements for Mann-Whitney U and Wilcoxon tests. + + * Module @S.Tests.NonParamtric@ is split into @S.Tests.MannWhitneyU@ + and @S.Tests.WilcoxonT@ + + * @sortBy@ is added to @S.Function@. + + * Mean and variance for gamma distribution are fixed. + + * Much faster cumulative probablity functions for Poisson and + hypergeometric distributions. + + * Better density functions for gamma and Poisson distributions. + + * Student-T, Fisher-Snedecor F-distributions and Cauchy-Lorentz + distrbution are added. + + * The function @S.Function.create@ is removed. Use @generateM@ from + the @vector@ package instead. + + * Function to perform approximate comparion of doubles is added to + @S.Function.Comparison@ + + * Regularized incomplete beta function and its inverse are added to + @S.Function@. + </longdescription> + <upstream> + <remote-id type="github">bos/statistics</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-haskell/statistics/statistics-0.10.5.2.ebuild b/dev-haskell/statistics/statistics-0.10.5.2.ebuild new file mode 100644 index 000000000000..6423b54154b5 --- /dev/null +++ b/dev-haskell/statistics/statistics-0.10.5.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.3.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="A library of statistical types, data, and functions" +HOMEPAGE="https://github.com/bos/statistics" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RESTRICT=test # likes to fail under a load + +RDEPEND=">=dev-haskell/binary-0.6.3.0:=[profile?] + dev-haskell/erf:=[profile?] + >=dev-haskell/math-functions-0.1.2:=[profile?] + >=dev-haskell/monad-par-0.3.4:=[profile?] + >=dev-haskell/mwc-random-0.13.0.0:=[profile?] + >=dev-haskell/primitive-0.3:=[profile?] + >=dev-haskell/vector-0.7.1:=[profile?] + >=dev-haskell/vector-algorithms-0.4:=[profile?] + >=dev-haskell/vector-binary-instances-0.2.1:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( dev-haskell/hunit + >=dev-haskell/ieee754-0.7.3 + >=dev-haskell/quickcheck-2 + dev-haskell/test-framework + dev-haskell/test-framework-hunit + dev-haskell/test-framework-quickcheck2 ) +" diff --git a/dev-haskell/statistics/statistics-0.11.0.3.ebuild b/dev-haskell/statistics/statistics-0.11.0.3.ebuild new file mode 100644 index 000000000000..3520bcd3f1ec --- /dev/null +++ b/dev-haskell/statistics/statistics-0.11.0.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.4.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="A library of statistical types, data, and functions" +HOMEPAGE="https://github.com/bos/statistics" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RESTRICT=test # likes to fail under a load + +RDEPEND=">=dev-haskell/binary-0.5.1.0:=[profile?] + dev-haskell/erf:=[profile?] + >=dev-haskell/math-functions-0.1.5.2:=[profile?] + >=dev-haskell/monad-par-0.3.4:=[profile?] + >=dev-haskell/mwc-random-0.13.0.0:=[profile?] + >=dev-haskell/primitive-0.3:=[profile?] + >=dev-haskell/vector-0.7.1:=[profile?] + >=dev-haskell/vector-algorithms-0.4:=[profile?] + >=dev-haskell/vector-binary-instances-0.2.1:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( dev-haskell/hunit + >=dev-haskell/ieee754-0.7.3 + >=dev-haskell/quickcheck-2.7 + dev-haskell/test-framework + dev-haskell/test-framework-hunit + dev-haskell/test-framework-quickcheck2 ) +" diff --git a/dev-haskell/statistics/statistics-0.13.2.3.ebuild b/dev-haskell/statistics/statistics-0.13.2.3.ebuild new file mode 100644 index 000000000000..8c42e985bb83 --- /dev/null +++ b/dev-haskell/statistics/statistics-0.13.2.3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.4.3 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="A library of statistical types, data, and functions" +HOMEPAGE="https://github.com/bos/statistics" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RESTRICT=test # likes to fail under a load + +RDEPEND=">=dev-haskell/aeson-0.6.0.0:=[profile?] + >=dev-haskell/binary-0.5.1.0:=[profile?] + dev-haskell/erf:=[profile?] + >=dev-haskell/math-functions-0.1.5.2:=[profile?] + >=dev-haskell/monad-par-0.3.4:=[profile?] + >=dev-haskell/mwc-random-0.13.0.0:=[profile?] + >=dev-haskell/primitive-0.3:=[profile?] + >=dev-haskell/vector-0.10:=[profile?] + >=dev-haskell/vector-algorithms-0.4:=[profile?] + >=dev-haskell/vector-binary-instances-0.2.1:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( dev-haskell/hunit + >=dev-haskell/ieee754-0.7.3 + >=dev-haskell/quickcheck-2.7.5 + dev-haskell/test-framework + dev-haskell/test-framework-hunit + dev-haskell/test-framework-quickcheck2 ) +" |