update to new simplified Haskell Packaging Guidelines

This commit is contained in:
Jens Petersen 2013-06-07 12:49:03 +09:00
parent f834f66413
commit 9345797877
1 changed files with 28 additions and 15 deletions

View File

@ -1,18 +1,11 @@
# https://fedoraproject.org/wiki/Packaging:Haskell # https://fedoraproject.org/wiki/Packaging:Haskell
# https://fedoraproject.org/wiki/PackagingDrafts/Haskell
%global pkg_name simple-sendfile %global pkg_name simple-sendfile
%global common_summary Cross-platform sendfile system call
%global common_description A Haskell cross-platform library for the sendfile system call.\
This library tries to minimize system calls,\
since they are a bottleneck for web servers.
Name: ghc-%{pkg_name} Name: ghc-%{pkg_name}
Version: 0.2.11 Version: 0.2.11
Release: 1%{?dist} Release: 2%{?dist}
Summary: %{common_summary} Summary: Cross-platform sendfile system call
License: BSD License: BSD
URL: http://hackage.haskell.org/package/%{pkg_name} URL: http://hackage.haskell.org/package/%{pkg_name}
@ -27,7 +20,20 @@ BuildRequires: ghc-unix-devel
# End cabal-rpm deps # End cabal-rpm deps
%description %description
%{common_description} A Haskell cross-platform library for the sendfile system call.
This library tries to minimize system calls,
since they are a bottleneck for web servers.
%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 %prep
@ -42,18 +48,25 @@ BuildRequires: ghc-unix-devel
%ghc_lib_install %ghc_lib_install
%ghc_devel_package %post devel
%ghc_pkg_recache
%ghc_devel_description
%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 %changelog
* Fri Jun 07 2013 Jens Petersen <petersen@redhat.com> - 0.2.11-2
- update to new simplified Haskell Packaging Guidelines
* Tue Mar 12 2013 Jens Petersen <petersen@redhat.com> - 0.2.11-1 * Tue Mar 12 2013 Jens Petersen <petersen@redhat.com> - 0.2.11-1
- update to 0.2.11 - update to 0.2.11