[packages/ghc-snap-server] - new, NFY
baggins
baggins at pld-linux.org
Thu Oct 10 14:59:05 CEST 2013
commit aff86967ce47f0661e981343b42f809b847e4125
Author: Jan Rękorajski <baggins at pld-linux.org>
Date: Thu Oct 10 14:58:44 2013 +0200
- new, NFY
ghc-snap-server.spec | 114 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 114 insertions(+)
---
diff --git a/ghc-snap-server.spec b/ghc-snap-server.spec
new file mode 100644
index 0000000..c804463
--- /dev/null
+++ b/ghc-snap-server.spec
@@ -0,0 +1,114 @@
+%define pkgname snap-server
+Summary: A fast, iteratee-based, epoll-enabled web server for the Snap Framework
+Name: ghc-%{pkgname}
+Version: 0.9.3.4
+Release: 0.1
+License: BSD
+Group: Development/Languages
+Source0: http://hackage.haskell.org/packages/archive/%{pkgname}/%{version}/%{pkgname}-%{version}.tar.gz
+# Source0-md5: 3a104cb7d3b2ad0858aa9f87c0762216
+URL: http://hackage.haskell.org/package/snap-server/
+BuildRequires: ghc >= 6.12.3
+BuildRequires: ghc-prof
+BuildRequires: ghc-attoparsec-enumerator
+BuildRequires: ghc-blaze-builder >= 0.2.1.4
+BuildRequires: ghc-blaze-builder-enumerator >= 0.2.0
+BuildRequires: ghc-enumerator >= 0.4.15
+BuildRequires: ghc-MonadCatchIO-transformers >= 0.2.1
+BuildRequires: ghc-snap-core >= 0.9.3
+BuildRequires: ghc-unix-compat >= 0.2
+BuildRequires: rpmbuild(macros) >= 1.608
+%requires_releq ghc
+Requires(post,postun): /usr/bin/ghc-pkg
+Requires: ghc-attoparsec-enumerator
+Requires: ghc-blaze-builder >= 0.2.1.4
+Requires: ghc-blaze-builder-enumerator >= 0.2.0
+Requires: ghc-enumerator >= 0.4.15
+Requires: ghc-MonadCatchIO-transformers >= 0.2.1
+Requires: ghc-snap-core >= 0.9.3
+Requires: ghc-unix-compat >= 0.2
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+# debuginfo is not useful for ghc
+%define _enable_debug_packages 0
+
+# don't compress haddoc files
+%define _noautocompressdoc *.haddock
+
+%description
+Snap is a simple and fast web development framework and server written
+in Haskell. For more information or to download the latest version,
+you can visit the Snap project website at http://snapframework.com/.
+
+The Snap HTTP server is a high performance, epoll-enabled,
+iteratee-based web server library written in Haskell. Together with
+the snap-core library upon which it depends, it provides a clean and
+efficient Haskell programming interface to the HTTP protocol.
+
+%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}
+
+%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.
+
+%prep
+%setup -q -n %{pkgname}-%{version}
+
+%build
+runhaskell Setup.hs configure -v2 --enable-library-profiling \
+ --prefix=%{_prefix} \
+ --libdir=%{_libdir} \
+ --libexecdir=%{_libexecdir} \
+ --docdir=%{_docdir}/%{name}-%{version}
+
+runhaskell Setup.hs build
+runhaskell Setup.hs haddock --executables
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_libdir}/%{ghcdir}/package.conf.d
+
+runhaskell Setup.hs 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.hs 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 NEWS
+%doc %{name}-%{version}-doc/*
+%{_libdir}/%{ghcdir}/package.conf.d/%{pkgname}.conf
+%dir %{_libdir}/%{ghcdir}/%{pkgname}-%{version}
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*.o
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*.a
+%exclude %{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*_p.a
+
+%dir %{_libdir}/%{ghcdir}/%{pkgname}-%{version}/PACKAGE
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/PACKAGE/*.hi
+
+%files prof
+%defattr(644,root,root,755)
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*_p.a
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/PACKAGE/*.p_hi
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/ghc-snap-server.git/commitdiff/aff86967ce47f0661e981343b42f809b847e4125
More information about the pld-cvs-commit
mailing list