[Pkg-haskell-commits] [SCM] Debian package for MissingH branch, master, updated. debian/1.1.0.3-3-4-ga1ff8b5
Joey Hess
joeyh at debian.org
Mon Feb 27 15:55:07 UTC 2012
The following commit has been merged in the master branch:
commit a1ff8b516daa41c0c4a1cb9e9f866b12f7f81f46
Author: Joey Hess <joeyh at debian.org>
Date: Tue Feb 14 21:50:35 2012 -0400
update for ghc 7.4
Remove haskell98 from cabal file, and use modules from base instead.
diff --git a/MissingH.cabal b/MissingH.cabal
index fba8610..ad09d17 100644
--- a/MissingH.cabal
+++ b/MissingH.cabal
@@ -89,7 +89,7 @@ Library
ScopedTypeVariables
Build-Depends: network, parsec, base,
- haskell98, mtl, HUnit, regex-compat,
+ mtl, HUnit, regex-compat,
filepath,
hslogger
If flag(splitBase)
diff --git a/debian/changelog b/debian/changelog
index fdd2423..2ccf488 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+missingh (1.1.0.3-5) unstable; urgency=low
+
+ * Sourceful upload to rebuild documentation package
+ * Remove haskell98 from cabal file, and use modules from base instead.
+
+ -- Joey Hess <joeyh at debian.org> Tue, 14 Feb 2012 21:40:26 -0400
+
missingh (1.1.0.3-4) unstable; urgency=low
* s/ghc6/ghc
diff --git a/src/Data/Hash/MD5.lhs b/src/Data/Hash/MD5.lhs
index 44a5ef2..f865724 100644
--- a/src/Data/Hash/MD5.lhs
+++ b/src/Data/Hash/MD5.lhs
@@ -15,9 +15,9 @@
> module Data.Hash.MD5 (md5, md5s, md5i,
> MD5(..), ABCD(..), Zord64, Str(..), BoolList(..), WordList(..)) where
-> import Char
-> import Bits
-> import Word
+> import Data.Char
+> import Data.Bits
+> import Data.Word
Nasty kludge to create a type Zord64 which is really a Word64 but works
diff --git a/src/Data/Hash/MD5/Zord64_HARD.lhs b/src/Data/Hash/MD5/Zord64_HARD.lhs
index bb300c2..a4d7e7e 100644
--- a/src/Data/Hash/MD5/Zord64_HARD.lhs
+++ b/src/Data/Hash/MD5/Zord64_HARD.lhs
@@ -1,8 +1,8 @@
>-- #hide
> module Data.Hash.MD5.Zord64_HARD (Zord64) where
-> import Word
-> import Bits
+> import Data.Word
+> import Data.Bits
> data Zord64 = W64 {lo,hi::Word32} deriving (Eq, Ord, Bounded)
diff --git a/src/Data/MIME/Types.hs b/src/Data/MIME/Types.hs
index a75740f..8719cc4 100644
--- a/src/Data/MIME/Types.hs
+++ b/src/Data/MIME/Types.hs
@@ -45,7 +45,7 @@ module Data.MIME.Types (-- * Creating Lookup Objects
where
import qualified Data.Map as Map
-import Monad
+import Control.Monad
import System.IO
import System.IO.Error
import System.IO.Utils
--
Debian package for MissingH
More information about the Pkg-haskell-commits
mailing list