[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 14:42:57 UTC 2010
The following commit has been merged in the master branch:
commit 204c4ba9262cba8021f9006072dc60ac3d6d6834
Author: John Goerzen <jgoerzen at complete.org>
Date: Thu Oct 7 06:55:56 2004 +0100
Renamed modules
Keywords:
(jgoerzen at complete.org--projects/missingh--head--1.0--patch-33)
diff --git a/ChangeLog b/ChangeLog
index 0964265..aced661 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,27 @@
# arch-tag: automatic-ChangeLog--jgoerzen at complete.org--projects/missingh--head--1.0
#
+2004-10-07 00:55:56 GMT John Goerzen <jgoerzen at complete.org> patch-33
+
+ Summary:
+ Renamed modules
+ Revision:
+ missingh--head--1.0--patch-33
+
+
+ modified files:
+ ChangeLog README Setup.description libsrc/MissingH/IO.hs
+ libsrc/MissingH/List.hs libsrc/MissingH/Str.hs
+
+ renamed files:
+ libsrc/MissingH/IOutil.hs
+ ==> libsrc/MissingH/IO.hs
+ libsrc/MissingH/Listutil.hs
+ ==> libsrc/MissingH/List.hs
+ libsrc/MissingH/Strutil.hs
+ ==> libsrc/MissingH/Str.hs
+
+
2004-10-06 03:17:23 GMT John Goerzen <jgoerzen at complete.org> patch-32
Summary:
diff --git a/Setup.description b/Setup.description
index bb8446f..c8af6f4 100644
--- a/Setup.description
+++ b/Setup.description
@@ -5,5 +5,5 @@ License: GPL
Maintainer: John Goerzen <jgoerzen at complete.org>
Stability: Alpha
Copyright: Copyright (c) 2004 John Goerzen
-Modules: MissingH.Listutil, MissingH.Strutil, MissingH.IOutil
+Modules: MissingH.List, MissingH.Str, MissingH.IO
HS-Source-Dir: libsrc
diff --git a/libsrc/MissingH/IOutil.hs b/libsrc/MissingH/IO.hs
similarity index 99%
rename from libsrc/MissingH/IOutil.hs
rename to libsrc/MissingH/IO.hs
index dd7c106..e4bb99c 100644
--- a/libsrc/MissingH/IOutil.hs
+++ b/libsrc/MissingH/IO.hs
@@ -21,7 +21,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Written by John Goerzen, jgoerzen\@complete.org
-}
-module MissingH.IOutil(-- * Entire File\/Handle Utilities
+module MissingH.IO(-- * Entire File\/Handle Utilities
-- ** Opened Handle Data Copying
hLineCopy, lineCopy,
hBlockCopy, blockCopy,
diff --git a/libsrc/MissingH/Listutil.hs b/libsrc/MissingH/List.hs
similarity index 84%
rename from libsrc/MissingH/Listutil.hs
rename to libsrc/MissingH/List.hs
index 2d432fc..2cde196 100644
--- a/libsrc/MissingH/Listutil.hs
+++ b/libsrc/MissingH/List.hs
@@ -19,21 +19,21 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
{- | This module provides various helpful utilities for dealing with lists.
Written by John Goerzen, jgoerzen\@complete.org
--}
-
-module MissingH.Listutil(-- * Tests
- startswith, endswith,
- -- * Association List Utilities
- {- | These functions are designed to augment the
- association list functions in "Data.List" and
- provide an interface similar to "Data.FiniteMap"
- for association lists. -}
- addToAL, delFromAL,
- -- * Conversions
- split, join, genericJoin, trunc,
- -- -- * Sub-List Selection
- -- sub,
- ) where
+n-}
+
+module MissingH.List(-- * Tests
+ startswith, endswith,
+ -- * Association List Utilities
+ {- | These functions are designed to augment the
+ association list functions in "Data.List" and
+ provide an interface similar to "Data.FiniteMap"
+ for association lists. -}
+ addToAL, delFromAL,
+ -- * Conversions
+ split, join, genericJoin, trunc,
+ -- -- * Sub-List Selection
+ -- sub,
+ ) where
import Data.List(intersperse, concat, isPrefixOf, isSuffixOf)
import IO
import System.IO.Unsafe
diff --git a/libsrc/MissingH/Strutil.hs b/libsrc/MissingH/Str.hs
similarity index 91%
rename from libsrc/MissingH/Strutil.hs
rename to libsrc/MissingH/Str.hs
index e05aef1..4bcd381 100644
--- a/libsrc/MissingH/Strutil.hs
+++ b/libsrc/MissingH/Str.hs
@@ -21,18 +21,18 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Written by John Goerzen, jgoerzen\@complete.org
-}
-module MissingH.Strutil(-- * Whitespace Removal
+module MissingH.Str(-- * Whitespace Removal
strip, lstrip, rstrip,
-- * Tests
-- | Note: These functions are aliases for functions
- -- in "MissingH.Listutil".
+ -- in "MissingH.List".
startswith, endswith,
-- * Conversions
-- | Note: these functions are aliases for functions
- -- in "MissingH.Listutil".
+ -- in "MissingH.List".
join, split, trunc
) where
-import MissingH.Listutil(startswith, endswith, join, split, trunc)
+import MissingH.List(startswith, endswith, join, split, trunc)
wschars = " \t\r\n"
--
haskell-testpack
More information about the Pkg-haskell-commits
mailing list