[Pkg-haskell-commits] darcs: haskell-http-client: New upstream version 0.4.13.

Clint Adams clint at debian.org
Sat Jun 27 00:08:31 UTC 2015


Sat Jun 27 00:08:19 UTC 2015  Clint Adams <clint at debian.org>
  * New upstream version 0.4.13.

    M ./changelog +6
    M ./control -1 +1
    M ./patches/disable-external-network-connection-test.diff -6 +12

Sat Jun 27 00:08:19 UTC 2015  Clint Adams <clint at debian.org>
  * New upstream version 0.4.13.
diff -rN -u old-haskell-http-client/changelog new-haskell-http-client/changelog
--- old-haskell-http-client/changelog	2015-06-27 00:08:31.124542125 +0000
+++ new-haskell-http-client/changelog	2015-06-27 00:08:31.124542125 +0000
@@ -1,3 +1,9 @@
+haskell-http-client (0.4.13-1) unstable; urgency=medium
+
+  * New upstream version.
+
+ -- Clint Adams <clint at debian.org>  Fri, 26 Jun 2015 19:33:15 -0400
+
 haskell-http-client (0.3.8.2-5) unstable; urgency=medium
 
   * Rebuild due to haskell-devscripts bug affecting the previous
diff -rN -u old-haskell-http-client/control new-haskell-http-client/control
--- old-haskell-http-client/control	2015-06-27 00:08:31.124542125 +0000
+++ new-haskell-http-client/control	2015-06-27 00:08:31.124542125 +0000
@@ -64,7 +64,7 @@
   , libghc-text-doc
   , libghc-random-doc
   , libghc-streaming-commons-doc
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Homepage: http://hackage.haskell.org/package/http-client
 Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-http-client
 Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-http-client
diff -rN -u old-haskell-http-client/patches/disable-external-network-connection-test.diff new-haskell-http-client/patches/disable-external-network-connection-test.diff
--- old-haskell-http-client/patches/disable-external-network-connection-test.diff	2015-06-27 00:08:31.124542125 +0000
+++ new-haskell-http-client/patches/disable-external-network-connection-test.diff	2015-06-27 00:08:31.128542125 +0000
@@ -1,14 +1,20 @@
 --- a/test/Network/HTTP/ClientSpec.hs
 +++ b/test/Network/HTTP/ClientSpec.hs
-@@ -55,11 +55,6 @@
+@@ -11,16 +11,4 @@
+ main = hspec spec
  
  spec :: Spec
- spec = describe "Client" $ do
+-spec = describe "Client" $ do
 -    it "works" $ withSocketsDo $ do
--        req <- parseUrl "http://www.yesodweb.com/"
+-        req <- parseUrl "http://httpbin.org/"
 -        man <- newManager defaultManagerSettings
 -        res <- httpLbs req man
 -        responseStatus res `shouldBe` status200
-     describe "fails on empty hostnames #40" $ do
-         let test url = it url $ do
-                 req <- parseUrl url
+-
+-    it "managerModifyRequest" $ do
+-        let modify req = return req { port = 80 }
+-            settings = defaultManagerSettings { managerModifyRequest = modify }
+-        withManager settings $ \man -> do
+-            res <- httpLbs "http://httpbin.org:1234" man
+-            responseStatus res `shouldBe` status200
++spec = return ()




More information about the Pkg-haskell-commits mailing list