2012-03-06 08:37:29 +00:00
|
|
|
# https://fedoraproject.org/wiki/Packaging:Haskell
|
|
|
|
|
|
|
|
%global pkg_name monad-control
|
|
|
|
|
|
|
|
Name: ghc-%{pkg_name}
|
2013-06-10 08:26:14 +00:00
|
|
|
Version: 0.3.2.1
|
2014-06-07 15:01:03 +00:00
|
|
|
Release: 3%{?dist}
|
2013-06-07 03:48:55 +00:00
|
|
|
Summary: Lift control operations through monad transformers
|
2012-03-06 08:37:29 +00:00
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: http://hackage.haskell.org/package/%{pkg_name}
|
|
|
|
Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
|
2012-11-07 10:20:27 +00:00
|
|
|
|
2012-03-06 08:37:29 +00:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
2012-11-07 10:20:27 +00:00
|
|
|
BuildRequires: ghc-rpm-macros
|
|
|
|
# Begin cabal-rpm deps:
|
2012-03-06 08:37:29 +00:00
|
|
|
BuildRequires: ghc-base-unicode-symbols-devel
|
2012-11-07 10:20:27 +00:00
|
|
|
BuildRequires: ghc-transformers-devel
|
2012-03-06 08:37:29 +00:00
|
|
|
BuildRequires: ghc-transformers-base-devel
|
2012-11-07 10:20:27 +00:00
|
|
|
# End cabal-rpm deps
|
2012-03-06 08:37:29 +00:00
|
|
|
|
|
|
|
%description
|
2013-06-07 03:48:55 +00:00
|
|
|
This package defines the type class MonadBaseControl, a subset of
|
|
|
|
MonadBase into which generic control operations such as catch can be
|
|
|
|
lifted from IO or any other base monad. Instances are based on monad
|
|
|
|
transformers in MonadTransControl, which includes all standard monad
|
|
|
|
transformers in the transformers library except ContT.
|
|
|
|
|
|
|
|
See the lifted-base package which uses monad-control to lift IO
|
|
|
|
operations from the base library (like catch or bracket) into any
|
|
|
|
monad that is an instance of MonadBase or MonadBaseControl.
|
|
|
|
|
|
|
|
This package is a rewrite of Anders Kaseorg's monad-peel library.
|
|
|
|
The main difference is that this package provides CPS style operators
|
|
|
|
and exploits the RankNTypes and TypeFamilies language extensions to
|
2013-06-10 08:26:14 +00:00
|
|
|
simplify and speedup most definitions. A criterion-based benchmark shows
|
2013-06-07 03:48:55 +00:00
|
|
|
that monad-control is on average about 99% faster than monad-peel.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
2012-03-06 08:37:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
|
|
|
|
2013-06-07 03:48:55 +00:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
2012-03-06 08:37:29 +00:00
|
|
|
|
|
|
|
|
2013-06-07 03:48:55 +00:00
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
2012-03-06 08:37:29 +00:00
|
|
|
|
|
|
|
|
2013-06-07 03:48:55 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%doc LICENSE
|
2012-03-06 08:37:29 +00:00
|
|
|
|
2013-06-07 03:48:55 +00:00
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
2012-03-06 08:37:29 +00:00
|
|
|
%doc README.markdown NEWS
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2014-06-07 15:01:03 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.2.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-03 13:51:21 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-10 08:26:14 +00:00
|
|
|
* Mon Jun 10 2013 Jens Petersen <petersen@redhat.com> - 0.3.2.1-1
|
|
|
|
- update to 0.3.2.1
|
2013-06-07 03:48:55 +00:00
|
|
|
- update to new simplified Haskell Packaging Guidelines
|
|
|
|
|
2013-02-13 23:13:31 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.1.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-07 10:20:27 +00:00
|
|
|
* Wed Nov 07 2012 Jens Petersen <petersen@redhat.com> - 0.3.1.4-1
|
|
|
|
- update to 0.3.1.4
|
|
|
|
|
2012-07-19 05:49:29 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.1.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-15 08:58:36 +00:00
|
|
|
* Fri Jun 15 2012 Jens Petersen <petersen@redhat.com> - 0.3.1.3-2
|
|
|
|
- rebuild
|
|
|
|
|
2012-05-01 09:04:28 +00:00
|
|
|
* Tue May 1 2012 Jens Petersen <petersen@redhat.com> - 0.3.1.3-1
|
|
|
|
- update to 0.3.1.3
|
|
|
|
|
2012-03-22 14:52:15 +00:00
|
|
|
* Thu Mar 22 2012 Jens Petersen <petersen@redhat.com> - 0.3.1-2
|
|
|
|
- add license to ghc_files
|
|
|
|
|
2012-03-06 08:37:29 +00:00
|
|
|
* Thu Jan 26 2012 Jens Petersen <petersen@redhat.com> - 0.3.1-1
|
|
|
|
- BSD license
|
|
|
|
- depends on base-unicode-symbols and transformers-base
|
|
|
|
|
|
|
|
* Thu Jan 26 2012 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org>
|
|
|
|
- spec file template generated by cabal2spec-0.25.4
|