From 8eb037304496ccd969c0f07da401eb2e11db94c2 Mon Sep 17 00:00:00 2001 From: Jakub Bogusz Date: Sat, 21 Dec 2013 20:07:56 +0100 Subject: [PATCH 1/1] - new --- ghc-zip-archive.spec | 182 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 182 insertions(+) create mode 100644 ghc-zip-archive.spec diff --git a/ghc-zip-archive.spec b/ghc-zip-archive.spec new file mode 100644 index 0000000..7a4d73c --- /dev/null +++ b/ghc-zip-archive.spec @@ -0,0 +1,182 @@ +# +# Conditional build: +%bcond_without prof # profiling library +# +%define pkgname zip-archive +Summary: Library for creating and modifying zip archives +Summary(pl.UTF-8): Biblioteka do tworzenia i modyfikowania archiwów zip +Name: ghc-%{pkgname} +Version: 0.2 +Release: 1 +License: BSD +Group: Development/Languages +#Source0Download: http://hackage.haskell.org/package/zip-archive +Source0: http://hackage.haskell.org/package/%{pkgname}-%{version}/%{pkgname}-%{version}.tar.gz +# Source0-md5: 61d6666aa775ba27090e381721dd4dad +URL: http://hackage.haskell.org/package/zip-archive +BuildRequires: ghc >= 6.12.3 +BuildRequires: ghc-array +BuildRequires: ghc-base >= 4.2 +BuildRequires: ghc-base < 5 +BuildRequires: ghc-binary >= 0.5 +BuildRequires: ghc-bytestring >= 0.9.0 +BuildRequires: ghc-containers +BuildRequires: ghc-digest >= 0.0.0.1 +BuildRequires: ghc-directory >= 1.1 +BuildRequires: ghc-filepath +BuildRequires: ghc-mtl +BuildRequires: ghc-old-time +BuildRequires: ghc-pretty +BuildRequires: ghc-text >= 0.11 +BuildRequires: ghc-time +BuildRequires: ghc-zlib +%if %{with prof} +BuildRequires: ghc-prof >= 6.12.3 +BuildRequires: ghc-array-prof +BuildRequires: ghc-base-prof >= 4.2 +BuildRequires: ghc-base-prof < 5 +BuildRequires: ghc-binary-prof >= 0.5 +BuildRequires: ghc-bytestring-prof >= 0.9.0 +BuildRequires: ghc-containers-prof +BuildRequires: ghc-digest-prof >= 0.0.0.1 +BuildRequires: ghc-directory-prof >= 1.1 +BuildRequires: ghc-filepath-prof +BuildRequires: ghc-mtl-prof +BuildRequires: ghc-old-time-prof +BuildRequires: ghc-pretty-prof +BuildRequires: ghc-text-prof >= 0.11 +BuildRequires: ghc-time-prof +BuildRequires: ghc-zlib-prof +%endif +BuildRequires: rpmbuild(macros) >= 1.608 +Requires(post,postun): /usr/bin/ghc-pkg +%requires_eq ghc +Requires: ghc-array +Requires: ghc-base >= 4.2 +Requires: ghc-base < 5 +Requires: ghc-binary >= 0.5 +Requires: ghc-bytestring >= 0.9.0 +Requires: ghc-containers +Requires: ghc-digest >= 0.0.0.1 +Requires: ghc-directory >= 1.1 +Requires: ghc-filepath +Requires: ghc-mtl +Requires: ghc-old-time +Requires: ghc-pretty +Requires: ghc-text >= 0.11 +Requires: ghc-time +Requires: ghc-zlib +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +# debuginfo is not useful for ghc +%define _enable_debug_packages 0 + +# don't compress haddock files +%define _noautocompressdoc *.haddock + +%description +The zip-archive library provides functions for creating, modifying, +and extracting files from zip archives. + +%description -l pl.UTF-8 +Biblioteka zip-archive udostępnia funkcje do tworzenia, modyfikowania +oraz wydobywania plików z archiwów zip. + +%package prof +Summary: Profiling %{pkgname} library for GHC +Summary(pl.UTF-8): Biblioteka profilująca %{pkgname} dla GHC +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: ghc-array-prof +Requires: ghc-base-prof >= 4.2 +Requires: ghc-base-prof < 5 +Requires: ghc-binary-prof >= 0.5 +Requires: ghc-bytestring-prof >= 0.9.0 +Requires: ghc-containers-prof +Requires: ghc-digest-prof >= 0.0.0.1 +Requires: ghc-directory-prof >= 1.1 +Requires: ghc-filepath-prof +Requires: ghc-mtl-prof +Requires: ghc-old-time-prof +Requires: ghc-pretty-prof +Requires: ghc-text-prof >= 0.11 +Requires: ghc-time-prof +Requires: ghc-zlib-prof + +%description prof +Profiling %{pkgname} library for GHC. Should be installed when +GHC's profiling subsystem is needed. + +%description prof -l pl.UTF-8 +Biblioteka profilująca %{pkgname} dla GHC. Powinna być zainstalowana +kiedy potrzebujemy systemu profilującego z GHC. + +%package doc +Summary: HTML documentation for ghc %{pkgname} package +Summary(pl.UTF-8): Dokumentacja w formacie HTML dla pakietu ghc %{pkgname} +Group: Documentation + +%description doc +HTML documentation for ghc %{pkgname} package. + +%description doc -l pl.UTF-8 +Dokumentacja w formacie HTML dla pakietu ghc %{pkgname}. + +%prep +%setup -q -n %{pkgname}-%{version} + +%build +runhaskell Setup.lhs configure -v2 \ + %{?with_prof:--enable-library-profiling} \ + --prefix=%{_prefix} \ + --libdir=%{_libdir} \ + --libexecdir=%{_libexecdir} \ + --docdir=%{_docdir}/%{name}-%{version} + +runhaskell Setup.lhs build +runhaskell Setup.lhs haddock --executables + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT%{_libdir}/%{ghcdir}/package.conf.d + +runhaskell Setup.lhs copy --destdir=$RPM_BUILD_ROOT + +# work around automatic haddock docs installation +%{__rm} -rf %{name}-%{version}-doc +cp -a $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} %{name}-%{version}-doc +%{__rm} -r $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} + +runhaskell Setup.lhs register \ + --gen-pkg-config=$RPM_BUILD_ROOT%{_libdir}/%{ghcdir}/package.conf.d/%{pkgname}.conf + +%clean +rm -rf $RPM_BUILD_ROOT + +%post +%ghc_pkg_recache + +%postun +%ghc_pkg_recache + +%files +%defattr(644,root,root,755) +%doc LICENSE +%{_libdir}/%{ghcdir}/package.conf.d/%{pkgname}.conf +%dir %{_libdir}/%{ghcdir}/%{pkgname}-%{version} +%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/HSzip-archive-%{version}.o +%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/libHSzip-archive-%{version}.a +%dir %{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Codec +%dir %{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Codec/Archive +%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Codec/Archive/Zip.hi + +%if %{with prof} +%files prof +%defattr(644,root,root,755) +%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/libHSzip-archive-%{version}_p.a +%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Codec/Archive/Zip.p_hi +%endif + +%files doc +%defattr(644,root,root,755) +%doc %{name}-%{version}-doc/* -- 2.44.0