2012-01-05 12:29:31 +00:00
|
|
|
# https://fedoraproject.org/wiki/Packaging:Haskell
|
2011-10-08 12:13:51 +00:00
|
|
|
|
|
|
|
%global pkg_name hashable
|
|
|
|
|
2014-06-03 13:28:21 +00:00
|
|
|
%bcond_with tests
|
|
|
|
|
2011-10-08 12:13:51 +00:00
|
|
|
Name: ghc-%{pkg_name}
|
2014-06-03 13:28:21 +00:00
|
|
|
# part of haskell-platform
|
2014-08-08 14:40:57 +00:00
|
|
|
Version: 1.2.2.0
|
2014-08-16 15:10:59 +00:00
|
|
|
Release: 2%{?dist}
|
2013-06-04 09:28:19 +00:00
|
|
|
Summary: Class for types convertible to a hash value
|
2011-10-08 12:13:51 +00:00
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: http://hackage.haskell.org/package/%{pkg_name}
|
2014-06-03 13:28:21 +00:00
|
|
|
Source0: http://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
2012-11-07 07:53:40 +00:00
|
|
|
|
2011-10-08 12:13:51 +00:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
2012-11-07 07:53:40 +00:00
|
|
|
BuildRequires: ghc-rpm-macros
|
|
|
|
# Begin cabal-rpm deps:
|
2012-07-16 02:11:01 +00:00
|
|
|
BuildRequires: ghc-bytestring-devel
|
|
|
|
BuildRequires: ghc-text-devel
|
2014-06-03 13:28:21 +00:00
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-HUnit-devel
|
|
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
|
|
BuildRequires: ghc-random-devel
|
|
|
|
BuildRequires: ghc-test-framework-devel
|
|
|
|
BuildRequires: ghc-test-framework-hunit-devel
|
|
|
|
BuildRequires: ghc-test-framework-quickcheck2-devel
|
|
|
|
BuildRequires: ghc-unix-devel
|
|
|
|
%endif
|
2012-11-07 07:53:40 +00:00
|
|
|
# End cabal-rpm deps
|
2011-10-08 12:13:51 +00:00
|
|
|
|
|
|
|
%description
|
2014-06-03 13:28:21 +00:00
|
|
|
This package defines a class, 'Hashable', for types that can be converted to a
|
|
|
|
hash value. This class exists for the benefit of hashing-based data structures.
|
|
|
|
The package provides instances for basic types and a way to combine hash
|
|
|
|
values.
|
2011-10-08 12:13:51 +00:00
|
|
|
|
|
|
|
|
2013-05-04 12:55:25 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2014-06-03 13:28:21 +00:00
|
|
|
Provides: %{name}-static = %{version}-%{release}
|
2013-06-04 09:28:19 +00:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2014-06-03 13:28:21 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2013-05-04 12:55:25 +00:00
|
|
|
|
|
|
|
%description devel
|
2013-06-04 09:28:19 +00:00
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
|
|
|
|
2013-05-04 12:55:25 +00:00
|
|
|
|
2011-10-08 12:13:51 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
|
|
|
|
2014-06-03 13:28:21 +00:00
|
|
|
%check
|
|
|
|
%if %{with tests}
|
|
|
|
%cabal test
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2013-05-04 12:55:25 +00:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
2012-01-05 12:29:31 +00:00
|
|
|
|
|
|
|
|
2013-05-04 12:55:25 +00:00
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
2012-01-05 12:29:31 +00:00
|
|
|
|
|
|
|
|
2013-05-04 12:55:25 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%doc LICENSE
|
2012-01-05 12:29:31 +00:00
|
|
|
|
2013-05-04 12:55:25 +00:00
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
2012-01-05 12:29:31 +00:00
|
|
|
%doc README.md
|
2011-10-08 12:13:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2014-08-16 15:10:59 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-08 14:40:57 +00:00
|
|
|
* Fri Aug 8 2014 Jens Petersen <petersen@redhat.com> - 1.2.2.0-1
|
|
|
|
- update to 1.2.2.0
|
|
|
|
|
2014-06-19 09:35:27 +00:00
|
|
|
* Thu Jun 19 2014 Jens Petersen <petersen@redhat.com> - 1.1.2.5-5
|
|
|
|
- update packaging with cblrpm-0.8.11
|
2014-06-03 13:28:21 +00:00
|
|
|
|
2013-08-03 13:42:40 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-05-04 12:55:25 +00:00
|
|
|
* Sat May 4 2013 Jens Petersen <petersen@redhat.com> - 1.1.2.5-3
|
|
|
|
- part of haskell-platform-2013.2
|
|
|
|
- update to cabal-rpm-0.8.0
|
|
|
|
|
2013-02-13 23:09:50 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-07 07:53:40 +00:00
|
|
|
* Wed Nov 07 2012 Jens Petersen <petersen@redhat.com> - 1.1.2.5-1
|
|
|
|
- update to 1.1.2.5
|
|
|
|
|
2012-07-19 05:40:43 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-16 02:11:01 +00:00
|
|
|
* Mon Jul 16 2012 Jens Petersen <petersen@redhat.com> - 1.1.2.3-4
|
|
|
|
- change prof BRs to devel
|
|
|
|
|
2012-06-15 08:48:47 +00:00
|
|
|
* Fri Jun 15 2012 Jens Petersen <petersen@redhat.com> - 1.1.2.3-3
|
|
|
|
- rebuild
|
|
|
|
|
2012-03-22 14:15:21 +00:00
|
|
|
* Thu Mar 22 2012 Jens Petersen <petersen@redhat.com> - 1.1.2.3-2
|
|
|
|
- add license to ghc_files
|
|
|
|
|
2012-03-07 08:07:33 +00:00
|
|
|
* Wed Mar 7 2012 Jens Petersen <petersen@redhat.com> - 1.1.2.3-1
|
|
|
|
- update to 1.1.2.3
|
|
|
|
|
2012-01-05 12:29:31 +00:00
|
|
|
* Thu Jan 5 2012 Jens Petersen <petersen@redhat.com> - 1.1.2.2-1
|
|
|
|
- update to 1.1.2.2 and cabal2spec-0.25.2
|
|
|
|
|
2011-10-21 11:36:18 +00:00
|
|
|
* Fri Oct 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.1.2.1-3
|
|
|
|
- rebuild with new gmp
|
|
|
|
|
2011-10-08 12:19:46 +00:00
|
|
|
* Sat Oct 8 2011 Jens Petersen <petersen@redhat.com> - 1.1.2.1-2
|
|
|
|
- condition BR hscolour
|
|
|
|
|
2011-10-08 12:13:51 +00:00
|
|
|
* Mon Aug 22 2011 Jens Petersen <petersen@redhat.com> - 1.1.2.1-1
|
|
|
|
- BSD
|
|
|
|
|
|
|
|
* Mon Aug 22 2011 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org> - 1.1.2.1-0
|
|
|
|
- initial packaging for Fedora automatically generated by cabal2spec-0.23.2
|