Compare commits

...

5 Commits
rawhide ... f11

Author SHA1 Message Date
Fedora Release Engineering b6e5835e96 dist-git conversion 2010-07-28 15:34:27 +00:00
Bill Nottingham 3554b02655 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:55:58 +00:00
Jens Petersen 9ac4ada900 add note on haskell-platform 2009-09-28 05:47:16 +00:00
Bryan O'Sullivan a323d10b36 ghc-fgl 5.4.2.2 2009-09-14 05:55:36 +00:00
Jason ティビツ 3c8a7628ef Initialize branch F-11 for ghc-fgl 2009-08-28 14:38:58 +00:00
4 changed files with 142 additions and 21 deletions

View File

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: ghc-fgl
# $Id$
NAME := ghc-fgl
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

141
ghc-fgl.spec Normal file
View File

@ -0,0 +1,141 @@
%global pkg_name fgl
%bcond_without doc
%bcond_without prof
# ghc does not emit debug information
%global debug_package %{nil}
Name: ghc-%{pkg_name}
# part of haskell-platform-2009.2.0.1
Version: 5.4.2.2
Release: 1%{?dist}
Summary: Haskell %{pkg_name} library
Group: Development/Libraries
License: BSD
URL: http://web.engr.oregonstate.edu/~erwig/fgl/haskell/
Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# fedora ghc archs:
ExclusiveArch: %{ix86} x86_64 ppc alpha
BuildRequires: ghc
BuildRequires: ghc-rpm-macros
%if %{with doc}
BuildRequires: ghc-doc
%endif
%if %{with prof}
BuildRequires: ghc-prof
%endif
%description
This package provides the Haskell %{pkg_name} library for ghc. This
is a library of types and functions for addressing graph problems.
%package devel
Summary: Haskell %{pkg_name} library
Group: Development/Libraries
Requires: ghc = %{ghc_version}
Requires(post): ghc = %{ghc_version}
Requires(preun): ghc = %{ghc_version}
%description devel
This package contains the development files for %{name}
built for ghc-%{ghc_version}.
%if %{with doc}
%package doc
Summary: Documentation for %{name}
Group: Development/Libraries
Requires: ghc-doc = %{ghc_version}
Requires(post): ghc-doc = %{ghc_version}
Requires(postun): ghc-doc = %{ghc_version}
%description doc
This package contains development documentation files for the %{name} library.
%endif
%if %{with prof}
%package prof
Summary: Profiling libraries for %{name}
Group: Development/Libraries
Requires: %{name}-devel = %{version}-%{release}
Requires: ghc-prof = %{ghc_version}
%description prof
This package contains profiling libraries for %{name}
built for ghc-%{ghc_version}.
%endif
%prep
%setup -q -n %{pkg_name}-%{version}
%build
%cabal_configure --ghc %{?with_prof:-p}
%cabal build
%if %{with doc}
%cabal haddock
%endif
%ghc_gen_scripts
%install
rm -rf $RPM_BUILD_ROOT
%cabal_install
%ghc_install_scripts
%ghc_gen_filelists %{name}
%clean
rm -rf $RPM_BUILD_ROOT
%post devel
%ghc_register_pkg
%if %{with doc}
%post doc
%ghc_reindex_haddock
%endif
%preun devel
if [ "$1" -eq 0 ] ; then
%ghc_unregister_pkg
fi
%if %{with doc}
%postun doc
if [ "$1" -eq 0 ] ; then
%ghc_reindex_haddock
fi
%endif
%files devel -f %{name}-devel.files
%defattr(-,root,root,-)
%{_docdir}/%{name}-%{version}
%if %{with doc}
%files doc -f %{name}-doc.files
%defattr(-,root,root,-)
%endif
%if %{with prof}
%files prof -f %{name}-prof.files
%defattr(-,root,root,-)
%endif
%changelog
* Wed Aug 12 2009 Bryan O'Sullivan <bos@serpentine.com> - 5.4.2.2-1
- initial packaging for Fedora created by cabal2spec

View File

@ -0,0 +1 @@
ad49ce31af04c0fd9c6dbfa52801ff83 fgl-5.4.2.2.tar.gz