ghc-statistics/ghc-statistics.spec

177 lines
4.8 KiB
RPMSpec
Raw Normal View History

# generated by cabal-rpm-1.0.0
2017-12-14 20:22:01 +00:00
# https://fedoraproject.org/wiki/Packaging:Haskell
%global pkg_name statistics
%global pkgver %{pkg_name}-%{version}
%bcond_with tests
Name: ghc-%{pkg_name}
2019-07-25 16:41:07 +00:00
Version: 0.15.0.0
Release: 1%{?dist}
2017-12-14 20:22:01 +00:00
Summary: A library of statistical types, data, and functions
License: BSD
Url: https://hackage.haskell.org/package/%{pkg_name}
2019-02-17 14:47:12 +00:00
# Begin cabal-rpm sources:
2017-12-14 20:22:01 +00:00
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
2019-02-17 14:47:12 +00:00
# End cabal-rpm sources
2017-12-14 20:22:01 +00:00
2019-02-17 14:47:12 +00:00
# Begin cabal-rpm deps:
2017-12-14 20:22:01 +00:00
BuildRequires: ghc-Cabal-devel
%if %{with haddock}
BuildRequires: ghc-doc
%endif
%if %{with ghc_prof}
BuildRequires: ghc-prof
%endif
2017-12-14 20:22:01 +00:00
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-aeson-devel
BuildRequires: ghc-base-orphans-devel
BuildRequires: ghc-binary-devel
2019-07-25 16:41:07 +00:00
BuildRequires: ghc-data-default-class-devel
2017-12-14 20:22:01 +00:00
BuildRequires: ghc-deepseq-devel
2019-07-25 16:41:07 +00:00
BuildRequires: ghc-dense-linear-algebra-devel
2017-12-14 20:22:01 +00:00
BuildRequires: ghc-math-functions-devel
BuildRequires: ghc-monad-par-devel
BuildRequires: ghc-mwc-random-devel
BuildRequires: ghc-primitive-devel
BuildRequires: ghc-vector-algorithms-devel
BuildRequires: ghc-vector-binary-instances-devel
BuildRequires: ghc-vector-devel
BuildRequires: ghc-vector-th-unbox-devel
%if %{with tests}
BuildRequires: ghc-HUnit-devel
BuildRequires: ghc-QuickCheck-devel
2019-07-25 16:41:07 +00:00
BuildRequires: ghc-erf-devel
2017-12-14 20:22:01 +00:00
BuildRequires: ghc-ieee754-devel
BuildRequires: ghc-test-framework-devel
BuildRequires: ghc-test-framework-hunit-devel
BuildRequires: ghc-test-framework-quickcheck2-devel
%endif
# End cabal-rpm deps
%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.
%package devel
Summary: Haskell %{pkg_name} library development files
Provides: %{name}-static = %{version}-%{release}
2018-01-24 13:12:02 +00:00
%if %{defined ghc_version}
2017-12-14 20:22:01 +00:00
Requires: ghc-compiler = %{ghc_version}
2018-01-24 13:12:02 +00:00
%endif
2017-12-14 20:22:01 +00:00
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package provides the Haskell %{pkg_name} library development files.
%if %{with haddock}
%package doc
Summary: Haskell %{pkg_name} library documentation
2017-12-14 20:22:01 +00:00
%description doc
This package provides the Haskell %{pkg_name} library documentation.
%endif
2017-12-14 20:22:01 +00:00
%if %{with ghc_prof}
%package prof
Summary: Haskell %{pkg_name} profiling library
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
%description prof
This package provides the Haskell %{pkg_name} profiling library.
%endif
2017-12-14 20:22:01 +00:00
%prep
2019-02-17 14:47:12 +00:00
# Begin cabal-rpm setup:
2017-12-14 20:22:01 +00:00
%setup -q -n %{pkgver}
2019-02-17 14:47:12 +00:00
# End cabal-rpm setup
2017-12-14 20:22:01 +00:00
%build
2019-02-17 14:47:12 +00:00
# Begin cabal-rpm build:
2017-12-14 20:22:01 +00:00
%ghc_lib_build
2019-02-17 14:47:12 +00:00
# End cabal-rpm build
2017-12-14 20:22:01 +00:00
%install
2019-02-17 14:47:12 +00:00
# Begin cabal-rpm install
2017-12-14 20:22:01 +00:00
%ghc_lib_install
2019-02-17 14:47:12 +00:00
# End cabal-rpm install
2017-12-14 20:22:01 +00:00
%check
%cabal_test
%files -f %{name}.files
2019-02-17 14:47:12 +00:00
# Begin cabal-rpm files:
2017-12-14 20:22:01 +00:00
%license LICENSE
2019-02-17 14:47:12 +00:00
# End cabal-rpm files
2017-12-14 20:22:01 +00:00
%files devel -f %{name}-devel.files
%doc README.markdown changelog.md examples
%if %{with haddock}
%files doc -f %{name}-doc.files
%endif
2017-12-14 20:22:01 +00:00
%if %{with ghc_prof}
%files prof -f %{name}-prof.files
2018-09-13 10:01:15 +00:00
%endif
2017-12-14 20:22:01 +00:00
%changelog
2019-07-25 16:41:07 +00:00
* 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
2019-02-17 14:47:12 +00:00
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 0.14.0.2-8
- refresh to cabal-rpm-0.13
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0.2-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2018-07-28 15:53:29 +00:00
* Sat Jul 28 2018 Jens Petersen <petersen@redhat.com> - 0.14.0.2-6
- revise .cabal
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2018-01-26 10:57:35 +00:00
* Fri Jan 26 2018 Jens Petersen <petersen@redhat.com> - 0.14.0.2-3
- rebuild
2017-12-18 20:52:33 +00:00
* Mon Dec 04 2017 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.14.0.2-2
2017-12-14 20:22:01 +00:00
- Split documentation into separate subpackage.
* Sat Nov 18 2017 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 0.14.0.2-1
- spec file generated by cabal-rpm-0.11.2