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


The following commit has been merged in the master branch:
commit 09622496b33ef48260908635e26dc4dc0dd011a8
Author: John Goerzen <jgoerzen at complete.org>
Date:   Fri Oct 8 19:17:53 2004 +0100

    Fixed Makefile
    
    
    Keywords:
    
    
    (jgoerzen at complete.org--projects/missingh--head--1.0--patch-52)

diff --git a/ChangeLog b/ChangeLog
index 82ed175..e4dd02e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,23 @@
 # arch-tag: automatic-ChangeLog--jgoerzen at complete.org--projects/missingh--head--1.0
 #
 
+2004-10-08 13:17:53 GMT	John Goerzen <jgoerzen at complete.org>	patch-52
+
+    Summary:
+      Fixed Makefile
+    Revision:
+      missingh--head--1.0--patch-52
+
+    Keywords: 
+    
+
+    new files:
+     libsrc/MissingH/Logging/Logger.hs
+
+    modified files:
+     ChangeLog Makefile
+
+
 2004-10-08 03:33:39 GMT	John Goerzen <jgoerzen at complete.org>	patch-51
 
     Summary:
diff --git a/Makefile b/Makefile
index e04e09d..8c951ec 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@ libmissingH.a: $(OBJS)
 	ar q libmissingH.a $(OBJS)
 
 %.o: %.hs
-	ghc -ilibsrc -c -o $@ $<
+	ghc -ilibsrc --make `echo $< | sed -e s,libsrc/,, -e s,.hs$$,, -e s,/,.,g`
 
 doc:
 	-rm -rf html
diff --git a/testsrc/IOtest.hs b/libsrc/MissingH/Logging/Logger.hs
similarity index 69%
copy from testsrc/IOtest.hs
copy to libsrc/MissingH/Logging/Logger.hs
index ef23d84..216a48b 100644
--- a/testsrc/IOtest.hs
+++ b/libsrc/MissingH/Logging/Logger.hs
@@ -1,4 +1,4 @@
-{- arch-tag: IO tests main file
+{- arch-tag: Logger support
 Copyright (C) 2004 John Goerzen <jgoerzen at complete.org>
 
 This program is free software; you can redistribute it and/or modify
@@ -16,13 +16,18 @@ along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 -}
 
-module IOtest(foo) where
-import HUnit
-import MissingH.IO
-import Testutil
+{- | Definition of log handler support
 
-foo = hInteract
+For some handlers, check out "MissingH.Logging.Handler.Simple" and
+"MissingH.Logging.Handler.Syslog".
 
+Written by John Goerzen, jgoerzen\@complete.org
+-}
+
+module MissingH.Logging.Logger(
+                              ) where
+import MissingH.Logging
+import IO
 
 
 

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list