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


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

    Continuing with renames

diff --git a/MissingH.cabal b/MissingH.cabal
index 0af914c..090e7f8 100644
--- a/MissingH.cabal
+++ b/MissingH.cabal
@@ -6,7 +6,7 @@ Maintainer: John Goerzen <jgoerzen at complete.org>
 Stability: Beta
 Copyright: Copyright (c) 2004-2006 John Goerzen
 Exposed-Modules: MissingH.Str, MissingH.IO, MissingH.IO.Binary, MissingH.List,
-  MissingH.Daemon,
+  System.Daemon,
   MissingH.Parsec,
   MissingH.HUnit,
   MissingH.Email.Mailbox,
@@ -52,7 +52,7 @@ Exposed-Modules: MissingH.Str, MissingH.IO, MissingH.IO.Binary, MissingH.List,
   MissingH.IO.HVIO, MissingH.IO.StatCompat, MissingH.IO.WindowsCompat,
     MissingH.IO.PlafCompat, MissingH.IO.PosixConsts,
   MissingH.Email.Parser,
-  MissingH.Debian, MissingH.Debian.ControlParser,
+  System.Debian, System.Debian.ControlParser,
   MissingH.MIMETypes,
   MissingH.Wash.Mail.Email,
     MissingH.Wash.Mail.EmailConfig,
diff --git a/renameit.sh b/renameit.sh
index 4fe8c77..4bd26c1 100644
--- a/renameit.sh
+++ b/renameit.sh
@@ -44,6 +44,6 @@ do
         sed -i "s,`sedname ${OLDNAME}`,${NEWNAME},g" $FILE
 done
 
-darcs record -m "Renamed ${OLDNAME} to ${NEWNAME}"
+#darcs record -am "Renamed ${OLDNAME} to ${NEWNAME}"
            
 
diff --git a/MissingH/ConfigParser/Parser.hs b/src/Data/ConfigFile/Parser.hs
similarity index 100%
rename from MissingH/ConfigParser/Parser.hs
rename to src/Data/ConfigFile/Parser.hs
diff --git a/MissingH/ConfigParser/Types.hs b/src/Data/ConfigFile/Types.hs
similarity index 100%
rename from MissingH/ConfigParser/Types.hs
rename to src/Data/ConfigFile/Types.hs
diff --git a/MissingH/Daemon.hs b/src/System/Daemon.hs
similarity index 93%
rename from MissingH/Daemon.hs
rename to src/System/Daemon.hs
index 164748d..3b9debe 100644
--- a/MissingH/Daemon.hs
+++ b/src/System/Daemon.hs
@@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 -}
 
 {- |
-   Module     : MissingH.Daemon
+   Module     : System.Daemon
    Copyright  : Copyright (C) 2005 John Goerzen
    License    : GNU GPL, version 2 or above
 
@@ -32,7 +32,7 @@ Written by John Goerzen, jgoerzen\@complete.org
 
 Please note: Most of this module is not compatible with Hugs.
 
-Messages from this module are logged under @MissingH.Daemon at .  See
+Messages from this module are logged under @System.Daemon at .  See
 'MissingH.Logging.Logger' for details.
 
 Based on background
@@ -42,7 +42,7 @@ from <http://www.erlenstar.demon.co.uk/unix/faq_2.html#SEC16> and
 This module is not available on Windows.
 -}
 
-module MissingH.Daemon (
+module System.Daemon (
 
 #ifndef mingw32_HOST_OS
         detachDaemon
@@ -58,7 +58,7 @@ import MissingH.Logging.Logger
 import System.Exit
 
 
-trap = traplogging "MissingH.Daemon" ERROR "detachDaemon"
+trap = traplogging "System.Daemon" ERROR "detachDaemon"
 
 {- | Detach the process from a controlling terminal and run it in the
 background, handling it with standard Unix deamon semantics.
diff --git a/MissingH/Debian.hs b/src/System/Debian.hs
similarity index 95%
rename from MissingH/Debian.hs
rename to src/System/Debian.hs
index 4d696af..1ffda62 100644
--- a/MissingH/Debian.hs
+++ b/src/System/Debian.hs
@@ -17,7 +17,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 -}
 
 {- |
-   Module     : MissingH.Debian
+   Module     : System.Debian
    Copyright  : Copyright (C) 2004 John Goerzen
    License    : GNU GPL, version 2 or above
 
@@ -31,14 +31,14 @@ files and programs.
 Written by John Goerzen, jgoerzen\@complete.org
 -}
 
-module MissingH.Debian (-- * Control or Similar File Utilities
+module System.Debian (-- * Control or Similar File Utilities
                         ControlFile,
                         -- * Version Number Utilities
                         DebVersion, compareDebVersion, checkDebVersion
                        )
 where
 import System.Cmd
-import MissingH.Debian.ControlParser
+import System.Debian.ControlParser
 import System.Cmd.Utils
 import MissingH.Str
 import System.IO.Unsafe
diff --git a/MissingH/Debian/ControlParser.hs b/src/System/Debian/ControlParser.hs
similarity index 96%
rename from MissingH/Debian/ControlParser.hs
rename to src/System/Debian/ControlParser.hs
index e4c6b8c..ed252e8 100644
--- a/MissingH/Debian/ControlParser.hs
+++ b/src/System/Debian/ControlParser.hs
@@ -17,7 +17,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 -}
 
 {- |
-   Module     : MissingH.Debian.ControlParser
+   Module     : System.Debian.ControlParser
    Copyright  : Copyright (C) 2004 John Goerzen
    License    : GNU GPL, version 2 or above
 
@@ -31,7 +31,7 @@ files and programs.
 Written by John Goerzen, jgoerzen\@complete.org
 -}
 
-module MissingH.Debian.ControlParser(control, depPart)
+module System.Debian.ControlParser(control, depPart)
     where
 import Text.ParserCombinators.Parsec
 import MissingH.Str

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list