update to new simplified Haskell Packaging Guidelines

This commit is contained in:
Jens Petersen 2013-06-06 10:55:45 +09:00
parent 10b9932c31
commit 988970e578
1 changed files with 26 additions and 13 deletions

View File

@ -1,16 +1,11 @@
# https://fedoraproject.org/wiki/Packaging:Haskell
# https://fedoraproject.org/wiki/PackagingDrafts/Haskell
%global pkg_name IfElse
%global common_summary Anaphoric and miscellaneous useful control-flow
%global common_description Anaphoric and miscellaneous useful control-flow.
Name: ghc-%{pkg_name}
Version: 0.85
Release: 1%{?dist}
Summary: %{common_summary}
Release: 2%{?dist}
Summary: Anaphoric and miscellaneous control-flow
License: BSD
URL: http://hackage.haskell.org/package/%{pkg_name}
@ -23,7 +18,18 @@ BuildRequires: ghc-mtl-devel
# End cabal-rpm deps
%description
%{common_description}
Anaphoric and miscellaneous useful control-flow.
%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.
%prep
@ -38,17 +44,24 @@ BuildRequires: ghc-mtl-devel
%ghc_lib_install
%ghc_devel_package
%ghc_devel_description
%post devel
%ghc_pkg_recache
%ghc_devel_post_postun
%postun devel
%ghc_pkg_recache
%ghc_files LICENSE
%files -f %{name}.files
%doc LICENSE
%files devel -f %{name}-devel.files
%changelog
* Thu Jun 06 2013 Jens Petersen <petersen@redhat.com> - 0.85-2
- update to new simplified Haskell Packaging Guidelines
* Sun Mar 10 2013 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 0.85-1
- spec file generated by cabal-rpm-0.7.1