From Fedora Project Wiki
(→‎Library and Binary Template: update macros, etc)
Line 1: Line 1:
= Library and Binary Template =
= Library and Binary Template =
This is a sample spec file for a Haskell Cabal package. This sample demonstrates how to package a Haskell Cabal package that contains a library and binary together. 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.  They have been filled in manually.
This is a sample spec file for a Haskell Cabal package. This sample demonstrates how to package a Haskell Cabal package that contains a library and binary together. It can be generated automatically using cabal-rpm and then modified include missing dependency declarations, etc.


<pre>
<pre>
%define hsc_name ghc
%define ghc_version 6.8.3
%define hsc_version 6.8.3
%define pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{name}-%{version}
%define pkg_libdir %{_libdir}/%{hsc_name}-%{hsc_version}/%{name}-%{version}


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


Name: progHasLibs
Name: progHasLibs
Line 19: Line 18:
Summary: Summary of %{name}
Summary: Summary of %{name}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{hsc_name} = %{hsc_version}, %{hsc_name}-prof = %{hsc_version}, haddock
BuildRequires: ghc = %{ghc_version}, ghc-prof = %{ghc_version}, haddock
BuildRequires: ...
BuildRequires: ...
Requires: %{hsc_name} = %{hsc_version}
Requires: ghc = %{ghc_version}
Requires: ...
Requires: ...


Line 27: Line 26:
Description of %{name}.
Description of %{name}.


%package -n %{hsc_name}-%{name}
%package -n ghc-%{name}
Summary: Summary of %{name}
Summary: Summary of ghc-%{name}
Group: Development/Libraries
Group: Development/Libraries
Requires: %{hsc_name} = %{hsc_version}
Requires: ghc = %{ghc_version}


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




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


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




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




%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 58: Line 57:
%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 ghc-%{name}


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


Line 68: Line 67:
%clean
%clean
rm -rf ${RPM_BUILD_ROOT}
rm -rf ${RPM_BUILD_ROOT}
%pre -n %{hsc_name}-%{name}
%pre -n ghc-%{name}
%ghc_preinst_script
%ghc_preinst_script




%post -n %{hsc_name}-%{name}
%post -n ghc-%{name}
%ghc_postinst_script
%ghc_postinst_script




%preun -n %{hsc_name}-%{name}
%preun -n ghc-%{name}
%ghc_preun_script
%ghc_preun_script




%postun -n %{hsc_name}-%{name}
%postun -n ghc-%{name}
%ghc_postun_script
%ghc_postun_script


Line 89: Line 88:
%{_bindir}/%{name}
%{_bindir}/%{name}


%files -n %{hsc_name}-%{name} -f %{name}-files
%files -n ghc-%{name} -f ghc-%{name}.files
%defattr(-,root,root,-)
%defattr(-,root,root,-)
%doc dist/doc/html
%doc dist/doc/html
Line 95: Line 94:




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

Revision as of 10:50, 9 September 2008

Library and Binary Template

This is a sample spec file for a Haskell Cabal package. This sample demonstrates how to package a Haskell Cabal package that contains a library and binary together. It can be generated automatically using cabal-rpm and then modified include missing dependency declarations, etc.

%define ghc_version 6.8.3
%define pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{name}-%{version}

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

Name: progHasLibs
Version: 0.7
Release: 3%{?dist}
License: BSD
Group: User Interface/X
URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{name}
Source: http://hackage.haskell.org/packages/archive/%{name}/%{version}/%{name}-%{version}.tar.gz
Summary: Summary of %{name}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: ghc = %{ghc_version}, ghc-prof = %{ghc_version}, haddock
BuildRequires: ...
Requires: ghc = %{ghc_version}
Requires: ...

%description
Description of %{name}.

%package -n ghc-%{name}
Summary: Summary of ghc-%{name}
Group: Development/Libraries
Requires: ghc = %{ghc_version}

%description -n ghc-%{name}
This package contains libraries for ghc %{ghc_version}.


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

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


%prep
%setup -q


%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 ghc-%{name}

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


%clean
rm -rf ${RPM_BUILD_ROOT}
%pre -n ghc-%{name}
%ghc_preinst_script


%post -n ghc-%{name}
%ghc_postinst_script


%preun -n ghc-%{name}
%ghc_preun_script


%postun -n ghc-%{name}
%ghc_postun_script


%files
%defattr(-,root,root,-)
%doc LICENSE
%{_bindir}/%{name}

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


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


%changelog
* Wed Aug 12 2008 Yaakov M. Nemoy <yankee@koan> - 0.7-3
- Replaced content with macros
- Removed funky naming scheme with something more straight forward

* Wed Jul  2 2008 Yaakov M. Nemoy <yankee@koan> - 0.7-2
- added BuildRequires
- added Requires
- changed Group
- changed URL
- changed Source

* Thu Jun 26 2008 cabal-rpm <cabal-devel@haskell.org> - 0.7-1
- spec file autogenerated by cabal-rpm