ghc-text-short/ghc-text-short.spec

100 lines
2.4 KiB
RPMSpec
Raw Normal View History

2018-01-24 13:12:09 +00:00
# generated by cabal-rpm-0.12.1
2017-11-20 23:02:07 +00:00
# https://fedoraproject.org/wiki/Packaging:Haskell
%global pkg_name text-short
%global pkgver %{pkg_name}-%{version}
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 0.1.1
2018-01-26 11:00:42 +00:00
Release: 2%{?dist}
2017-11-20 23:02:07 +00:00
Summary: Memory-efficient representation of Unicode text strings
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-binary-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-deepseq-devel
BuildRequires: ghc-hashable-devel
BuildRequires: ghc-text-devel
%if %{with tests}
BuildRequires: ghc-quickcheck-instances-devel
BuildRequires: ghc-tasty-devel
BuildRequires: ghc-tasty-hunit-devel
BuildRequires: ghc-tasty-quickcheck-devel
%endif
# End cabal-rpm deps
%description
This package provides the 'ShortText' type which is suitable for keeping many
short strings in memory. This is similiar to how 'ShortByteString' relates to
'ByteString'.
The main difference between 'Text' and 'ShortText' is that 'ShortText' uses
UTF-8 instead of UTF-16 internally and also doesn't support slicing (thereby
saving 2 words). Consequently, the memory footprint of a (boxed) 'ShortText'
value is 4 words (2 words when unboxed) plus the length of the UTF-8 encoded
payload.
%package devel
Summary: Haskell %{pkg_name} library development files
Provides: %{name}-static = %{version}-%{release}
2018-01-24 13:12:09 +00:00
Provides: %{name}-doc = %{version}-%{release}
%if %{defined ghc_version}
2017-11-20 23:02:07 +00:00
Requires: ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}
2018-01-24 13:12:09 +00:00
%endif
2017-11-20 23:02:07 +00:00
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package provides the Haskell %{pkg_name} library development files.
%prep
%setup -q -n %{pkgver}
cabal-tweak-dep-ver hashable '1.2.6' '1.2.5'
%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 ChangeLog.md
%changelog
2018-01-26 11:00:42 +00:00
* Fri Jan 26 2018 Jens Petersen <petersen@redhat.com> - 0.1.1-2
- rebuild
2017-11-20 23:02:07 +00:00
* Sat Nov 18 2017 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 0.1.1-1
- spec file generated by cabal-rpm-0.11.2