2015-05-02 14:01:11 +02:00
|
|
|
#
|
|
|
|
# spec file for package ghc-http-client
|
|
|
|
#
|
2020-06-16 12:56:54 +02:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2015-05-02 14:01:11 +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:49:49 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-05-02 14:01:11 +02:00
|
|
|
#
|
|
|
|
|
2015-05-04 11:23:36 +02:00
|
|
|
|
2015-05-02 14:01:11 +02:00
|
|
|
%global pkg_name http-client
|
|
|
|
%bcond_with tests
|
2016-07-17 01:27:22 +02:00
|
|
|
Name: ghc-%{pkg_name}
|
2020-06-20 12:55:25 +02:00
|
|
|
Version: 0.7.1
|
2015-05-02 14:01:11 +02:00
|
|
|
Release: 0
|
2017-02-22 19:03:01 +01:00
|
|
|
Summary: An HTTP client engine
|
2015-05-04 11:23:36 +02:00
|
|
|
License: MIT
|
2017-08-15 15:59:29 +02:00
|
|
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
2015-05-02 14:01:11 +02:00
|
|
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
|
|
BuildRequires: ghc-array-devel
|
|
|
|
BuildRequires: ghc-blaze-builder-devel
|
|
|
|
BuildRequires: ghc-bytestring-devel
|
|
|
|
BuildRequires: ghc-case-insensitive-devel
|
|
|
|
BuildRequires: ghc-containers-devel
|
|
|
|
BuildRequires: ghc-cookie-devel
|
|
|
|
BuildRequires: ghc-deepseq-devel
|
|
|
|
BuildRequires: ghc-exceptions-devel
|
|
|
|
BuildRequires: ghc-filepath-devel
|
|
|
|
BuildRequires: ghc-http-types-devel
|
2018-04-02 16:57:28 +02:00
|
|
|
BuildRequires: ghc-memory-devel
|
2015-05-02 14:01:11 +02:00
|
|
|
BuildRequires: ghc-mime-types-devel
|
|
|
|
BuildRequires: ghc-network-devel
|
|
|
|
BuildRequires: ghc-network-uri-devel
|
|
|
|
BuildRequires: ghc-random-devel
|
2016-07-17 01:27:22 +02:00
|
|
|
BuildRequires: ghc-rpm-macros
|
2018-01-30 10:33:52 +01:00
|
|
|
BuildRequires: ghc-stm-devel
|
2015-05-02 14:01:11 +02:00
|
|
|
BuildRequires: ghc-streaming-commons-devel
|
|
|
|
BuildRequires: ghc-text-devel
|
|
|
|
BuildRequires: ghc-time-devel
|
|
|
|
BuildRequires: ghc-transformers-devel
|
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-async-devel
|
|
|
|
BuildRequires: ghc-directory-devel
|
|
|
|
BuildRequires: ghc-hspec-devel
|
|
|
|
BuildRequires: ghc-monad-control-devel
|
|
|
|
BuildRequires: ghc-zlib-devel
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
Hackage documentation generation is not reliable. For up to date documentation,
|
|
|
|
please see: <http://www.stackage.org/package/http-client>.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2016-07-17 01:27:22 +02:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2015-05-02 14:01:11 +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
|
|
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
|
|
|
%check
|
2016-09-28 13:53:33 +02:00
|
|
|
%cabal_test
|
2016-07-17 01:27:22 +02:00
|
|
|
|
2015-05-02 14:01:11 +02:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2018-04-26 09:27:36 +02:00
|
|
|
%license LICENSE
|
2015-05-02 14:01:11 +02:00
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
2016-07-17 01:27:22 +02:00
|
|
|
%doc ChangeLog.md README.md
|
2015-05-02 14:01:11 +02:00
|
|
|
|
|
|
|
%changelog
|