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


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

    Renamed MissingH.Compression.Inflate to Data.Compression.Inflate

diff --git a/COPYRIGHT b/COPYRIGHT
index 006f8a5..0fa7c22 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -146,7 +146,7 @@ The code was obtained from
 http://cvs.sourceforge.net/viewcvs.py/haskell-libs/libs/crypto/crc32.hs
 
 ----------------------------------------------------
-MissingH.Compression.Inflate is
+Data.Compression.Inflate is
 Copyright 2004 Ian Lynagh <igloo at earth.li>
 Licence: 3 clause BSD.
 
diff --git a/MissingH.cabal b/MissingH.cabal
index 9ccdf79..d1ab375 100644
--- a/MissingH.cabal
+++ b/MissingH.cabal
@@ -41,7 +41,7 @@ Exposed-Modules: MissingH.Str, MissingH.IO, MissingH.IO.Binary, MissingH.List,
   Data.Bits.Utils,
   Data.Hash.CRC32.Posix, Data.Hash.CRC32.GZip,
    Data.Hash.MD5, Data.Hash.MD5.Zord64_HARD,
-  MissingH.Compression.Inflate,
+  Data.Compression.Inflate,
   MissingH.FileArchive.GZip,
   MissingH.Threads.Child, MissingH.Threads.Timeout,
   MissingH.IO.BlockIO,
diff --git a/MissingH/FileArchive/GZip.hs b/MissingH/FileArchive/GZip.hs
index db199ea..e76dd3e 100644
--- a/MissingH/FileArchive/GZip.hs
+++ b/MissingH/FileArchive/GZip.hs
@@ -48,7 +48,7 @@ module MissingH.FileArchive.GZip (
                                  )
 where
 
-import MissingH.Compression.Inflate
+import Data.Compression.Inflate
 import Data.Hash.CRC32.GZip
 import Data.List
 import Data.Bits
diff --git a/debian/copyright b/debian/copyright
index 006f8a5..0fa7c22 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -146,7 +146,7 @@ The code was obtained from
 http://cvs.sourceforge.net/viewcvs.py/haskell-libs/libs/crypto/crc32.hs
 
 ----------------------------------------------------
-MissingH.Compression.Inflate is
+Data.Compression.Inflate is
 Copyright 2004 Ian Lynagh <igloo at earth.li>
 Licence: 3 clause BSD.
 
diff --git a/MissingH/Compression/Inflate.hs b/src/Data/Compression/Inflate.hs
similarity index 99%
rename from MissingH/Compression/Inflate.hs
rename to src/Data/Compression/Inflate.hs
index c1a40d6..2b3579b 100644
--- a/MissingH/Compression/Inflate.hs
+++ b/src/Data/Compression/Inflate.hs
@@ -14,7 +14,7 @@ as described by RFC 1951.
 -}
 
 {- |
-   Module     : MissingH.Compression.Inflate
+   Module     : Data.Compression.Inflate
    Copyright  : Copyright (C) 2004 Ian Lynagh 
    License    : 3-clause BSD
 
@@ -28,7 +28,7 @@ Inflate algorithm implementation
 Copyright (C) 2004 Ian Lynagh
 -}
 
-module MissingH.Compression.Inflate (inflate_string,
+module Data.Compression.Inflate (inflate_string,
                                      inflate_string_remainder,
                                      inflate, Output, Bit,
                                     bits_to_word32) where
diff --git a/testsrc/GZiptest.hs b/testsrc/GZiptest.hs
index 4894f19..c8a1fd8 100644
--- a/testsrc/GZiptest.hs
+++ b/testsrc/GZiptest.hs
@@ -20,7 +20,7 @@ module GZiptest(tests) where
 import Test.HUnit
 import MissingH.FileArchive.GZip
 import MissingH.Path.FilePath
-import MissingH.Compression.Inflate
+import Data.Compression.Inflate
 import MissingH.IO.Binary
 import System.IO
 import MissingH.Either

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list