ghc-hashtables/ghc-hashtables.spec

169 lines
5.3 KiB
RPMSpec
Raw Normal View History

2018-01-24 13:11:14 +00:00
# generated by cabal-rpm-0.12.1
2012-02-14 00:57:53 +00:00
# https://fedoraproject.org/wiki/Packaging:Haskell
%global pkg_name hashtables
2017-02-24 08:48:13 +00:00
%global pkgver %{pkg_name}-%{version}
2012-02-14 00:57:53 +00:00
Name: ghc-%{pkg_name}
2016-06-23 08:24:27 +00:00
Version: 1.2.1.0
Release: 5%{?dist}
Summary: Mutable hash tables in the ST monad
2012-02-14 00:57:53 +00:00
License: BSD
2016-06-23 08:24:27 +00:00
Url: https://hackage.haskell.org/package/%{pkg_name}
2017-02-24 08:48:13 +00:00
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
2012-10-29 01:38:28 +00:00
2012-02-14 00:57:53 +00:00
BuildRequires: ghc-Cabal-devel
2012-10-29 01:38:28 +00:00
BuildRequires: ghc-rpm-macros
# Begin cabal-rpm deps:
2012-07-16 02:11:16 +00:00
BuildRequires: ghc-hashable-devel
2012-10-29 01:38:28 +00:00
BuildRequires: ghc-primitive-devel
2012-07-16 02:11:16 +00:00
BuildRequires: ghc-vector-devel
2012-10-29 01:38:28 +00:00
# End cabal-rpm deps
2012-02-14 00:57:53 +00:00
%description
This package provides a couple of different implementations of mutable
hash tables in the ST monad, as well as a typeclass abstracting their
common operations, and a set of wrappers to use the hash tables in the
IO monad.
This package currently contains three hash table implementations:
1. Data.HashTable.ST.Basic contains a basic open-addressing hash table
using linear probing as the collision strategy.
2. Data.HashTable.ST.Cuckoo contains an implementation of "cuckoo hashing"
which has worst-case O(1) lookups and can reach a high "load factor".
3. Data.HashTable.ST.Linear contains a linear hash table, which trades
some insert and lookup performance for higher space efficiency and
much shorter delays when expanding the table.
%package devel
Summary: Haskell %{pkg_name} library development files
2014-06-01 14:45:41 +00:00
Provides: %{name}-static = %{version}-%{release}
2018-01-24 13:11:14 +00:00
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}
2018-01-24 13:11:14 +00:00
%endif
2014-06-01 14:45:41 +00:00
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package provides the Haskell %{pkg_name} library development files.
2016-06-23 08:24:27 +00:00
2. "Data.HashTable.ST.Basic" contains a basic open-addressing hash table using
linear probing as the collision strategy. On a pure speed basis it should
currently be the fastest available Haskell hash table implementation for
lookups, although it has a higher memory overhead than the other tables and can
suffer from long delays when the table is resized because all of the elements
in the table need to be rehashed.
2012-02-14 00:57:53 +00:00
%prep
2017-02-24 08:48:13 +00:00
%setup -q -n %{pkgver}
2012-02-14 00:57:53 +00:00
%build
%ghc_lib_build
%install
%ghc_lib_install
2018-01-24 13:11:14 +00:00
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%post devel
%ghc_pkg_recache
2012-02-14 00:57:53 +00:00
%postun devel
%ghc_pkg_recache
2012-02-14 00:57:53 +00:00
%files -f %{name}.files
2016-06-23 08:24:27 +00:00
%license LICENSE
2012-02-14 00:57:53 +00:00
%files devel -f %{name}-devel.files
2017-02-24 08:48:13 +00:00
%doc README.md changelog.md
2012-02-14 00:57:53 +00:00
%changelog
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-02-24 08:48:13 +00:00
* Fri Feb 24 2017 Jens Petersen <petersen@redhat.com> - 1.2.1.0-3
- refresh to cabal-rpm-0.11.1
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2016-06-23 08:24:27 +00:00
* Thu Jun 23 2016 Jens Petersen <petersen@redhat.com> - 1.2.1.0-1
- update to 1.2.1.0
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2015-08-31 18:24:02 +00:00
* Mon Aug 31 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.2.1-3
- Rebuild (aarch64 vector hashes)
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2014-08-27 07:22:14 +00:00
* Wed Aug 27 2014 Jens Petersen <petersen@redhat.com> - 1.1.2.1-1
- update to 1.1.2.1
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1.8-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-07-08 08:44:42 +00:00
* Tue Jul 8 2014 Jens Petersen <petersen@redhat.com> - 1.0.1.8-5
- update to cblrpm-0.8.11
2014-06-01 14:45:41 +00:00
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1.8-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Fri Jun 07 2013 Jens Petersen <petersen@redhat.com> - 1.0.1.8-3
- update to new simplified Haskell Packaging Guidelines
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2012-10-29 01:38:28 +00:00
* Mon Oct 29 2012 Jens Petersen <petersen@redhat.com> - 1.0.1.8-1
- update to 1.0.1.8
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-07-16 02:11:16 +00:00
* Mon Jul 16 2012 Jens Petersen <petersen@redhat.com> - 1.0.1.6-2
- change prof BRs to devel
2012-06-13 09:16:44 +00:00
* Wed Jun 13 2012 Jens Petersen <petersen@redhat.com> - 1.0.1.6-1
- update to 1.0.1.6
2012-05-06 01:32:37 +00:00
* Sun May 6 2012 Jens Petersen <petersen@redhat.com> - 1.0.1.3-2
- build needs ghci
2012-03-22 14:18:56 +00:00
* Thu Mar 22 2012 Jens Petersen <petersen@redhat.com> - 1.0.1.3-1
- update to 1.0.1.3
2012-03-08 01:36:01 +00:00
* Thu Mar 8 2012 Jens Petersen <petersen@redhat.com> - 1.0.1.2-2
- rebuild
2012-02-14 00:57:53 +00:00
* Mon Jan 16 2012 Jens Petersen <petersen@redhat.com> - 1.0.1.2-1
- BSD
- depends on hashable and vector
* Mon Jan 16 2012 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org>
- spec file template generated by cabal2spec-0.25.2