[Pkg-haskell-commits] darcs: haskell-fb: staging conduit 1.1 transition

Clint Adams clint at debian.org
Tue Jun 10 13:56:54 UTC 2014


Tue Jun 10 13:54:37 UTC 2014  Clint Adams <clint at debian.org>
  * staging conduit 1.1 transition

    M ./changelog -1 +7
    M ./control -12 +6
    R ./patches/newer-data-default.diff
    R ./patches/series

Tue Jun 10 13:54:37 UTC 2014  Clint Adams <clint at debian.org>
  * staging conduit 1.1 transition
diff -rN -u old-haskell-fb/changelog new-haskell-fb/changelog
--- old-haskell-fb/changelog	2014-06-10 13:56:54.225868632 +0000
+++ new-haskell-fb/changelog	2014-06-10 13:56:54.229868631 +0000
@@ -1,6 +1,12 @@
+haskell-fb (1.0.1-1) unstable; urgency=medium
+
+  * New upstream version.
+
+ -- Clint Adams <clint at debian.org>  Fri, 06 Jun 2014 23:15:19 -0400
+
 haskell-fb (0.15.2-2) unstable; urgency=medium
 
-  * Fix dependency on data-default-instances-base 
+  * Fix dependency on data-default-instances-base
 
  -- Joachim Breitner <nomeata at debian.org>  Fri, 07 Mar 2014 12:43:27 +0100
 
diff -rN -u old-haskell-fb/control new-haskell-fb/control
--- old-haskell-fb/control	2014-06-10 13:56:54.225868632 +0000
+++ new-haskell-fb/control	2014-06-10 13:56:54.229868631 +0000
@@ -14,9 +14,6 @@
   , libghc-attoparsec-dev (>= 0.10.4)
   , libghc-attoparsec-dev (<< 0.12)
   , libghc-attoparsec-prof
-  , libghc-attoparsec-conduit-dev (>= 1.0)
-  , libghc-attoparsec-conduit-dev (<< 1.1)
-  , libghc-attoparsec-conduit-prof
   , libghc-base16-bytestring-dev (>= 0.1)
   , libghc-base16-bytestring-prof
   , libghc-base64-bytestring-dev (>= 0.1.1)
@@ -24,8 +21,8 @@
   , libghc-cereal-dev (>= 0.3)
   , libghc-cereal-dev (<< 0.5)
   , libghc-cereal-prof
-  , libghc-conduit-dev (>= 1.0)
-  , libghc-conduit-dev (<< 1.1)
+  , libghc-conduit-dev (>= 1.1)
+  , libghc-conduit-dev (<< 1.2)
   , libghc-conduit-prof
   , libghc-crypto-api-dev (>= 0.11)
   , libghc-crypto-api-dev (<< 0.14)
@@ -35,12 +32,10 @@
   , libghc-cryptohash-cryptoapi-dev (>= 0.1)
   , libghc-cryptohash-cryptoapi-dev (<< 0.2)
   , libghc-cryptohash-cryptoapi-prof
-  , libghc-data-default-class-dev
-  , libghc-data-default-class-prof
-  , libghc-data-default-instances-base-dev
-  , libghc-data-default-instances-base-prof
+  , libghc-data-default-dev
+  , libghc-data-default-prof
   , libghc-http-conduit-dev (>= 2.0)
-  , libghc-http-conduit-dev (<< 2.1)
+  , libghc-http-conduit-dev (<< 2.2)
   , libghc-http-conduit-prof
   , libghc-http-types-dev
   , libghc-http-types-prof
@@ -57,7 +52,7 @@
   , libghc-text-dev (<< 1.2)
   , libghc-text-prof
   , libghc-transformers-dev (>= 0.2)
-  , libghc-transformers-dev (<< 0.4)
+  , libghc-transformers-dev (<< 0.5)
   , libghc-transformers-prof
   , libghc-transformers-base-dev
   , libghc-transformers-base-prof
@@ -70,7 +65,6 @@
 Build-Depends-Indep: ghc-doc
   , libghc-aeson-doc
   , libghc-attoparsec-doc
-  , libghc-attoparsec-conduit-doc
   , libghc-base16-bytestring-doc
   , libghc-base64-bytestring-doc
   , libghc-cereal-doc
diff -rN -u old-haskell-fb/patches/newer-data-default.diff new-haskell-fb/patches/newer-data-default.diff
--- old-haskell-fb/patches/newer-data-default.diff	2014-06-10 13:56:54.225868632 +0000
+++ new-haskell-fb/patches/newer-data-default.diff	1970-01-01 00:00:00.000000000 +0000
@@ -1,35 +0,0 @@
---- a/src/Facebook/Base.hs
-+++ b/src/Facebook/Base.hs
-@@ -15,7 +15,7 @@
- import Control.Monad (mzero)
- import Control.Monad.IO.Class (MonadIO)
- import Data.ByteString.Char8 (ByteString)
--import Data.Default (def)
-+import Data.Default.Class (def)
- import Data.Text (Text)
- import Data.Typeable (Typeable)
- 
---- a/fb.cabal
-+++ b/fb.cabal
-@@ -72,7 +72,8 @@
-     , monad-control
-     , resourcet
-     , conduit              == 1.0.*
--    , data-default
-+    , data-default-class
-+    , data-default-instances-base
-     , http-types
-     , http-conduit         == 2.0.*
-     , attoparsec           >= 0.10.4  && < 0.12
---- a/src/Facebook/TestUsers.hs
-+++ b/src/Facebook/TestUsers.hs
-@@ -14,7 +14,8 @@
- import Control.Applicative ((<$>), (<*>))
- import Control.Monad (unless, mzero)
- import Control.Monad.Trans.Control (MonadBaseControl)
--import Data.Default
-+import Data.Default.Class
-+import Data.Default.Instances.Base ()
- import Data.Text
- import Data.Time (UTCTime(..), Day(..))
- import Data.Typeable (Typeable)
diff -rN -u old-haskell-fb/patches/series new-haskell-fb/patches/series
--- old-haskell-fb/patches/series	2014-06-10 13:56:54.225868632 +0000
+++ new-haskell-fb/patches/series	1970-01-01 00:00:00.000000000 +0000
@@ -1 +0,0 @@
-newer-data-default.diff




More information about the Pkg-haskell-commits mailing list