[add deepseq and filepath to the libraries
John Meacham <john@repetae.net>**20110131015719
 Ignore-this: dbd843a9ae9e7bf2183daf1abfe62c74
] hunk ./Makefile.am 344
+filepath-1.2.0.0.hl: lib/ext/filepath.cabal jhc-1.0.hl base-1.0.hl
+deepseq-1.1.0.2.hl: lib/ext/deepseq.cabal jhc-1.0.hl base-1.0.hl applicative-1.0.hl containers-0.3.0.0.hl
+
hunk ./Makefile.am 349
-    xhtml-3000.2.0.1.hl transformers-0.2.1.0.hl
+    xhtml-3000.2.0.1.hl transformers-0.2.1.0.hl filepath-1.2.0.0.hl deepseq-1.1.0.2.hl
hunk ./jhc.spec.in 55
+%{_datadir}/@PACKAGE@-@SHORTVERSION@/filepath-1.2.0.0.hl
+%{_datadir}/@PACKAGE@-@SHORTVERSION@/deepseq-1.1.0.2.hl
addfile ./lib/ext/deepseq.cabal
hunk ./lib/ext/deepseq.cabal 1
+name:		deepseq
+version:	1.1.0.2
+license:	BSD3
+license-file:	LICENSE
+maintainer:	libraries@haskell.org
+synopsis:	Deep evaluation of data structures
+category:       Control
+options:  -pcontainers
+description:
+    This package provides methods for fully evaluating data structures
+    (\"deep evaluation\"). Deep evaluation is often used for adding
+    strictness to a program, e.g. in order to force pending exceptions,
+    remove space leaks, or force lazy I/O to happen. It is also useful
+    in parallel programs, to ensure pending work does not migrate to the
+    wrong thread.
+    .
+    The primary use of this package is via the 'deepseq' function, a
+    \"deep\" version of 'seq'. It is implemented on top of an 'NFData'
+    typeclass (\"Normal Form Data\", data structures with no unevaluated
+    components) which defines strategies for fully evaluating different
+    data types.
+    .
+build-depends: containers
+exposed-modules: Control.DeepSeq
addfile ./lib/ext/filepath.cabal
hunk ./lib/ext/filepath.cabal 1
+Name:           filepath
+Version:        1.2.0.0
+License:        BSD3
+license-file:   LICENSE
+Author:         Neil Mitchell
+bug-reports: http://hackage.haskell.org/trac/ghc/newticket?component=libraries%20%28other%29
+Homepage:       http://www-users.cs.york.ac.uk/~ndm/filepath/
+Category:       System
+build-type:     Simple
+Synopsis:       Library for manipulating FilePaths in a cross platform way.
+cabal-version:  >=1.6
+Extra-Source-Files: System/FilePath/Internal.hs
+
+Exposed-modules:
+        System.FilePath
+        System.FilePath.Posix
+        System.FilePath.Windows