2012-11-27 03:09:51 +00:00
|
|
|
# https://fedoraproject.org/wiki/Packaging:Haskell
|
|
|
|
|
|
|
|
%global pkg_name split
|
|
|
|
|
2015-09-17 05:26:11 +00:00
|
|
|
# tests seem to hang with ghc-7.10
|
|
|
|
%bcond_with tests
|
2015-01-26 15:04:51 +00:00
|
|
|
|
2012-11-27 03:09:51 +00:00
|
|
|
Name: ghc-%{pkg_name}
|
2016-04-23 18:47:04 +00:00
|
|
|
Version: 0.2.3
|
|
|
|
Release: 1%{?dist}
|
2013-04-24 07:36:04 +00:00
|
|
|
Summary: Combinator library for splitting lists
|
2012-11-27 03:09:51 +00:00
|
|
|
|
|
|
|
License: BSD
|
2015-01-26 15:04:51 +00:00
|
|
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
|
|
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
2012-11-27 03:09:51 +00:00
|
|
|
|
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
|
|
BuildRequires: ghc-rpm-macros
|
2015-01-26 15:04:51 +00:00
|
|
|
# Begin cabal-rpm deps:
|
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
|
|
%endif
|
|
|
|
# End cabal-rpm deps
|
2012-11-27 03:09:51 +00:00
|
|
|
|
|
|
|
%description
|
2016-04-23 18:47:04 +00:00
|
|
|
A collection of various methods for splitting lists into parts, akin to the
|
|
|
|
"split" function found in several mainstream languages. Here is its tale:
|
|
|
|
|
|
|
|
Once upon a time the standard "Data.List" module held no function for splitting
|
|
|
|
a list into parts according to a delimiter. Many a brave lambda-knight strove
|
|
|
|
to add such a function, but their striving was in vain, for Lo, the Supreme
|
|
|
|
Council fell to bickering amongst themselves what was to be the essential
|
|
|
|
nature of the One True Function which could cleave a list in twain (or thrain,
|
|
|
|
or any required number of parts).
|
|
|
|
|
|
|
|
And thus came to pass the split package, comprising divers functions for
|
|
|
|
splitting a list asunder, each according to its nature. And the Supreme Council
|
|
|
|
had no longer any grounds for argument, for the favored method of each was
|
2013-04-24 07:36:04 +00:00
|
|
|
contained therein.
|
|
|
|
|
|
|
|
To get started, see the "Data.List.Split" module.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2015-01-26 15:04:51 +00:00
|
|
|
Provides: %{name}-static = %{version}-%{release}
|
2013-06-04 03:24:27 +00:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2015-01-26 15:04:51 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2013-04-24 07:36:04 +00:00
|
|
|
|
|
|
|
%description devel
|
2013-06-04 03:24:27 +00:00
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
2012-11-27 03:09:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
2015-09-17 04:51:02 +00:00
|
|
|
rm %{buildroot}%{ghc_pkgdocdir}/LICENSE
|
|
|
|
|
2012-11-27 03:09:51 +00:00
|
|
|
|
2015-01-26 15:04:51 +00:00
|
|
|
%check
|
2015-09-17 04:51:02 +00:00
|
|
|
%if %{with tests}
|
|
|
|
%cabal test
|
|
|
|
%endif
|
2015-01-26 15:04:51 +00:00
|
|
|
|
|
|
|
|
2013-04-24 07:36:04 +00:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
2012-11-27 03:09:51 +00:00
|
|
|
|
|
|
|
|
2013-04-24 07:36:04 +00:00
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
2012-11-27 03:09:51 +00:00
|
|
|
|
|
|
|
|
2013-04-24 07:36:04 +00:00
|
|
|
%files -f %{name}.files
|
2015-09-17 04:51:02 +00:00
|
|
|
%license LICENSE
|
2012-11-27 03:09:51 +00:00
|
|
|
|
2013-04-24 07:36:04 +00:00
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
2016-04-23 18:47:04 +00:00
|
|
|
%doc README
|
2012-11-27 03:09:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2016-04-23 18:47:04 +00:00
|
|
|
* Sat Apr 23 2016 Ben Boeckel <mathstuf@gmail.com> - 0.2.3-1
|
|
|
|
- update to 0.2.3
|
|
|
|
|
2016-02-03 21:44:52 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-09-17 04:51:02 +00:00
|
|
|
* Thu Sep 17 2015 Jens Petersen <petersen@redhat.com> - 0.2.2-7
|
|
|
|
- allow base 4.8
|
|
|
|
|
2015-06-17 07:59:45 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-01-26 15:04:51 +00:00
|
|
|
* Mon Jan 26 2015 Jens Petersen <petersen@fedoraproject.org> - 0.2.2-5
|
|
|
|
- cblrpm refresh
|
2015-01-31 21:12:16 +00:00
|
|
|
- use cabal_test
|
2015-01-26 15:04:51 +00:00
|
|
|
|
2014-08-16 15:53:27 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 15:18:22 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-03 14:02:14 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-04 09:41:30 +00:00
|
|
|
* Tue Jun 04 2013 Jens Petersen <petersen@redhat.com> - 0.2.2-1
|
|
|
|
- update to 0.2.2
|
2013-06-04 03:24:27 +00:00
|
|
|
- update to new simplified Haskell Packaging Guidelines
|
2013-04-24 07:36:04 +00:00
|
|
|
|
2013-02-13 23:19:04 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-27 03:16:12 +00:00
|
|
|
* Tue Nov 27 2012 Jens Petersen <petersen@redhat.com> - 0.2.1.1-1
|
2012-11-27 03:17:40 +00:00
|
|
|
- update to 0.2.1.1, part of haskell-platform-2012.4
|
2012-11-27 03:16:12 +00:00
|
|
|
|
2012-11-27 03:09:51 +00:00
|
|
|
* Sat Nov 17 2012 Jens Petersen <petersen@redhat.com>
|
|
|
|
- update with cabal-rpm
|
|
|
|
|
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
|
|
|
* Mon Jul 16 2012 Jens Petersen <petersen@redhat.com> - 0.1.4.3-2
|
|
|
|
- change prof BRs to devel
|
|
|
|
|
|
|
|
* Wed Jun 13 2012 Jens Petersen <petersen@redhat.com> - 0.1.4.3-1
|
|
|
|
- update to 0.1.4.3
|
|
|
|
|
|
|
|
* Fri Mar 23 2012 Jens Petersen <petersen@redhat.com> - 0.1.4.2-2
|
|
|
|
- add license to ghc_files
|
|
|
|
|
|
|
|
* Fri Jan 6 2012 Jens Petersen <petersen@redhat.com> - 0.1.4.2-1
|
|
|
|
- update to 0.1.4.2 and cabal2spec-0.25.2
|
|
|
|
|
|
|
|
* Fri Oct 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.1.4-1.2
|
|
|
|
- rebuild with new gmp without compat lib
|
|
|
|
|
|
|
|
* Tue Oct 11 2011 Peter Schiffer <pschiffe@redhat.com> - 0.1.4-1.1
|
|
|
|
- rebuild with new gmp
|
|
|
|
|
|
|
|
* Sat Jul 09 2011 Ben Boeckel <mathstuf@gmail.com> - 0.1.4-1
|
|
|
|
- Update to 0.1.4
|
|
|
|
- Update to cabal2spec-0.24
|
|
|
|
|
|
|
|
* Fri Jun 24 2011 Jens Petersen <petersen@redhat.com> - 0.1.3-5
|
|
|
|
- BR ghc-Cabal-devel instead of ghc-prof and use ghc_arches (cabal2spec-0.23.2)
|
|
|
|
|
|
|
|
* Thu Mar 10 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.1.3-4
|
|
|
|
- Enable build on sparcv9
|
|
|
|
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Jan 15 2011 Ben Boeckel <mathstuf@gmail.com> - 0.1.3-2
|
|
|
|
- Update to cabal2spec-0.22.4
|
|
|
|
- Rebuild
|
|
|
|
|
|
|
|
* Fri Dec 17 2010 Ben Boeckel <mathstuf@gmail.com> - 0.1.3-1
|
|
|
|
- Update to 0.1.3
|
|
|
|
|
|
|
|
* Sun Nov 28 2010 Ben Boeckel <mathstuf@gmail.com> - 0.1.2.3-1
|
|
|
|
- Update to 0.1.2.3
|
|
|
|
|
|
|
|
* Fri Nov 12 2010 Ben Boeckel <mathstuf@gmail.com> - 0.1.2.2-1
|
|
|
|
- Update to 0.1.2.2
|
|
|
|
|
|
|
|
* Sun Nov 07 2010 Ben Boeckel <mathstuf@gmail.com> - 0.1.2.1-2
|
|
|
|
- Rebuild
|
|
|
|
|
|
|
|
* Tue Sep 14 2010 Ben Boeckel <mathstuf@gmail.com> - 0.1.2.1-1
|
|
|
|
- Update to 0.1.2.1
|
|
|
|
|
|
|
|
* Sun Sep 05 2010 Ben Boeckel <mathstuf@gmail.com> - 0.1.2-1
|
|
|
|
- Initial package
|
|
|
|
|
|
|
|
* Sun Sep 5 2010 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org> - 0.1.2-0
|
|
|
|
- initial packaging for Fedora automatically generated by cabal2spec-0.22.2
|