Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ghc-HTTP-4000.3.14-bp153.1.2 RPM for armv7hl

From OpenSuSE Ports Leap 15.3 for armv7hl

Name: ghc-HTTP Distribution: SUSE Linux Enterprise 15 SP3
Version: 4000.3.14 Vendor: openSUSE
Release: bp153.1.2 Build date: Fri Mar 19 01:15:30 2021
Group: Unspecified Build host: armbuild13
Size: 1135899 Source RPM: ghc-HTTP-4000.3.14-bp153.1.2.src.rpm
Packager: https://bugs.opensuse.org
Url: https://hackage.haskell.org/package/HTTP
Summary: A library for client-side HTTP
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').

Here's an example use:

> > do > rsp <- Network.HTTP.simpleHTTP (getRequest "http://www.haskell.org/")
> -- fetch document and return it (as a 'String'.) > fmap (take 100)
(getResponseBody rsp) > > do > (_, rsp) > <- Network.Browser.browse $ do >
setAllowRedirects True -- handle HTTP redirects > request $ getRequest
"http://www.haskell.org/" > return (take 100 (rspBody rsp))

__Note:__ This package does not support HTTPS connections. If you need HTTPS,
take a look at the following packages:

* <http://hackage.haskell.org/package/http-streams http-streams>

* <http://hackage.haskell.org/package/http-client http-client> (in combination
with <http://hackage.haskell.org/package/http-client-tls http-client-tls>)

* <http://hackage.haskell.org/package/req req>

* <http://hackage.haskell.org/package/wreq wreq>.

Provides

Requires

License

BSD-3-Clause

Changelog

* Thu May 07 2020 Peter Simons <psimons@suse.com>
  - Update Cabal file to get more accurate dependency information.
* Fri Feb 28 2020 Peter Simons <psimons@suse.com>
  - Update Cabal build information for more accurate dependencies.
* Fri Nov 08 2019 Peter Simons <psimons@suse.com>
  - Drop obsolete group attributes.
* Tue Jun 18 2019 psimons@suse.com
  - Update HTTP to version 4000.3.14.
    Upstream has not updated the file "CHANGES" since the last
    release.
* Tue Jun 11 2019 Peter Simons <psimons@suse.com>
  - Update Cabal file for more accurate build dependencies.
* Mon Mar 18 2019 psimons@suse.com
  - Update HTTP to version 4000.3.13.
    Upstream has not updated the file "CHANGES" since the last
    release.
* Fri Oct 19 2018 Peter Simons <psimons@suse.com>
  - Update Cabal build instructions to support ghc-8.6.1.
* Wed Jul 18 2018 psimons@suse.com
  - Cosmetic: replace tabs with blanks, strip trailing white space,
    and update copyright headers with spec-cleaner.
* Fri Jul 13 2018 psimons@suse.com
  - Update HTTP to version 4000.3.12.
    Upstream has not updated the file "CHANGES" since the last
    release.
* Mon May 14 2018 psimons@suse.com
  - Update HTTP to version 4000.3.11.
    Upstream does not provide a changelog.
* Thu Aug 03 2017 psimons@suse.com
  - Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
* Mon May 22 2017 psimons@suse.com
  - Update to version 4000.3.7 with cabal2obs.
* Mon Mar 27 2017 psimons@suse.com
  - Update to version 4000.3.6 with cabal2obs.
* Mon Jan 30 2017 psimons@suse.com
  - Update to version 4000.3.5 revision 2 with cabal2obs.
* Sun Jan 08 2017 psimons@suse.com
  - Update to version 4000.3.4 with cabal2obs.
* Sun Jul 10 2016 psimons@suse.com
  - Update to version 4000.3.3 revision 0 with cabal2obs.
* Thu Feb 11 2016 mimi.vx@gmail.com
  - update to 4000.3.3
* Sun Jan 24 2016 mimi.vx@gmail.com
  - update to 4000.3.2
    * If the URI contains "user:pass@" part, use it for Basic Authorization
    * Add a test harness.
    * Don't leak a socket when getHostAddr throws an exception.
    * Send cookies in request format, not response format.
    * Moved BrowserAction to be a StateT IO, with instances for
    Applicative, MonadIO, MonadState.
    * Add method to control size of connection pool.
    * Consider both host and port when reusing connections.
    * Handle response code 304 "not modified" properly.
    * Fix digest authentication by fixing md5 output string rep.
    * Make the default user agent string follow the package version.
    * Document lack of HTTPS support and fail when clients try
    to use it instead of silently falling back to HTTP.
    * Add helper to set the request type and body.
* Fri Jan 01 2016 mimi.vx@gmail.com
  - update to 4000.2.23
* Mon Dec 07 2015 mimi.vx@gmail.com
  - update to 4000.2.22
* Sun Nov 29 2015 mimi.vx@gmail.com
  - update to 4000.2.21
* Sun Jun 28 2015 mimi.vx@gmail.com
  - update to 4000.2.20
    * If the URI contains "user:pass@" part, use it for Basic Authorization
    * Add a test harness.
    * Don't leak a socket when getHostAddr throws an exception.
    * Send cookies in request format, not response format.
    * Moved BrowserAction to be a StateT IO, with instances for
    Applicative, MonadIO, MonadState.
    * Add method to control size of connection pool.
    * Consider both host and port when reusing connections.
    * Handle response code 304 "not modified" properly.
    * Fix digest authentication by fixing md5 output string rep.
    * Make the default user agent string follow the package version.
    * Document lack of HTTPS support and fail when clients try
    to use it instead of silently falling back to HTTP.
    * Add helper to set the request type and body.
* Sat Apr 11 2015 mimi.vx@gmail.com
  - update to 4000.2.19
    * no upstream changelog

Files

/usr/lib/ghc-8.10.4/HTTP-4000.3.14
/usr/lib/ghc-8.10.4/HTTP-4000.3.14/libHSHTTP-4000.3.14-4mqFCZTrE5ZAXjs8VkPEMw-ghc8.10.4.so
/usr/share/licenses/ghc-HTTP
/usr/share/licenses/ghc-HTTP/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 16:43:41 2024