diff options
-rw-r--r-- | dev-haskell/http/ChangeLog | 5 | ||||
-rw-r--r-- | dev-haskell/http/metadata.xml | 17 |
2 files changed, 14 insertions, 8 deletions
diff --git a/dev-haskell/http/ChangeLog b/dev-haskell/http/ChangeLog index ef2a92392e7f..31dd636ee69f 100644 --- a/dev-haskell/http/ChangeLog +++ b/dev-haskell/http/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-haskell/http # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/http/ChangeLog,v 1.50 2015/04/04 09:01:33 gienah Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/http/ChangeLog,v 1.51 2015/06/06 11:34:15 jlec Exp $ + + 06 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml: + Add github to remote-id in metadata.xml *http-4000.2.19-r2 (04 Apr 2015) diff --git a/dev-haskell/http/metadata.xml b/dev-haskell/http/metadata.xml index 63a06ffc206d..3c5db3b10143 100644 --- a/dev-haskell/http/metadata.xml +++ b/dev-haskell/http/metadata.xml @@ -5,7 +5,7 @@ <longdescription> 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, + 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 @@ -18,25 +18,28 @@ 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: + Here's an example use: > > do - > rsp <- Network.HTTP.simpleHTTP (getRequest "http://www.haskell.org/") - > -- fetch document and return it (as a 'String'.) + > 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://google.com/" + > request $ getRequest "http://google.com/" > fmap (take 100) (getResponseBody rsp) > Git repository available at <git://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> + <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> </pkgmetadata> |