[packages/ghc-unliftio-core] - new

baggins baggins at pld-linux.org
Tue May 26 23:08:20 CEST 2020


commit 9ee643710049342f97f01f1f068e060fd8bf43a4
Author: Jan Rękorajski <baggins at pld-linux.org>
Date:   Tue May 26 23:08:00 2020 +0200

    - new

 ghc-8.10.patch         |  10 +++++
 ghc-unliftio-core.spec | 113 +++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 123 insertions(+)
---
diff --git a/ghc-unliftio-core.spec b/ghc-unliftio-core.spec
new file mode 100644
index 0000000..18f844f
--- /dev/null
+++ b/ghc-unliftio-core.spec
@@ -0,0 +1,113 @@
+#
+# Conditional build:
+%bcond_without	prof	# profiling library
+#
+%define		pkgname	unliftio-core
+Summary:	The MonadUnliftIO typeclass for unlifting monads to IO
+Name:		ghc-%{pkgname}
+Version:	0.2.0.1
+Release:	1
+License:	MIT
+Group:		Development/Languages
+#Source0Download: http://hackage.haskell.org/package/unliftio-core
+Source0:	http://hackage.haskell.org/package/%{pkgname}-%{version}/%{pkgname}-%{version}.tar.gz
+# Source0-md5:	c0d5e28f401241b73789dd8b75791d42
+Patch0:		ghc-8.10.patch
+URL:		http://hackage.haskell.org/package/unliftio-core
+BuildRequires:	ghc >= 6.12.3
+%if %{with prof}
+BuildRequires:	ghc-prof
+%endif
+BuildRequires:	rpmbuild(macros) >= 1.608
+%requires_eq	ghc
+Requires(post,postun):	/usr/bin/ghc-pkg
+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
+Provides the core MonadUnliftIO typeclass, instances for base and
+transformers, and basic utility functions. Typically, you'll want to
+use the unliftio library, which provides more functionality
+(and a much better description).
+
+%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}
+%patch0 -p1
+
+%build
+runhaskell Setup.hs configure -v2 \
+	%{?with_prof:--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 ChangeLog.md LICENSE README.md %{name}-%{version}-doc/html
+%{_libdir}/%{ghcdir}/package.conf.d/%{pkgname}.conf
+%dir %{_libdir}/%{ghcdir}/%{pkgname}-%{version}
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*.so
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*.a
+%exclude %{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*_p.a
+
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*.hi
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*.dyn_hi
+%dir %{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Control
+%dir %{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Control/Monad
+%dir %{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Control/Monad/IO
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Control/Monad/IO/*.hi
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Control/Monad/IO/*.dyn_hi
+
+%if %{with prof}
+%files prof
+%defattr(644,root,root,755)
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*_p.a
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/*.p_hi
+%{_libdir}/%{ghcdir}/%{pkgname}-%{version}/Control/Monad/IO/*.p_hi
+%endif
diff --git a/ghc-8.10.patch b/ghc-8.10.patch
new file mode 100644
index 0000000..649b7cb
--- /dev/null
+++ b/ghc-8.10.patch
@@ -0,0 +1,10 @@
+--- unliftio-core-0.2.0.1/unliftio-core.cabal~	2020-03-02 14:17:55.000000000 +0100
++++ unliftio-core-0.2.0.1/unliftio-core.cabal	2020-05-26 23:03:58.388938960 +0200
+@@ -30,6 +30,6 @@
+   hs-source-dirs:
+       src
+   build-depends:
+-      base >=4.5 && <4.14
++      base >=4.5
+     , transformers >=0.2 && <0.6
+   default-language: Haskell2010
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ghc-unliftio-core.git/commitdiff/9ee643710049342f97f01f1f068e060fd8bf43a4



More information about the pld-cvs-commit mailing list