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


The following commit has been merged in the master branch:
commit 8c24d64504f3e2065a2db13eab5377489d9bc03e
Author: John Goerzen <jgoerzen at complete.org>
Date:   Sun Dec 3 11:21:57 2006 +0100

    Renamed MissingH.FileArchive.GZip to System.FileArchive.GZip

diff --git a/MissingH.cabal b/MissingH.cabal
index 7ad9b1d..a9b2f15 100644
--- a/MissingH.cabal
+++ b/MissingH.cabal
@@ -42,7 +42,7 @@ Exposed-Modules: Data.String, System.IO, System.IO.Binary, Data.List.Utils,
   Data.Hash.CRC32.Posix, Data.Hash.CRC32.GZip,
    Data.Hash.MD5, Data.Hash.MD5.Zord64_HARD,
   Data.Compression.Inflate,
-  MissingH.FileArchive.GZip,
+  System.FileArchive.GZip,
   Control.Concurrent.Thread.Utils.Child, Control.Concurrent.Thread.Utils.Timeout,
   System.IO.BlockIO,
   System.IO.HVFS,
diff --git a/MissingH/FileArchive/GZip.hs b/src/System/FileArchive/GZip.hs
similarity index 99%
rename from MissingH/FileArchive/GZip.hs
rename to src/System/FileArchive/GZip.hs
index e76dd3e..fa0e6f4 100644
--- a/MissingH/FileArchive/GZip.hs
+++ b/src/System/FileArchive/GZip.hs
@@ -17,7 +17,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 -}
 
 {- |
-   Module     : MissingH.FileArchive.GZip
+   Module     : System.FileArchive.GZip
    Copyright  : Copyright (C) 2004 John Goerzen
    License    : GNU GPL, version 2 or above
 
@@ -31,7 +31,7 @@ Copyright (c) 2004 John Goerzen, jgoerzen\@complete.org
 
 The GZip format is described in RFC1952.
 -}
-module MissingH.FileArchive.GZip (
+module System.FileArchive.GZip (
                                   -- * GZip Files
                                   -- $gzipfiles
 
diff --git a/testsrc/GZiptest.hs b/testsrc/GZiptest.hs
index d4e0228..927056f 100644
--- a/testsrc/GZiptest.hs
+++ b/testsrc/GZiptest.hs
@@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 module GZiptest(tests) where
 import Test.HUnit
-import MissingH.FileArchive.GZip
+import System.FileArchive.GZip
 import System.Path.FilePath
 import Data.Compression.Inflate
 import System.IO.Binary
@@ -32,7 +32,7 @@ mf fn exp conf = TestLabel fn $ TestCase $
                         assertEqual "" exp (conf c)
 
 {-
-import MissingH.FileArchive.GZip
+import System.FileArchive.GZip
 import System.IO
 import Data.Either.Utils
 

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list