update to 0.15.0.0

This commit is contained in:
Jens Petersen 2019-07-25 16:41:07 +00:00
parent ef1b8354f7
commit 67d8c6412c
4 changed files with 10 additions and 182 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/statistics-0.14.0.2.tar.gz
/statistics-0.15.0.0.tar.gz

View File

@ -7,15 +7,14 @@
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 0.14.0.2
Release: 9%{?dist}
Version: 0.15.0.0
Release: 1%{?dist}
Summary: A library of statistical types, data, and functions
License: BSD
Url: https://hackage.haskell.org/package/%{pkg_name}
# Begin cabal-rpm sources:
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
# End cabal-rpm sources
# Begin cabal-rpm deps:
@ -30,8 +29,9 @@ BuildRequires: ghc-rpm-macros
BuildRequires: ghc-aeson-devel
BuildRequires: ghc-base-orphans-devel
BuildRequires: ghc-binary-devel
BuildRequires: ghc-data-default-class-devel
BuildRequires: ghc-deepseq-devel
BuildRequires: ghc-erf-devel
BuildRequires: ghc-dense-linear-algebra-devel
BuildRequires: ghc-math-functions-devel
BuildRequires: ghc-monad-par-devel
BuildRequires: ghc-mwc-random-devel
@ -43,6 +43,7 @@ BuildRequires: ghc-vector-th-unbox-devel
%if %{with tests}
BuildRequires: ghc-HUnit-devel
BuildRequires: ghc-QuickCheck-devel
BuildRequires: ghc-erf-devel
BuildRequires: ghc-ieee754-devel
BuildRequires: ghc-test-framework-devel
BuildRequires: ghc-test-framework-hunit-devel
@ -104,7 +105,6 @@ This package provides the Haskell %{pkg_name} profiling library.
%prep
# Begin cabal-rpm setup:
%setup -q -n %{pkgver}
cp -bp %{SOURCE1} %{pkg_name}.cabal
# End cabal-rpm setup
@ -145,6 +145,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%changelog
* Thu Jul 25 2019 Jens Petersen <petersen@redhat.com> - 0.15.0.0-1
- update to 0.15.0.0
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0.2-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (statistics-0.14.0.2.tar.gz) = 8ee0d6ae6f7a27b4b5a6dddd1e2c9a9b086224cfb7157efc396052263c5c89aea5eeb625a312e0c08f78cee3d819cdaa139f5a7bfc4413847592db45b1b697e4
SHA512 (statistics-0.15.0.0.tar.gz) = 89b44ab8662308dc17769c47c9791b1b673fd37363483333ef0e005b0e00ec120145ee8a1174d2e5a92fdb6e00fd441e389407cdcbd99c55b6523cc79ba82949

View File

@ -1,176 +0,0 @@
name: statistics
version: 0.14.0.2
x-revision: 2
synopsis: A library of statistical types, data, and functions
description:
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 regression and autocorrelation analysis.
.
* Random variate generation under several different distributions.
.
* Common statistical tests for significant differences between
samples.
license: BSD2
license-file: LICENSE
homepage: https://github.com/bos/statistics
bug-reports: https://github.com/bos/statistics/issues
author: Bryan O'Sullivan <bos@serpentine.com>
maintainer: Bryan O'Sullivan <bos@serpentine.com>
copyright: 2009-2014 Bryan O'Sullivan
category: Math, Statistics
build-type: Simple
cabal-version: >= 1.8
extra-source-files:
README.markdown
benchmark/bench.hs
changelog.md
examples/kde/KDE.hs
examples/kde/data/faithful.csv
examples/kde/kde.html
examples/kde/kde.tpl
tests/Tests/Math/Tables.hs
tests/Tests/Math/gen.py
tests/utils/Makefile
tests/utils/fftw.c
tested-with: GHC==7.6.3, GHC==7.8.3, GHC==7.10.3, GHC==8.0.1
library
exposed-modules:
Statistics.Autocorrelation
Statistics.ConfidenceInt
Statistics.Correlation
Statistics.Correlation.Kendall
Statistics.Distribution
Statistics.Distribution.Beta
Statistics.Distribution.Binomial
Statistics.Distribution.CauchyLorentz
Statistics.Distribution.ChiSquared
Statistics.Distribution.DiscreteUniform
Statistics.Distribution.Exponential
Statistics.Distribution.FDistribution
Statistics.Distribution.Gamma
Statistics.Distribution.Geometric
Statistics.Distribution.Hypergeometric
Statistics.Distribution.Laplace
Statistics.Distribution.Normal
Statistics.Distribution.Poisson
Statistics.Distribution.StudentT
Statistics.Distribution.Transform
Statistics.Distribution.Uniform
Statistics.Function
Statistics.Math.RootFinding
Statistics.Matrix
Statistics.Matrix.Algorithms
Statistics.Matrix.Mutable
Statistics.Matrix.Types
Statistics.Quantile
Statistics.Regression
Statistics.Resampling
Statistics.Resampling.Bootstrap
Statistics.Sample
Statistics.Sample.Histogram
Statistics.Sample.KernelDensity
Statistics.Sample.KernelDensity.Simple
Statistics.Sample.Powers
Statistics.Test.ChiSquared
Statistics.Test.KolmogorovSmirnov
Statistics.Test.KruskalWallis
Statistics.Test.MannWhitneyU
-- Statistics.Test.Runs
Statistics.Test.StudentT
Statistics.Test.Types
Statistics.Test.WilcoxonT
Statistics.Transform
Statistics.Types
other-modules:
Statistics.Distribution.Poisson.Internal
Statistics.Function.Comparison
Statistics.Internal
Statistics.Sample.Internal
Statistics.Test.Internal
Statistics.Types.Internal
build-depends:
aeson >= 0.6.0.0,
base >= 4.5 && < 5,
base-orphans >= 0.6 && <0.9,
binary >= 0.5.1.0,
deepseq >= 1.1.0.2,
erf,
math-functions >= 0.1.7,
monad-par >= 0.3.4,
mwc-random >= 0.13.0.0,
primitive >= 0.3,
vector >= 0.10,
vector-algorithms >= 0.4,
vector-th-unbox,
vector-binary-instances >= 0.2.1
if impl(ghc < 7.6)
build-depends:
ghc-prim
-- gather extensive profiling data for now
ghc-prof-options: -auto-all
ghc-options: -O2 -Wall -fwarn-tabs -funbox-strict-fields
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: tests.hs
other-modules:
Tests.ApproxEq
Tests.Correlation
Tests.Distribution
Tests.Function
Tests.Helpers
Tests.KDE
Tests.Matrix
Tests.Matrix.Types
Tests.NonParametric
Tests.NonParametric.Table
Tests.Orphanage
Tests.Parametric
Tests.Serialization
Tests.Transform
ghc-options:
-Wall -threaded -rtsopts -fsimpl-tick-factor=500
build-depends:
HUnit,
QuickCheck >= 2.7.5,
base,
binary,
erf,
aeson,
ieee754 >= 0.7.3,
math-functions,
mwc-random,
primitive,
statistics,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
vector,
vector-algorithms
source-repository head
type: git
location: https://github.com/bos/statistics
source-repository head
type: mercurial
location: https://bitbucket.org/bos/statistics