From Fedora Project Wiki
 
(14 intermediate revisions by the same user not shown)
Line 6: Line 6:


<pre>
<pre>
%define hsc_name ghc
%define hsc_version 6.8.3
%define pkg_name someHaLib
%define pkg_name someHaLib
%define pkg_libdir %{_libdir}/%{hsc_name}-%{hsc_version}/%{pkg_name}-%{version}
%define ghc_version 6.10.1
%define pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version}
%define pkg_docdir %{_docdir}/ghc/libraries/%{pkg_name}


# Haskell compilers do not traditionally emit DWARF data.
# Haskell compilers do not emit debug information
%define debug_package %{nil}
%define debug_package %{nil}


Name: %{hsc_name}-%{pkg_name}
Name: ghc-%{pkg_name}
Version: 0.7
Version: version
Release: 3%{?dist}
Release: 1%{?dist}
License: BSD
License: BSD
Group: System Environment/Libraries
Group: Development/Libraries
URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{pkg_name}
URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{pkg_name}
Source: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
Source: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
Summary: Summary of %{pkg_name} library
Summary: Summary of %{pkg_name} library
Provides: %{name}-devel = %{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: ghc = %{hsc_version}
# ghc has only been bootstrapped on the following archs:
ExclusiveArch: i386 x86_64 ppc
BuildRequires: ghc = %{ghc_version}, ghc-prof = %{ghc_version}, haddock
BuildRequires: ...
Requires: ghc = %{ghc_version}
Requires: ...
Requires: ...
BuildRequires: ghc = %{hsc_version}, ghc-prof = %{hsc_version}, haddock
Requires(pre): ghc = %{ghc_version}
BuildRequires: ...
Requires(preun): ghc = %{ghc_version}
Requires(post): ghc = %{ghc_version}
Requires(postun): ghc = %{ghc_version}


%description
%description
Description of %{pkg_name} library
Description of %{pkg_name} library


%package -n %{hsc_name}-%{pkg_name}-prof
%package prof
Summary: Profiling libraries for %{hsc_name}-%{pkg_name}
Summary: Profiling libraries for %{name}
Group: Development/Libraries
Group: Development/Libraries
Requires: %{hsc_name}-%{pkg_name} = %{version}
Requires: %{name} = %{version}


%description -n %{hsc_name}-%{pkg_name}-prof
%description prof
This package contains profiling libraries for %{hsc_name} %{hsc_version}.
This package contains profiling libraries for ghc %{ghc_version}.




Line 45: Line 52:


%build
%build
%ghc_autotools -l -p enable
%cabal_configure -p --ghc
%ghc_build
%cabal_build
%ghc_haddock
%cabal_haddock
%ghc_gen_scripts
%ghc_gen_scripts


Line 53: Line 60:
%install
%install
rm -rf ${RPM_BUILD_ROOT}
rm -rf ${RPM_BUILD_ROOT}
%ghc_install
%cabal_install
%ghc_install_scripts
%ghc_install_scripts
%ghc_gen_filelists %{name}
%ghc_gen_filelists %{name}


cd ${RPM_BUILD_ROOT}/%{_datadir}/doc/%{hsc_name}-%{pkg_name}-%{version}
cd ${RPM_BUILD_ROOT}/%{_docdir}/%{name}-%{version}
rm -rf doc LICENSE README
rm -rf doc LICENSE README


Line 71: Line 78:
%post  
%post  
%ghc_postinst_script
%ghc_postinst_script
%ghc_reindex_haddock




Line 79: Line 87:
%postun  
%postun  
%ghc_postun_script
%ghc_postun_script
%ghc_reindex_haddock




%files  -f %{name}-files
%files  -f %{name}.files
%doc dist/doc/html
%defattr(-,root,root,-)
%doc LICENSE README
%doc LICENSE README




%files -n %{hsc_name}-%{pkg_name}-prof -f %{name}-files.prof
%files prof -f %{name}-prof.files
%%doc LICENSE
%defattr(-,root,root,-)
%doc LICENSE
%{pkg_docdir}




%changelog
%changelog
* Wed Aug 13 2008 Yaakov M. Nemoy <yankee@koan> - 0.7-3
* Day Month Date Year Fedora Packager <email@address> - version-release
- added URL
- initial packaging for Fedora
- changed Group from default
 
* Wed Aug 13 2008 Yaakov M. Nemoy <yankee@koan> - 0.7-2
- adds requirements list
 
* Wed Aug 13 2008 cabal-rpm <cabal-devel@haskell.org> - 0.7-1
- spec file autogenerated by cabal-rpm
</pre>
</pre>

Latest revision as of 00:53, 14 November 2008

Library Only Template

This is a sample spec file for a Haskell Cabal package. This sample demonstrates how to package a Haskell Cabal package that is only a library. It was generated automatically using cabal-rpm. It contains a few minor bugs, including missing dependency declarations. This is due to a limitation in cabal-rpm that needs to be fixed.

Consequently, it's been edited. The changes can be seen in the changelog below.

%define pkg_name someHaLib
%define ghc_version 6.10.1
%define pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version}
%define pkg_docdir %{_docdir}/ghc/libraries/%{pkg_name}

# Haskell compilers do not emit debug information
%define debug_package %{nil}

Name: ghc-%{pkg_name}
Version: version
Release: 1%{?dist}
License: BSD
Group: Development/Libraries
URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{pkg_name}
Source: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
Summary: Summary of %{pkg_name} library
Provides: %{name}-devel = %{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# ghc has only been bootstrapped on the following archs:
ExclusiveArch:	i386 x86_64 ppc
BuildRequires: ghc = %{ghc_version}, ghc-prof = %{ghc_version}, haddock
BuildRequires: ...
Requires: ghc = %{ghc_version}
Requires: ...
Requires(pre): ghc = %{ghc_version}
Requires(preun): ghc = %{ghc_version}
Requires(post): ghc = %{ghc_version}
Requires(postun): ghc = %{ghc_version}

%description
Description of %{pkg_name} library

%package prof
Summary: Profiling libraries for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}

%description prof
This package contains profiling libraries for ghc %{ghc_version}.


%prep
%setup -q -n %{pkg_name}-%{version}


%build
%cabal_configure -p --ghc
%cabal_build
%cabal_haddock
%ghc_gen_scripts


%install
rm -rf ${RPM_BUILD_ROOT}
%cabal_install
%ghc_install_scripts
%ghc_gen_filelists %{name}

cd ${RPM_BUILD_ROOT}/%{_docdir}/%{name}-%{version}
rm -rf doc LICENSE README


%clean
rm -rf ${RPM_BUILD_ROOT}


%pre 
%ghc_preinst_script


%post 
%ghc_postinst_script
%ghc_reindex_haddock


%preun 
%ghc_preun_script


%postun 
%ghc_postun_script
%ghc_reindex_haddock


%files  -f %{name}.files
%defattr(-,root,root,-)
%doc LICENSE README


%files prof -f %{name}-prof.files
%defattr(-,root,root,-)
%doc LICENSE
%{pkg_docdir}


%changelog
* Day Month Date Year Fedora Packager <email@address> - version-release
- initial packaging for Fedora