2012-06-06 17:50:37 +00:00
|
|
|
#
|
2013-08-01 15:02:37 +00:00
|
|
|
# spec file for package ghc-HTTP
|
2012-06-06 17:50:37 +00:00
|
|
|
#
|
2015-05-02 10:02:40 +00:00
|
|
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
2012-01-12 15:28:02 +00: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/
|
|
|
|
#
|
|
|
|
|
2013-08-01 15:02:37 +00:00
|
|
|
|
2012-01-12 15:28:02 +00:00
|
|
|
%global pkg_name HTTP
|
|
|
|
|
2013-01-08 16:14:03 +00:00
|
|
|
Name: ghc-HTTP
|
2015-05-02 10:02:40 +00:00
|
|
|
Version: 4000.2.19
|
2013-08-01 15:02:37 +00:00
|
|
|
Release: 0
|
2014-11-06 19:18:59 +00:00
|
|
|
Summary: A library for client-side HTTP
|
2012-02-28 15:52:05 +00:00
|
|
|
License: BSD-3-Clause
|
2014-11-06 19:18:59 +00:00
|
|
|
Group: System/Libraries
|
2013-08-01 15:02:37 +00:00
|
|
|
|
|
|
|
Url: http://hackage.haskell.org/package/%{pkg_name}
|
2012-01-12 15:28:02 +00:00
|
|
|
Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
|
2014-11-06 19:18:59 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
2012-01-12 15:28:02 +00:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
2014-11-06 19:18:59 +00:00
|
|
|
BuildRequires: ghc-rpm-macros
|
|
|
|
# Begin cabal-rpm deps:
|
2012-06-06 17:50:37 +00:00
|
|
|
BuildRequires: ghc-array-devel
|
2014-11-06 19:18:59 +00:00
|
|
|
BuildRequires: ghc-bytestring-devel
|
2012-06-06 17:50:37 +00:00
|
|
|
BuildRequires: ghc-mtl-devel
|
|
|
|
BuildRequires: ghc-network-devel
|
2015-05-02 10:02:40 +00:00
|
|
|
BuildRequires: ghc-network-uri-devel
|
2012-06-06 17:50:37 +00:00
|
|
|
BuildRequires: ghc-old-time-devel
|
|
|
|
BuildRequires: ghc-parsec-devel
|
2014-11-06 19:18:59 +00:00
|
|
|
# End cabal-rpm deps
|
2012-02-28 15:52:05 +00:00
|
|
|
|
2012-01-12 15:28:02 +00:00
|
|
|
%description
|
2014-11-06 19:18:59 +00:00
|
|
|
The HTTP package supports client-side web programming in Haskell. It lets you
|
|
|
|
set up HTTP connections, transmitting requests and processing the responses
|
|
|
|
coming back, all from within the comforts of Haskell. It's dependent on the
|
|
|
|
network package to operate, but other than that, the implementation is all
|
|
|
|
written in Haskell.
|
|
|
|
|
|
|
|
A basic API for issuing single HTTP requests + receiving responses is provided.
|
|
|
|
On top of that, a session-level abstraction is also on offer (the
|
|
|
|
BrowserAction monad); it taking care of handling the management of persistent
|
|
|
|
connections, proxies, state (cookies) and authentication credentials required
|
|
|
|
to handle multi-step interactions with a web server.
|
|
|
|
|
|
|
|
The representation of the bytes flowing across is extensible via the use of a
|
|
|
|
type class, letting you pick the representation of requests and responses that
|
|
|
|
best fits your use. Some pre-packaged, common instances are provided for you
|
|
|
|
(ByteString, String.)
|
|
|
|
# ' Help EMACS syntax highlighting
|
2012-01-12 15:28:02 +00:00
|
|
|
|
2013-08-01 15:02:37 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2014-11-06 19:18:59 +00:00
|
|
|
Group: Development/Libraries/Other
|
|
|
|
Provides: %{name}-static = %{version}-%{release}
|
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2013-08-01 15:02:37 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
2014-11-06 19:18:59 +00:00
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
|
|
|
|
2012-01-12 15:28:02 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
2013-08-01 15:02:37 +00:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
2012-01-12 15:28:02 +00:00
|
|
|
|
2013-08-01 15:02:37 +00:00
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
2012-01-12 15:28:02 +00:00
|
|
|
|
2013-08-01 15:02:37 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc LICENSE
|
2012-01-12 15:28:02 +00:00
|
|
|
|
2013-08-01 15:02:37 +00:00
|
|
|
%files devel -f %{name}-devel.files
|
|
|
|
%defattr(-,root,root,-)
|
2012-01-12 15:28:02 +00:00
|
|
|
|
|
|
|
%changelog
|