Initial import - #1075598

Signed-off-by: Ricky Elrod <ricky@elrod.me>
This commit is contained in:
Ricky Elrod 2014-06-12 02:49:13 -04:00
parent 7fb4e0821c
commit 85ac27f2df
4 changed files with 93 additions and 0 deletions

1
.gitignore vendored
View File

@ -0,0 +1 @@
/contravariant-0.6.tar.gz

View File

@ -0,0 +1,12 @@
--- contravariant-0.4.4/contravariant.cabal~ 2013-08-20 23:16:27.000000000 +0900
+++ contravariant-0.4.4/contravariant.cabal 2014-03-24 16:16:35.242334031 +0900
@@ -25,8 +25,7 @@
build-depends:
base < 5,
tagged >= 0.4.4 && < 1,
- transformers >= 0.2 && < 0.4,
- transformers-compat >= 0.1 && < 1
+ transformers >= 0.3 && < 0.4
exposed-modules:
Data.Functor.Contravariant
Data.Functor.Contravariant.Compose

79
ghc-contravariant.spec Normal file
View File

@ -0,0 +1,79 @@
# https://fedoraproject.org/wiki/Packaging:Haskell
%global pkg_name contravariant
# no useful debuginfo for Haskell packages without C sources
%global debug_package %{nil}
Name: ghc-%{pkg_name}
Version: 0.6
Release: 1%{?dist}
Summary: Contravariant functors
License: BSD
URL: http://hackage.haskell.org/package/%{pkg_name}
Source0: http://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
Patch0: %{name}-%{version}-without-transformers-compat.patch
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
# Begin cabal-rpm deps:
BuildRequires: ghc-tagged-devel
BuildRequires: ghc-transformers-devel
# End cabal-rpm deps
%description
Contravariant functors.
%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}
%description devel
This package provides the Haskell %{pkg_name} library development files.
%prep
%setup -q -n %{pkg_name}-%{version}
# This is so that we don't need to have a compatibility package, because
# we ship new enough packages in Fedora that we can avoid needing it.
%patch0 -p1 -b .nocompat
%build
%ghc_lib_build
%install
%ghc_lib_install
%post devel
%ghc_pkg_recache
%postun devel
%ghc_pkg_recache
%files -f %{name}.files
%doc LICENSE
%files devel -f %{name}-devel.files
%changelog
* Thu Jun 12 2014 Ricky Elrod <relrod@redhat.com> - 0.6-1
- Update to latest release.
- Add comment above patch.
- Nuke debuginfo package.
- Prepare for initial import into Fedora.
* Wed Mar 12 2014 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 0.4.4
- spec file generated by cabal-rpm-0.8.10

View File

@ -0,0 +1 @@
1b84dbd435f782f808839f96baf1564f contravariant-0.6.tar.gz