2020-06-19 08:54:07 +00:00
|
|
|
# generated by cabal-rpm-2.0.6
|
2020-06-04 11:25:29 +00:00
|
|
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
2011-05-11 02:35:23 +00:00
|
|
|
|
2010-11-07 16:48:20 +00:00
|
|
|
%global pkg_name bytestring-trie
|
2017-02-24 08:48:10 +00:00
|
|
|
%global pkgver %{pkg_name}-%{version}
|
2010-11-07 16:48:20 +00:00
|
|
|
|
|
|
|
Name: ghc-%{pkg_name}
|
2019-05-09 04:02:00 +00:00
|
|
|
Version: 0.2.5.0
|
2020-01-28 20:22:19 +00:00
|
|
|
Release: 4%{?dist}
|
2013-06-07 03:48:20 +00:00
|
|
|
Summary: An efficient finite map from (byte)strings to values
|
2010-11-07 16:48:20 +00:00
|
|
|
|
|
|
|
License: BSD
|
2015-01-19 07:11:51 +00:00
|
|
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
2019-05-09 04:02:00 +00:00
|
|
|
# Begin cabal-rpm sources:
|
2017-02-24 08:48:10 +00:00
|
|
|
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
2020-06-22 02:54:01 +00:00
|
|
|
Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
|
2019-05-09 04:02:00 +00:00
|
|
|
# End cabal-rpm sources
|
2012-11-17 12:42:57 +00:00
|
|
|
|
2019-05-09 04:02:00 +00:00
|
|
|
# Begin cabal-rpm deps:
|
2011-06-24 09:46:06 +00:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
2012-11-17 12:42:57 +00:00
|
|
|
BuildRequires: ghc-rpm-macros
|
2019-08-05 10:27:53 +00:00
|
|
|
BuildRequires: ghc-base-prof
|
|
|
|
BuildRequires: ghc-binary-prof
|
|
|
|
BuildRequires: ghc-bytestring-prof
|
2012-11-17 12:42:57 +00:00
|
|
|
# End cabal-rpm deps
|
2010-11-07 16:48:20 +00:00
|
|
|
|
|
|
|
%description
|
2013-06-07 03:48:20 +00:00
|
|
|
An efficient finite map from bytestrings to values.
|
|
|
|
|
2016-04-23 18:03:58 +00:00
|
|
|
The implementation is based on big-endian patricia trees, like "Data.IntMap".
|
|
|
|
We first trie on the elements of "Data.ByteString" and then trie on the
|
|
|
|
big-endian bit representation of those elements. Patricia trees have efficient
|
|
|
|
algorithms for union and other merging operations, but they're also quick for
|
|
|
|
lookups and insertions.
|
|
|
|
|
|
|
|
If you are only interested in being able to associate strings to values, then
|
|
|
|
you may prefer the 'hashmap' package which is faster for those only needing a
|
|
|
|
map-like structure. This package is intended for those who need the extra
|
|
|
|
capabilities that a trie-like structure can offer (e.g., structure sharing to
|
|
|
|
reduce memory costs for highly redundant keys, taking the submap of all keys
|
|
|
|
with a given prefix, contextual mapping, extracting the minimum and maximum
|
|
|
|
keys, etc.).
|
2013-06-07 03:48:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2015-01-19 07:11:51 +00:00
|
|
|
Provides: %{name}-static = %{version}-%{release}
|
2019-08-05 10:27:53 +00:00
|
|
|
Provides: %{name}-static%{?_isa} = %{version}-%{release}
|
2018-01-24 13:10:42 +00:00
|
|
|
%if %{defined ghc_version}
|
2013-06-07 03:48:20 +00:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
2018-01-24 13:10:42 +00:00
|
|
|
%endif
|
2015-01-19 07:11:51 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2013-06-07 03:48:20 +00:00
|
|
|
|
|
|
|
%description devel
|
2015-01-19 07:11:51 +00:00
|
|
|
This package provides the Haskell %{pkg_name} library development
|
|
|
|
files.
|
2010-11-07 16:48:20 +00:00
|
|
|
|
|
|
|
|
2019-07-25 04:21:55 +00:00
|
|
|
%if %{with haddock}
|
|
|
|
%package doc
|
|
|
|
Summary: Haskell %{pkg_name} library documentation
|
2020-02-08 14:49:15 +00:00
|
|
|
BuildArch: noarch
|
2019-07-25 04:21:55 +00:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
This package provides the Haskell %{pkg_name} library documentation.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with ghc_prof}
|
|
|
|
%package prof
|
|
|
|
Summary: Haskell %{pkg_name} profiling library
|
|
|
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
2020-02-08 14:49:15 +00:00
|
|
|
Supplements: (%{name}-devel and ghc-prof)
|
2019-07-25 04:21:55 +00:00
|
|
|
|
|
|
|
%description prof
|
|
|
|
This package provides the Haskell %{pkg_name} profiling library.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2010-11-07 16:48:20 +00:00
|
|
|
%prep
|
2019-05-09 04:02:00 +00:00
|
|
|
# Begin cabal-rpm setup:
|
2017-02-24 08:48:10 +00:00
|
|
|
%setup -q -n %{pkgver}
|
2020-06-22 02:54:01 +00:00
|
|
|
cp -bp %{SOURCE1} %{pkg_name}.cabal
|
2019-05-09 04:02:00 +00:00
|
|
|
# End cabal-rpm setup
|
2010-11-07 16:48:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2019-05-09 04:02:00 +00:00
|
|
|
# Begin cabal-rpm build:
|
2010-11-07 16:48:20 +00:00
|
|
|
%ghc_lib_build
|
2019-05-09 04:02:00 +00:00
|
|
|
# End cabal-rpm build
|
2010-11-07 16:48:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2019-05-09 04:02:00 +00:00
|
|
|
# Begin cabal-rpm install
|
2010-11-07 16:48:20 +00:00
|
|
|
%ghc_lib_install
|
2019-05-09 04:02:00 +00:00
|
|
|
# End cabal-rpm install
|
2010-11-07 16:48:20 +00:00
|
|
|
|
|
|
|
|
2013-06-07 03:48:20 +00:00
|
|
|
%files -f %{name}.files
|
2019-05-09 04:02:00 +00:00
|
|
|
# Begin cabal-rpm files:
|
2016-04-23 18:03:58 +00:00
|
|
|
%license LICENSE
|
2019-05-09 04:02:00 +00:00
|
|
|
# End cabal-rpm files
|
2011-07-09 05:06:21 +00:00
|
|
|
|
2013-06-07 03:48:20 +00:00
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
2019-05-09 04:02:00 +00:00
|
|
|
%doc AUTHORS CHANGELOG README.md
|
2010-11-07 16:48:20 +00:00
|
|
|
|
|
|
|
|
2019-07-25 04:21:55 +00:00
|
|
|
%if %{with haddock}
|
|
|
|
%files doc -f %{name}-doc.files
|
2020-02-08 14:49:15 +00:00
|
|
|
%license LICENSE
|
2019-07-25 04:21:55 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with ghc_prof}
|
|
|
|
%files prof -f %{name}-prof.files
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2010-11-07 16:48:20 +00:00
|
|
|
%changelog
|
2020-01-28 20:22:19 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.5.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-25 04:21:55 +00:00
|
|
|
* Thu Aug 01 2019 Jens Petersen <petersen@redhat.com> - 0.2.5.0-3
|
|
|
|
- add doc and prof subpackages (cabal-rpm-1.0.0)
|
|
|
|
|
2019-07-25 02:11:29 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.5.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-09 04:02:00 +00:00
|
|
|
* Thu May 09 2019 Jens Petersen <petersen@redhat.com> - 0.2.5.0-1
|
|
|
|
- update to 0.2.5.0
|
|
|
|
|
2019-01-31 21:15:34 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4.1-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 01:36:53 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4.1-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-02-07 11:23:31 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-26 10:21:43 +00:00
|
|
|
* Fri Jan 26 2018 Jens Petersen <petersen@redhat.com> - 0.2.4.1-7
|
|
|
|
- rebuild
|
|
|
|
|
2017-08-02 21:14:50 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 09:36:46 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-24 08:48:10 +00:00
|
|
|
* Fri Feb 24 2017 Jens Petersen <petersen@redhat.com> - 0.2.4.1-4
|
|
|
|
- refresh to cabal-rpm-0.11.1
|
|
|
|
|
2017-02-10 10:34:54 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-06-30 01:46:58 +00:00
|
|
|
* Thu Jun 30 2016 Jens Petersen <petersen@redhat.com> - 0.2.4.1-2
|
|
|
|
- rebuild
|
|
|
|
|
2016-04-23 18:03:58 +00:00
|
|
|
* Sat Apr 23 2016 Ben Boeckel <mathstuf@gmail.com> - 0.2.4.1-1
|
|
|
|
- update to 0.2.4.1
|
|
|
|
|
2016-02-03 21:27:06 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 07:34:05 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-01-19 07:11:51 +00:00
|
|
|
* Mon Jan 19 2015 Jens Petersen <petersen@redhat.com> - 0.2.4-1
|
|
|
|
- update to 0.2.4
|
|
|
|
|
2014-08-16 14:47:19 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 14:35:32 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-03 13:27:11 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-07 03:48:20 +00:00
|
|
|
* Fri Jun 07 2013 Jens Petersen <petersen@redhat.com> - 0.2.3-12
|
|
|
|
- update to new simplified Haskell Packaging Guidelines
|
|
|
|
|
2013-02-13 23:00:09 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-17 12:42:57 +00:00
|
|
|
* Sat Nov 17 2012 Jens Petersen <petersen@redhat.com> - 0.2.3-10
|
|
|
|
- update with cabal-rpm
|
|
|
|
|
2012-07-19 05:24:21 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-22 09:20:34 +00:00
|
|
|
* Sun Mar 18 2012 Jens Petersen <petersen@redhat.com> - 0.2.3-8
|
|
|
|
- update to cabal2spec-0.25
|
|
|
|
|
2012-01-13 03:21:02 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-7.2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-10-20 19:14:48 +00:00
|
|
|
* Thu Oct 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.2.3-6.2
|
|
|
|
- rebuild with new gmp without compat lib
|
|
|
|
|
2011-10-11 09:09:38 +00:00
|
|
|
* Tue Oct 11 2011 Peter Schiffer <pschiffe@redhat.com> - 0.2.3-6.1
|
|
|
|
- rebuild with new gmp
|
|
|
|
|
2011-07-09 05:06:21 +00:00
|
|
|
* Sat Jul 09 2011 Ben Boeckel <mathstuf@gmail.com> - 0.2.3-6
|
|
|
|
- Update to cabal2spec-0.24
|
|
|
|
|
2011-06-24 09:46:06 +00:00
|
|
|
* Fri Jun 24 2011 Jens Petersen <petersen@redhat.com> - 0.2.3-5
|
|
|
|
- BR ghc-Cabal-devel instead of ghc-prof and use ghc_arches (cabal2spec-0.23.2)
|
|
|
|
|
2011-05-12 01:18:34 +00:00
|
|
|
* Wed May 11 2011 Ben Boeckel <mathstuf@gmail.com> - 0.2.3-4
|
|
|
|
- Update to cabal2spec-0.22.7
|
|
|
|
|
2011-05-11 02:35:23 +00:00
|
|
|
* Tue May 10 2011 Ben Boeckel <mathstuf@gmail.com> - 0.2.3-3
|
|
|
|
- Update to cabal2spec-0.22.6
|
|
|
|
|
2011-03-10 08:15:38 +00:00
|
|
|
* Thu Mar 10 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.2.3-2
|
|
|
|
- Enable build on sparcv9
|
|
|
|
|
2011-02-17 05:49:09 +00:00
|
|
|
* Thu Feb 17 2011 Ben Boeckel <mathstuf@gmail.com> - 0.2.3-1
|
|
|
|
- Update to 0.2.3
|
|
|
|
|
2011-02-09 01:03:08 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-15 18:04:24 +00:00
|
|
|
* Sat Jan 15 2011 Ben Boeckel <mathstuf@gmail.com> - 0.2.2-2
|
|
|
|
- Update to cabal2spec-0.22.4
|
|
|
|
- Rebuild
|
|
|
|
|
2010-11-07 16:48:20 +00:00
|
|
|
* Sat Sep 04 2010 Ben Boeckel <mathstuf@gmail.com> - 0.2.2-1
|
|
|
|
- Initial package
|
|
|
|
|
|
|
|
* Sat Sep 4 2010 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org> - 0.2.2-0
|
|
|
|
- initial packaging for Fedora automatically generated by cabal2spec-0.22.2
|