2012-01-05 12:11:07 +00:00
|
|
|
# https://fedoraproject.org/wiki/Packaging:Haskell
|
2011-06-18 07:19:50 +00:00
|
|
|
|
|
|
|
%global pkg_name blaze-html
|
|
|
|
|
2014-08-28 07:42:13 +00:00
|
|
|
%bcond_with tests
|
|
|
|
|
|
|
|
# no useful debuginfo for Haskell packages without C sources
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
2011-06-18 07:19:50 +00:00
|
|
|
Name: ghc-%{pkg_name}
|
2014-09-25 09:24:06 +00:00
|
|
|
Version: 0.7.0.3
|
2016-02-03 21:26:08 +00:00
|
|
|
Release: 3%{?dist}
|
2013-06-07 03:48:15 +00:00
|
|
|
Summary: A blazingly fast HTML combinator library for Haskell
|
2011-06-18 07:19:50 +00:00
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: http://hackage.haskell.org/package/%{pkg_name}
|
2014-08-28 07:42:13 +00:00
|
|
|
Source0: http://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
2012-10-26 02:48:20 +00:00
|
|
|
|
2011-06-18 07:19:50 +00:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
2012-11-19 11:41:41 +00:00
|
|
|
BuildRequires: ghc-rpm-macros
|
2012-10-26 02:48:20 +00:00
|
|
|
# Begin cabal-rpm deps:
|
2012-11-19 11:41:41 +00:00
|
|
|
BuildRequires: ghc-blaze-builder-devel
|
|
|
|
BuildRequires: ghc-blaze-markup-devel
|
|
|
|
BuildRequires: ghc-bytestring-devel
|
|
|
|
BuildRequires: ghc-text-devel
|
2014-08-28 07:42:13 +00:00
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-HUnit-devel
|
|
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
|
|
BuildRequires: ghc-containers-devel
|
|
|
|
BuildRequires: ghc-test-framework-devel
|
|
|
|
BuildRequires: ghc-test-framework-hunit-devel
|
|
|
|
BuildRequires: ghc-test-framework-quickcheck2-devel
|
|
|
|
%endif
|
2012-10-26 02:48:20 +00:00
|
|
|
# End cabal-rpm deps
|
2011-06-18 07:19:50 +00:00
|
|
|
|
|
|
|
%description
|
2013-06-07 03:48:15 +00:00
|
|
|
A blazingly fast HTML combinator library for the Haskell programming language.
|
|
|
|
It embeds HTML templates in Haskell code for optimal efficiency and
|
|
|
|
composability. The project is aimed at those who seek to write
|
|
|
|
web applications in Haskell — it integrates well with Haskell web frameworks.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2014-08-28 07:42:13 +00:00
|
|
|
Provides: %{name}-static = %{version}-%{release}
|
2013-06-07 03:48:15 +00:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2014-08-28 07:42:13 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2013-06-07 03:48:15 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
2011-06-18 07:19:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
|
|
|
|
2014-08-28 07:42:13 +00:00
|
|
|
%check
|
|
|
|
%if %{with tests}
|
|
|
|
%cabal test
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2013-06-07 03:48:15 +00:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
2012-01-05 12:11:07 +00:00
|
|
|
|
2013-06-07 03:48:15 +00:00
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
2012-01-05 12:11:07 +00:00
|
|
|
|
|
|
|
|
2013-06-07 03:48:15 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%doc LICENSE
|
2012-01-05 12:11:07 +00:00
|
|
|
|
|
|
|
|
2013-06-07 03:48:15 +00:00
|
|
|
%files devel -f %{name}-devel.files
|
2011-06-18 07:19:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2016-02-03 21:26:08 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 07:32:44 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-09-25 09:24:06 +00:00
|
|
|
* Thu Sep 25 2014 Jens Petersen <petersen@redhat.com> - 0.7.0.3-1
|
|
|
|
- update to 0.7.0.3
|
2014-08-28 07:42:13 +00:00
|
|
|
- refresh to cblrpm-0.8.11
|
|
|
|
|
2014-08-16 14:44:12 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 14:32:22 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-03 13:25:19 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-07 03:48:15 +00:00
|
|
|
* Mon Jun 10 2013 Jens Petersen <petersen@redhat.com> - 0.6.1.1-1
|
|
|
|
- update to 0.6.1.1
|
|
|
|
- update to new simplified Haskell Packaging Guidelines
|
|
|
|
|
2013-03-12 05:15:28 +00:00
|
|
|
* Mon Mar 11 2013 Jens Petersen <petersen@redhat.com> - 0.6.0.0-1
|
|
|
|
- update to 0.6.0.0
|
|
|
|
|
2013-02-13 22:58:51 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-19 11:41:41 +00:00
|
|
|
* Mon Nov 19 2012 Jens Petersen <petersen@redhat.com> - 0.5.1.0-1
|
|
|
|
- update to 0.5.1.0 with cabal-rpm
|
2012-10-26 02:48:20 +00:00
|
|
|
|
2012-07-19 05:23:16 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.3.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-16 02:07:50 +00:00
|
|
|
* Mon Jul 16 2012 Jens Petersen <petersen@redhat.com> - 0.4.3.4-2
|
|
|
|
- change prof BRs to devel
|
|
|
|
|
2012-06-13 08:37:17 +00:00
|
|
|
* Wed Jun 13 2012 Jens Petersen <petersen@redhat.com> - 0.4.3.4-1
|
|
|
|
- update to 0.4.3.4
|
|
|
|
|
2012-03-22 09:09:21 +00:00
|
|
|
* Thu Mar 22 2012 Jens Petersen <petersen@redhat.com> - 0.4.3.1-3
|
|
|
|
- rebuild
|
|
|
|
|
2012-03-01 04:20:12 +00:00
|
|
|
* Thu Mar 1 2012 Jens Petersen <petersen@redhat.com> - 0.4.3.1-2
|
|
|
|
- rebuild
|
|
|
|
|
2012-01-05 12:11:07 +00:00
|
|
|
* Thu Jan 5 2012 Jens Petersen <petersen@redhat.com> - 0.4.3.1-1
|
|
|
|
- update to 0.4.3.1 and cabal2spec-0.25.2
|
|
|
|
|
2011-10-20 18:57:42 +00:00
|
|
|
* Thu Oct 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.4.2.0-1.2
|
|
|
|
- rebuild with new gmp without compat lib
|
|
|
|
|
2011-10-11 08:49:32 +00:00
|
|
|
* Tue Oct 11 2011 Peter Schiffer <pschiffe@redhat.com> - 0.4.2.0-1.1
|
|
|
|
- rebuild with new gmp
|
|
|
|
|
2011-10-03 10:15:53 +00:00
|
|
|
* Mon Oct 3 2011 Jens Petersen <petersen@redhat.com> - 0.4.2.0-1
|
|
|
|
- update to 0.4.2.0
|
|
|
|
|
2011-09-28 10:25:25 +00:00
|
|
|
* Wed Sep 28 2011 Jens Petersen <petersen@redhat.com> - 0.4.1.7-1
|
|
|
|
- update to 0.4.1.7
|
|
|
|
|
2011-08-04 03:15:10 +00:00
|
|
|
* Thu Aug 4 2011 Jens Petersen <petersen@redhat.com> - 0.4.1.6-1
|
|
|
|
- update to 0.4.1.6
|
|
|
|
|
2011-06-18 09:25:11 +00:00
|
|
|
* Sat Jun 18 2011 Jens Petersen <petersen@redhat.com> - 0.4.1.4-1
|
|
|
|
- update to 0.4.1.4
|
|
|
|
|
2011-06-18 07:19:50 +00:00
|
|
|
* Wed Jun 15 2011 Jens Petersen <petersen@redhat.com> - 0.4.1.3-1
|
|
|
|
- update to 0.4.1.3
|
|
|
|
- cabal2spec-0.23
|
|
|
|
|
|
|
|
* Tue May 3 2011 Jens Petersen <petersen@redhat.com> - 0.4.1.1-1
|
|
|
|
- update to 0.4.1.1
|
|
|
|
- cabal2spec-0.22.6
|
|
|
|
|
|
|
|
* Sat Mar 26 2011 Jens Petersen <petersen@redhat.com> - 0.4.1.0-1
|
|
|
|
- BSD license
|
|
|
|
- depends on ghc-text and ghc-blaze-builder
|
|
|
|
|
|
|
|
* Sat Mar 26 2011 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org> - 0.4.1.0-0
|
|
|
|
- initial packaging for Fedora automatically generated by cabal2spec-0.22.5
|