ghc-shakespeare/ghc-shakespeare.spec

139 lines
4.0 KiB
RPMSpec
Raw Normal View History

2012-01-05 13:39:34 +00:00
# https://fedoraproject.org/wiki/Packaging:Haskell
2011-10-08 08:54:54 +00:00
%global pkg_name shakespeare
Name: ghc-%{pkg_name}
Version: 1.0.5
Release: 1%{?dist}
Summary: Toolkit for compile-time interpolated templates
2011-10-08 08:54:54 +00:00
2012-11-07 14:00:14 +00:00
License: MIT
2011-10-08 08:54:54 +00:00
URL: http://hackage.haskell.org/package/%{pkg_name}
Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
2012-11-07 14:00:14 +00:00
2011-10-08 08:54:54 +00:00
BuildRequires: ghc-Cabal-devel
2012-11-07 14:00:14 +00:00
BuildRequires: ghc-rpm-macros
# Begin cabal-rpm deps:
BuildRequires: ghc-containers-devel
2012-07-16 02:14:43 +00:00
BuildRequires: ghc-parsec-devel
BuildRequires: ghc-process-devel
BuildRequires: ghc-system-fileio-devel
BuildRequires: ghc-system-filepath-devel
2012-07-16 02:14:43 +00:00
BuildRequires: ghc-template-haskell-devel
BuildRequires: ghc-text-devel
BuildRequires: ghc-time-devel
2012-11-07 14:00:14 +00:00
ExclusiveArch: %{ghc_arches_with_ghci}
# End cabal-rpm deps
2011-10-08 08:54:54 +00:00
%description
Shakespeare is a family of type-safe, efficient template languages.
Shakespeare templates are expanded at compile-time,
ensuring that all interpolated variables are in scope.
Variables are interpolated according to their type through a typeclass.
Shakespeare templates can be used inline with a quasi-quoter
or in an external file.
See the documentation at <http://www.yesodweb.com/book/shakespearean-templates>
for more details.
%package devel
Summary: Haskell %{pkg_name} library development files
Requires: ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}
Requires: %{name} = %{version}-%{release}
%description devel
This package provides the Haskell %{pkg_name} library development files.
2011-10-08 08:54:54 +00:00
%prep
%setup -q -n %{pkg_name}-%{version}
%build
%ghc_lib_build
%install
%ghc_lib_install
%post devel
%ghc_pkg_recache
2012-01-05 13:39:34 +00:00
%postun devel
%ghc_pkg_recache
2012-01-05 13:39:34 +00:00
%files -f %{name}.files
%doc LICENSE
2012-01-05 13:39:34 +00:00
%files devel -f %{name}-devel.files
2011-10-08 08:54:54 +00:00
%changelog
* Wed Aug 28 2013 Jens Petersen <petersen@redhat.com> - 1.0.5-1
- update to 1.0.5
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Tue Jun 04 2013 Jens Petersen <petersen@redhat.com> - 1.0.4-1
- update to 1.0.4
- update to new simplified Haskell Packaging Guidelines
2013-03-12 14:56:29 +00:00
* Tue Mar 12 2013 Jens Petersen <petersen@redhat.com> - 1.0.3.1-1
- update to 1.0.3.1
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2012-11-07 14:00:14 +00:00
* Wed Nov 7 2012 Jens Petersen <petersen@redhat.com> - 1.0.1.4-1
- update to 1.0.1.4
- license is now MIT
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-07-16 02:14:43 +00:00
* Mon Jul 16 2012 Jens Petersen <petersen@redhat.com> - 1.0.0.2-2
- change prof BRs to devel
2012-06-13 10:01:57 +00:00
* Wed Jun 13 2012 Jens Petersen <petersen@redhat.com> - 1.0.0.2-1
- update to 1.0.0.2
2012-04-26 09:51:29 +00:00
* Thu Apr 26 2012 Jens Petersen <petersen@redhat.com> - 1.0.0.1-1
- update to 1.0.0.1
2012-03-23 04:16:47 +00:00
* Fri Mar 23 2012 Jens Petersen <petersen@redhat.com> - 0.11-1
- update to 0.11
- depends on text not blaze-html and failure
2012-03-23 04:16:47 +00:00
2012-03-07 05:46:49 +00:00
* Wed Mar 7 2012 Jens Petersen <petersen@redhat.com> - 0.10.3.1-1
- update to 0.10.3.1
- only build on ghc_arches_with_ghci
2012-01-05 13:39:34 +00:00
* Thu Jan 5 2012 Jens Petersen <petersen@redhat.com> - 0.10.2-2
- update to cabal2spec-0.25.2
2011-11-01 14:24:07 +00:00
* Tue Nov 1 2011 Jens Petersen <petersen@redhat.com> - 0.10.2-1
- update to 0.10.2
* Mon Oct 24 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.10.1.1-1.1
- rebuild with new gmp without compat lib
2011-10-08 09:03:44 +00:00
* Sat Oct 8 2011 Jens Petersen <petersen@redhat.com> - 0.10.1.1-1
- update to 0.10.1.1
2011-10-08 08:54:54 +00:00
* Thu Sep 8 2011 Jens Petersen <petersen@redhat.com> - 0.10.0-2
- BR ghc-*-prof
* Wed Sep 7 2011 Jens Petersen <petersen@redhat.com> - 0.10.0-1
- BSD license; deps
* Wed Sep 7 2011 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org> - 0.10.0-0
- initial packaging for Fedora automatically generated by cabal2spec-0.23.2