[Pkg-haskell-commits] [SCM] haskell-testpack branch, master, updated. debian/1.0.2-1-4-gb0d6b36

John Goerzen jgoerzen at complete.org
Fri Apr 23 15:17:08 UTC 2010


The following commit has been merged in the master branch:
commit 22352a41eddffa090e66812bd32493a4e0cf9e27
Author: John Goerzen <jgoerzen at complete.org>
Date:   Sun Dec 3 09:23:07 2006 +0100

    Renamed MissingH.Checksum.MD5 to Data.Hash.MD5

diff --git a/COPYRIGHT b/COPYRIGHT
index f2dd729..006f8a5 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -160,7 +160,7 @@ The code was obtained from
 http://urchin.earth.li/darcs/ian/inflate/Inflate.lhs
 
 ----------------------------------------------------
-MissingH.Checksum.MD5* is
+Data.Hash.MD5* is
 Copyright 2001 Ian Lynagh <igloo at earth.li>
 Licence: GPL or 3 clause BSD
 
diff --git a/MissingH.cabal b/MissingH.cabal
index 779579a..6c10b1a 100644
--- a/MissingH.cabal
+++ b/MissingH.cabal
@@ -40,7 +40,7 @@ Exposed-Modules: MissingH.Str, MissingH.IO, MissingH.IO.Binary, MissingH.List,
     MissingH.ConfigParser.Lexer,
   Data.Bits.Utils,
   Data.Hash.CRC32.Posix, Data.Hash.CRC32.GZip,
-   MissingH.Checksum.MD5, MissingH.Checksum.MD5.Zord64_HARD,
+   Data.Hash.MD5, Data.Hash.MD5.Zord64_HARD,
   MissingH.Compression.Inflate,
   MissingH.FileArchive.GZip,
   MissingH.Threads.Child, MissingH.Threads.Timeout,
diff --git a/MissingH/Checksum/MD5/Zord64_HARD.lhs b/MissingH/Checksum/MD5/Zord64_HARD.lhs
index ae8c7c0..bb300c2 100644
--- a/MissingH/Checksum/MD5/Zord64_HARD.lhs
+++ b/MissingH/Checksum/MD5/Zord64_HARD.lhs
@@ -1,5 +1,5 @@
 >-- #hide
-> module MissingH.Checksum.MD5.Zord64_HARD (Zord64) where
+> module Data.Hash.MD5.Zord64_HARD (Zord64) where
 
 > import Word
 > import Bits
diff --git a/debian/copyright b/debian/copyright
index f2dd729..006f8a5 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -160,7 +160,7 @@ The code was obtained from
 http://urchin.earth.li/darcs/ian/inflate/Inflate.lhs
 
 ----------------------------------------------------
-MissingH.Checksum.MD5* is
+Data.Hash.MD5* is
 Copyright 2001 Ian Lynagh <igloo at earth.li>
 Licence: GPL or 3 clause BSD
 
diff --git a/MissingH/Checksum/MD5.lhs b/src/Data/Hash/MD5.lhs
similarity index 99%
rename from MissingH/Checksum/MD5.lhs
rename to src/Data/Hash/MD5.lhs
index 5bf7936..44a5ef2 100644
--- a/MissingH/Checksum/MD5.lhs
+++ b/src/Data/Hash/MD5.lhs
@@ -1,5 +1,5 @@
 >{- |
->   Module     : MissingH.Checksum.MD5
+>   Module     : Data.Hash.MD5
 >   Copyright  : Copyright (C) 2001 Ian Lynagh 
 >   License    : Either BSD or GPL
 >
@@ -12,7 +12,7 @@
 >Written by Ian Lynagh, igloo\@earth.li
 >-}
 
-> module MissingH.Checksum.MD5 (md5,  md5s,  md5i,
+> module Data.Hash.MD5 (md5,  md5s,  md5i,
 >             MD5(..), ABCD(..), Zord64, Str(..), BoolList(..), WordList(..)) where
 
 > import Char
@@ -29,7 +29,7 @@ Also need a rotate left function that actually works.
 > type Zord64 = Word64
 #else
 
-> import MissingH.Checksum.MD5.Zord64_HARD
+> import Data.Hash.MD5.Zord64_HARD
  
 > rotL :: Word32 -> Rotation -> Word32
 > rotL a s = shiftL a s .|. shiftL a (s-32)

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list