From 3cecb7010da5146d027c3bc3712c602a351e26f8 Mon Sep 17 00:00:00 2001 From: Davide Madrisan Date: Fri, 5 Jan 2024 22:47:24 +0100 Subject: [PATCH] package created by autospec [release 1.2.4-1mamba;Mon Apr 13 2015] --- README.md | 3 +++ ghc-conduit.spec | 69 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 ghc-conduit.spec diff --git a/README.md b/README.md index 1948a6a..221dd21 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # ghc-conduit +conduit is a solution to the streaming data problem, allowing for production, transformation, and consumption of streams of data in constant memory. +It is an alternative to lazy I\/O which guarantees deterministic resource handling. + diff --git a/ghc-conduit.spec b/ghc-conduit.spec new file mode 100644 index 0000000..0b0a845 --- /dev/null +++ b/ghc-conduit.spec @@ -0,0 +1,69 @@ +%define ghc_ver %(ghc --numeric-version) +%define pkgname conduit + +Name: ghc-conduit +Version: 1.2.4 +Release: 1mamba +Summary: GHC library: Streaming data processing library +Group: Development/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Davide Madrisan +URL: http://hackage.haskell.org/package/%{pkgname} +Source: http://hackage.haskell.org/package/conduit-%{version}/conduit-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +BuildRequires: ghc +BuildRequires: hscolour +BuildRequires: ghc-exceptions +BuildRequires: ghc-lifted-base +BuildRequires: ghc-mmorph +BuildRequires: ghc-resourcet +BuildRequires: ghc-transformers-base +BuildRequires: ghc-void +Requires: ghc = %{ghc_ver} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +conduit is a solution to the streaming data problem, allowing for production, transformation, and consumption of streams of data in constant memory. +It is an alternative to lazy I\/O which guarantees deterministic resource handling. + +%prep +%setup -q -n conduit-%{version} + +%build +runghc Setup.lhs configure -v2 \ + --prefix=%{_prefix} \ + --libdir=%{_libdir} \ + --libexecdir=%{_libexecdir} \ + --docdir=%{_docdir}/%{name}-%{version} + +runghc Setup.lhs build +runghc Setup.lhs haddock --executable --html-location=URL --hyperlink-source + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +runghc Setup.lhs copy --destdir=%{buildroot} +runghc Setup.lhs register \ + --gen-pkg-config="%{buildroot}%{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/%{pkgname}-%{version}.conf" + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post +ghc-pkg register %{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/%{pkgname}-%{version}.conf &>/dev/null || : + +%preun +ghc-pkg unregister %{pkgname}-%{version} &>/dev/null || : + +%files +%defattr(-,root,root) +%{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version} +%dir %{_docdir}/%{name}-%{version} +%{_docdir}/%{name}-%{version}/LICENSE +%{_docdir}/%{name}-%{version}/html + +%changelog +* Mon Apr 13 2015 Davide Madrisan 1.2.4-1mamba +- package created by autospec