From 09cd17e13dd59d924afcccc2fe813c6e599680ec Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 Nov 2013 18:31:05 +0900 Subject: [PATCH] import (#1008787) --- .gitignore | 1 + ghc-yaml.spec | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 103 insertions(+) create mode 100644 ghc-yaml.spec diff --git a/.gitignore b/.gitignore index e69de29..8b7776f 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/yaml-0.8.5.tar.gz diff --git a/ghc-yaml.spec b/ghc-yaml.spec new file mode 100644 index 0000000..097742f --- /dev/null +++ b/ghc-yaml.spec @@ -0,0 +1,101 @@ +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name yaml + +Name: ghc-%{pkg_name} +Version: 0.8.5 +Release: 2%{?dist} +Summary: Support for parsing and rendering YAML documents + +License: BSD +URL: http://hackage.haskell.org/package/%{pkg_name} +Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz + +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +# Begin cabal-rpm deps: +BuildRequires: chrpath +BuildRequires: ghc-aeson-devel +BuildRequires: ghc-attoparsec-devel +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-conduit-devel +BuildRequires: ghc-containers-devel +BuildRequires: ghc-resourcet-devel +BuildRequires: ghc-text-devel +BuildRequires: ghc-transformers-devel +BuildRequires: ghc-unordered-containers-devel +BuildRequires: ghc-vector-devel +BuildRequires: pkgconfig(yaml-0.1) +# End cabal-rpm deps +# conduit not available +ExcludeArch: armv7hl + +%description +Provides support for parsing and emitting Yaml documents. + +The package is broken down into two modules. "Data.Yaml" provides a high-level +interface based around the JSON datatypes provided by the aeson package. +"Text.Libyaml" provides a lower-level, streaming interface. For most users, +"Data.Yaml" is recommended. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Provides: %{name}-static = %{version}-%{release} +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} +Requires: %{name}%{?_isa} = %{version}-%{release} +# Begin cabal-rpm deps: +Requires: pkgconfig(yaml-0.1) +# End cabal-rpm deps + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%prep +%setup -q -n %{pkg_name}-%{version} + +cabal-tweak-flag system-libyaml True +# remove the bundled lib +rm -r libyaml + + +%build +%ghc_lib_build + + +%install +%ghc_lib_install + +%ghc_fix_dynamic_rpath %{name} + + +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache + + +%files -f %{name}.files +%doc LICENSE + + +%files devel -f %{name}-devel.files +%{_bindir}/yaml2json + + +%changelog +* Wed Oct 16 2013 Jens Petersen - 0.8.5-2 +- add static provides and pkgconfig requires to devel + +* Tue Sep 17 2013 Jens Petersen - 0.8.5-1 +- build with system libyaml +- package yaml2json in devel subpackage +- exclude armv7hl because of conduit + +* Tue Sep 17 2013 Fedora Haskell SIG - 0.8.5-0 +- spec file generated by cabal-rpm-0.8.3 diff --git a/sources b/sources index e69de29..ab75d56 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +f63d6b2c0cc080958c993f795dd7be02 yaml-0.8.5.tar.gz