2013-07-31 19:44:12 +02:00
|
|
|
#
|
|
|
|
# spec file for package ghc-case-insensitive
|
|
|
|
#
|
2017-02-22 18:36:20 +01:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2013-07-31 19:44:12 +02:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2014-11-06 20:15:31 +01:00
|
|
|
%global pkg_name case-insensitive
|
2016-07-17 01:10:51 +02:00
|
|
|
%bcond_with tests
|
|
|
|
Name: ghc-%{pkg_name}
|
2017-02-22 18:36:20 +01:00
|
|
|
Version: 1.2.0.8
|
2013-07-31 19:44:12 +02:00
|
|
|
Release: 0
|
2014-11-06 20:15:31 +01:00
|
|
|
Summary: Case insensitive string comparison
|
2013-07-31 19:44:12 +02:00
|
|
|
License: BSD-3-Clause
|
2016-08-24 15:07:37 +02:00
|
|
|
Group: Development/Languages/Other
|
2016-07-17 01:10:51 +02:00
|
|
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
|
|
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
2013-07-31 19:44:12 +02:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
|
|
BuildRequires: ghc-bytestring-devel
|
|
|
|
BuildRequires: ghc-deepseq-devel
|
|
|
|
BuildRequires: ghc-hashable-devel
|
2016-07-17 01:10:51 +02:00
|
|
|
BuildRequires: ghc-rpm-macros
|
2014-11-06 20:15:31 +01:00
|
|
|
BuildRequires: ghc-text-devel
|
2016-07-17 01:10:51 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-HUnit-devel
|
|
|
|
BuildRequires: ghc-test-framework-devel
|
|
|
|
BuildRequires: ghc-test-framework-hunit-devel
|
|
|
|
%endif
|
2013-07-31 19:44:12 +02:00
|
|
|
|
|
|
|
%description
|
2016-07-17 01:10:51 +02:00
|
|
|
The module 'Data.CaseInsensitive' provides the 'CI' type constructor which can
|
2014-11-06 20:15:31 +01:00
|
|
|
be parameterised by a string-like type like: 'String', 'ByteString', 'Text',
|
|
|
|
etc.. Comparisons of values of the resulting type will be insensitive to cases.
|
|
|
|
|
2013-07-31 19:44:12 +02:00
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2014-11-06 20:15:31 +01:00
|
|
|
Group: Development/Libraries/Other
|
2016-07-17 01:10:51 +02:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2014-11-06 20:15:31 +01:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2013-07-31 19:44:12 +02:00
|
|
|
|
|
|
|
%description devel
|
2014-11-06 20:15:31 +01:00
|
|
|
This package provides the Haskell %{pkg_name} library development
|
|
|
|
files.
|
|
|
|
|
2013-07-31 19:44:12 +02:00
|
|
|
%prep
|
|
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
2016-07-17 01:10:51 +02:00
|
|
|
%check
|
2016-08-24 15:07:37 +02:00
|
|
|
%cabal_test
|
2016-07-17 01:10:51 +02:00
|
|
|
|
2013-07-31 19:44:12 +02:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc LICENSE
|
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
|
|
|
%defattr(-,root,root,-)
|
2016-07-17 01:10:51 +02:00
|
|
|
%doc CHANGELOG README.markdown
|
2013-07-31 19:44:12 +02:00
|
|
|
|
|
|
|
%changelog
|