From 7f501fc71b70aa61543b975baa802e0bafb7ea07 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 7 Jun 2013 12:48:42 +0900 Subject: [PATCH] update to new simplified Haskell Packaging Guidelines --- ghc-executable-path.spec | 45 ++++++++++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 16 deletions(-) diff --git a/ghc-executable-path.spec b/ghc-executable-path.spec index 97ef422..b1c7668 100644 --- a/ghc-executable-path.spec +++ b/ghc-executable-path.spec @@ -1,19 +1,11 @@ # https://fedoraproject.org/wiki/Packaging:Haskell -# https://fedoraproject.org/wiki/PackagingDrafts/Haskell %global pkg_name executable-path -%global common_summary Haskell library to find full path of an executable - -%global common_description The documentation of "System.Environment.getProgName" says that\ -\"However, this is hard-to-impossible to implement on some non-Unix OSes, \ -so instead, for maximum portability, we just return the leaf name \ -of the program as invoked.\". This library tries to provide the missing path. - Name: ghc-%{pkg_name} Version: 0.0.3 -Release: 3%{?dist} -Summary: %{common_summary} +Release: 4%{?dist} +Summary: Haskell library to find full path of an executable License: Public Domain URL: http://hackage.haskell.org/package/%{pkg_name} @@ -28,7 +20,21 @@ BuildRequires: ghc-unix-devel # End cabal-rpm deps %description -%{common_description} +The documentation of "System.Environment.getProgName" says that +"However, this is hard-to-impossible to implement on some non-Unix OSes, +so instead, for maximum portability, we just return the leaf name +of the program as invoked." This library tries to provide the missing path. + + +%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 @@ -43,18 +49,25 @@ BuildRequires: ghc-unix-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 +* Fri Jun 07 2013 Jens Petersen - 0.0.3-4 +- update to new simplified Haskell Packaging Guidelines + * Wed Feb 13 2013 Fedora Release Engineering - 0.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild