[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:07 UTC 2010


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

    Renamed MissingH.Checksum.CRC32.Posix to Data.Hash.CRC32.Posix

diff --git a/COPYRIGHT b/COPYRIGHT
index a85540e..f2dd729 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -137,7 +137,7 @@ at 3rd-party-licenses/LGPL-2.1 in the source distribution.
 Pursuant to the terms of the LGPL, you may consider this code to fall
 under the GPL as part of the whole MissingH work.
 ----------------------------------------------------
-MissingH.Checksum.CRC32.Posix is
+Data.Hash.CRC32.Posix is
 (C) 2002 HardCore SoftWare, Doug Hoyte
 and is "distributed under the terms of the GNU GPL."  This license is
 the same as the main license for MissingH.
diff --git a/MissingH.cabal b/MissingH.cabal
index d66db80..779579a 100644
--- a/MissingH.cabal
+++ b/MissingH.cabal
@@ -39,7 +39,7 @@ Exposed-Modules: MissingH.Str, MissingH.IO, MissingH.IO.Binary, MissingH.List,
     MissingH.ConfigParser.Parser,
     MissingH.ConfigParser.Lexer,
   Data.Bits.Utils,
-  MissingH.Checksum.CRC32.Posix, Data.Hash.CRC32.GZip,
+  Data.Hash.CRC32.Posix, Data.Hash.CRC32.GZip,
    MissingH.Checksum.MD5, MissingH.Checksum.MD5.Zord64_HARD,
   MissingH.Compression.Inflate,
   MissingH.FileArchive.GZip,
diff --git a/debian/copyright b/debian/copyright
index a85540e..f2dd729 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -137,7 +137,7 @@ at 3rd-party-licenses/LGPL-2.1 in the source distribution.
 Pursuant to the terms of the LGPL, you may consider this code to fall
 under the GPL as part of the whole MissingH work.
 ----------------------------------------------------
-MissingH.Checksum.CRC32.Posix is
+Data.Hash.CRC32.Posix is
 (C) 2002 HardCore SoftWare, Doug Hoyte
 and is "distributed under the terms of the GNU GPL."  This license is
 the same as the main license for MissingH.
diff --git a/MissingH/Checksum/CRC32/Posix.hs b/src/Data/Hash/CRC32/Posix.hs
similarity index 98%
rename from MissingH/Checksum/CRC32/Posix.hs
rename to src/Data/Hash/CRC32/Posix.hs
index e124397..d2ad906 100644
--- a/MissingH/Checksum/CRC32/Posix.hs
+++ b/src/Data/Hash/CRC32/Posix.hs
@@ -17,7 +17,7 @@
 -- 	$Id: crc32.hs,v 1.2 2003/03/24 00:08:55 eris Exp $	
 
 {- |
-   Module     : MissingH.Checksum.CRC32.Posix
+   Module     : Data.Hash.CRC32.Posix
    Copyright  : Copyright (C) 2002 HardCore SoftWare, Doug Hoyte
    License    : GNU GPL
 
@@ -38,7 +38,7 @@ Modified December, 2004 by John Goerzen:
  * Updated things that didn't compile any more
 -}
 
-module MissingH.Checksum.CRC32.Posix where
+module Data.Hash.CRC32.Posix where
 
 import Data.Array
 import Data.Bits
diff --git a/testsrc/CRC32POSIXtest.hs b/testsrc/CRC32POSIXtest.hs
index 254e761..394ef84 100644
--- a/testsrc/CRC32POSIXtest.hs
+++ b/testsrc/CRC32POSIXtest.hs
@@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 module CRC32POSIXtest(tests) where
 import Test.HUnit
-import MissingH.Checksum.CRC32.Posix
+import Data.Hash.CRC32.Posix
 
 test_crc32 =
     let f msg inp exp = TestLabel msg $ TestCase $ assertEqual "" exp (crc32 inp) in

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list