2015-05-02 11:55:55 +02:00
|
|
|
#
|
|
|
|
# spec file for package ghc-either
|
|
|
|
#
|
2022-06-29 14:18:11 +02:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2015-05-02 11:55:55 +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.
|
|
|
|
|
2018-10-18 11:48:49 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-05-02 11:55:55 +02:00
|
|
|
#
|
|
|
|
|
2015-05-17 17:22:47 +02:00
|
|
|
|
2015-05-02 11:55:55 +02:00
|
|
|
%global pkg_name either
|
2018-04-02 16:54:41 +02:00
|
|
|
%bcond_with tests
|
2016-07-17 19:06:08 +02:00
|
|
|
Name: ghc-%{pkg_name}
|
2022-06-29 14:18:11 +02:00
|
|
|
Version: 5.0.2
|
2015-05-02 11:55:55 +02:00
|
|
|
Release: 0
|
2018-04-02 16:54:41 +02:00
|
|
|
Summary: Combinators for working with sums
|
2015-05-17 17:22:47 +02:00
|
|
|
License: BSD-3-Clause
|
2017-08-15 15:56:03 +02:00
|
|
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
2015-05-02 11:55:55 +02:00
|
|
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
|
|
BuildRequires: ghc-bifunctors-devel
|
|
|
|
BuildRequires: ghc-mtl-devel
|
|
|
|
BuildRequires: ghc-profunctors-devel
|
2016-07-17 19:06:08 +02:00
|
|
|
BuildRequires: ghc-rpm-macros
|
2015-05-02 11:55:55 +02:00
|
|
|
BuildRequires: ghc-semigroupoids-devel
|
2020-12-19 18:47:59 +01:00
|
|
|
ExcludeArch: %{ix86}
|
2018-04-02 16:54:41 +02:00
|
|
|
%if %{with tests}
|
2018-07-11 03:01:38 +02:00
|
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
|
|
BuildRequires: ghc-test-framework-devel
|
|
|
|
BuildRequires: ghc-test-framework-quickcheck2-devel
|
2018-04-02 16:54:41 +02:00
|
|
|
%endif
|
2015-05-02 11:55:55 +02:00
|
|
|
|
|
|
|
%description
|
2018-04-02 16:54:41 +02:00
|
|
|
Combinators for working with sums.
|
2015-05-02 11:55:55 +02:00
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2016-07-17 19:06:08 +02:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2015-05-02 11:55:55 +02:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
|
|
|
|
|
|
|
%prep
|
2020-09-04 17:10:28 +02:00
|
|
|
%autosetup -n %{pkg_name}-%{version}
|
2015-05-02 11:55:55 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
2018-04-02 16:54:41 +02:00
|
|
|
%check
|
|
|
|
%cabal_test
|
|
|
|
|
2015-05-02 11:55:55 +02:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2018-04-26 09:19:52 +02:00
|
|
|
%license LICENSE
|
2015-05-02 11:55:55 +02:00
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
2017-02-28 11:35:49 +01:00
|
|
|
%doc CHANGELOG.markdown README.markdown
|
2015-05-02 11:55:55 +02:00
|
|
|
|
|
|
|
%changelog
|