diff options
author | Mark Wright <gienah@gentoo.org> | 2022-07-23 21:46:09 +1000 |
---|---|---|
committer | Mark Wright <gienah@gentoo.org> | 2022-07-23 22:03:20 +1000 |
commit | cec856cb6e99fb0bb31cba9d6c5894885c69de15 (patch) | |
tree | 7d78f31ffac838592e6cf664d48b1e37f45b60af /dev-haskell/http/metadata.xml | |
parent | dev-qt/qtsvg: Bump to QT5_KDEPATCHSET_REV=2 (diff) | |
download | gentoo-cec856cb6e99fb0bb31cba9d6c5894885c69de15.tar.gz gentoo-cec856cb6e99fb0bb31cba9d6c5894885c69de15.tar.bz2 gentoo-cec856cb6e99fb0bb31cba9d6c5894885c69de15.zip |
dev-haskell/http: Bump to 4000.3.16 and 4000.4.1
Closes: https://bugs.gentoo.org/860228
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Mark Wright <gienah@gentoo.org>
Diffstat (limited to 'dev-haskell/http/metadata.xml')
-rw-r--r-- | dev-haskell/http/metadata.xml | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/dev-haskell/http/metadata.xml b/dev-haskell/http/metadata.xml index b45d3251d695..35fde4e13547 100644 --- a/dev-haskell/http/metadata.xml +++ b/dev-haskell/http/metadata.xml @@ -10,19 +10,19 @@ 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/") @@ -35,13 +35,9 @@ > request $ getRequest "https://google.com/" > fmap (take 100) (getResponseBody rsp) > - + Git repository available at <https://github.com/haskell/HTTP.git> </longdescription> - <use> - <flag name="conduit10">Use version 1.0.x or below of the conduit package (for the test suite).</flag> - <flag name="network-uri">Get Network.URI from the network-uri package.</flag> - </use> <upstream> <remote-id type="github">haskell/HTTP</remote-id> </upstream> |