update to 0.8.5

This commit is contained in:
Jens Petersen 2014-05-31 16:51:54 +09:00
parent 7a2aa84b5b
commit 167a290842
3 changed files with 28 additions and 5 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@
/http-types-0.6.11.tar.gz
/http-types-0.7.3.0.1.tar.gz
/http-types-0.8.0.tar.gz
/http-types-0.8.5.tar.gz

View File

@ -2,14 +2,19 @@
%global pkg_name http-types
%bcond_with tests
# no useful debuginfo for Haskell packages without C sources
%global debug_package %{nil}
Name: ghc-%{pkg_name}
Version: 0.8.0
Release: 3%{?dist}
Version: 0.8.5
Release: 1%{?dist}
Summary: Generic HTTP types for Haskell
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
Source0: http://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
@ -19,6 +24,12 @@ BuildRequires: ghc-blaze-builder-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-case-insensitive-devel
BuildRequires: ghc-text-devel
%if %{with tests}
BuildRequires: ghc-QuickCheck-devel
BuildRequires: ghc-doctest-devel
BuildRequires: ghc-hspec-devel
BuildRequires: ghc-quickcheck-instances-devel
%endif
# End cabal-rpm deps
%description
@ -27,10 +38,11 @@ Generic HTTP types for Haskell for both client and server code.
%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} = %{version}-%{release}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package provides the Haskell %{pkg_name} library development files.
@ -48,6 +60,12 @@ This package provides the Haskell %{pkg_name} library development files.
%ghc_lib_install
%check
%if %{with tests}
%cabal test
%endif
%post devel
%ghc_pkg_recache
@ -61,9 +79,13 @@ This package provides the Haskell %{pkg_name} library development files.
%files devel -f %{name}-devel.files
%doc README
%changelog
* Sat May 31 2014 Jens Petersen <petersen@redhat.com> - 0.8.5-1
- update to 0.8.5
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

View File

@ -1 +1 @@
9425e9a0bd8c581a28bfe6f282cf4fde http-types-0.8.0.tar.gz
378b68fe5d599a387be577e84da7597a http-types-0.8.5.tar.gz