116 lines
3.0 KiB
RPMSpec
116 lines
3.0 KiB
RPMSpec
# generated by cabal-rpm-0.12.1
|
|
# https://fedoraproject.org/wiki/Packaging:Haskell
|
|
|
|
%global pkg_name cassava
|
|
%global pkgver %{pkg_name}-%{version}
|
|
|
|
%bcond_with tests
|
|
|
|
Name: ghc-%{pkg_name}
|
|
Version: 0.5.1.0
|
|
Release: 2%{?dist}
|
|
Summary: A CSV parsing and encoding library
|
|
|
|
License: BSD
|
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
|
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
BuildRequires: ghc-rpm-macros
|
|
# Begin cabal-rpm deps:
|
|
BuildRequires: ghc-Only-devel
|
|
BuildRequires: ghc-array-devel
|
|
BuildRequires: ghc-attoparsec-devel
|
|
BuildRequires: ghc-bytestring-devel
|
|
BuildRequires: ghc-containers-devel
|
|
BuildRequires: ghc-deepseq-devel
|
|
BuildRequires: ghc-hashable-devel
|
|
BuildRequires: ghc-scientific-devel
|
|
BuildRequires: ghc-text-devel
|
|
BuildRequires: ghc-text-short-devel
|
|
BuildRequires: ghc-unordered-containers-devel
|
|
BuildRequires: ghc-vector-devel
|
|
%if %{with tests}
|
|
BuildRequires: ghc-HUnit-devel
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
BuildRequires: ghc-quickcheck-instances-devel
|
|
BuildRequires: ghc-test-framework-devel
|
|
BuildRequires: ghc-test-framework-hunit-devel
|
|
BuildRequires: ghc-test-framework-quickcheck2-devel
|
|
%endif
|
|
# End cabal-rpm deps
|
|
|
|
%description
|
|
'cassava' is a library for parsing and encoding RFC 4180 compliant
|
|
comma-separated values (CSV) data, which is a textual line-oriented format
|
|
commonly used for exchanging tabular data.
|
|
|
|
cassava's API includes support for
|
|
|
|
- Index-based record-conversion
|
|
- Name-based record-conversion
|
|
- Typeclass directed conversion of fields and records
|
|
- Built-in field-conversion instances for standard types
|
|
- Customizable record-conversion instance derivation via GHC generics
|
|
- Low-level bytestring builders (see "Data.Csv.Builder")
|
|
- Incremental decoding and encoding API (see "Data.Csv.Incremental")
|
|
- Streaming API for constant-space decoding (see "Data.Csv.Streaming")
|
|
|
|
Moreover, this library is designed to be easy to use. Please refer to the
|
|
documentation in "Data.Csv" and the included README for more usage examples.
|
|
|
|
|
|
%package devel
|
|
Summary: Haskell %{pkg_name} library development files
|
|
Provides: %{name}-static = %{version}-%{release}
|
|
Provides: %{name}-doc = %{version}-%{release}
|
|
%if %{defined ghc_version}
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
|
%endif
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
This package provides the Haskell %{pkg_name} library development files.
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{pkgver}
|
|
|
|
|
|
%build
|
|
%ghc_lib_build
|
|
|
|
|
|
%install
|
|
%ghc_lib_install
|
|
|
|
|
|
%check
|
|
%cabal_test
|
|
|
|
|
|
%post devel
|
|
%ghc_pkg_recache
|
|
|
|
|
|
%postun devel
|
|
%ghc_pkg_recache
|
|
|
|
|
|
%files -f %{name}.files
|
|
%license LICENSE
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
|
%doc CHANGES.md README.md examples
|
|
|
|
|
|
%changelog
|
|
* Fri Jan 26 2018 Jens Petersen <petersen@redhat.com> - 0.5.1.0-2
|
|
- rebuild
|
|
|
|
* Sat Nov 18 2017 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 0.5.1.0-1
|
|
- spec file generated by cabal-rpm-0.11.2
|