summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-haskell/http/ChangeLog5
-rw-r--r--dev-haskell/http/metadata.xml17
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&#39;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&#39;s an example use:
+ Here's an example use:
&gt;
&gt; do
- &gt; rsp &lt;- Network.HTTP.simpleHTTP (getRequest &quot;http://www.haskell.org/&quot;)
- &gt; -- fetch document and return it (as a &#39;String&#39;.)
+ &gt; rsp &lt;- Network.HTTP.simpleHTTP (getRequest "http://www.haskell.org/")
+ &gt; -- fetch document and return it (as a 'String'.)
&gt; fmap (take 100) (getResponseBody rsp)
&gt;
&gt; do
&gt; rsp &lt;- Network.Browser.browse $ do
&gt; setAllowRedirects True -- handle HTTP redirects
- &gt; request $ getRequest &quot;http://google.com/&quot;
+ &gt; request $ getRequest "http://google.com/"
&gt; fmap (take 100) (getResponseBody rsp)
&gt;
Git repository available at &lt;git://github.com/haskell/HTTP.git&gt;
</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>