From f7a485978f04e84b086f1974b88887cc72d832d0 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 9 May 2002 13:16:33 +0000 Subject: [PATCH] [project @ 2002-05-09 13:16:29 by simonmar] Rename libraries/core to libraries/base in the module headers. --- Control/Concurrent.hs | 2 +- Control/Concurrent/CVar.hs | 2 +- Control/Concurrent/Chan.hs | 2 +- Control/Concurrent/MVar.hs | 2 +- Control/Concurrent/QSem.hs | 2 +- Control/Concurrent/QSemN.hs | 2 +- Control/Concurrent/SampleVar.hs | 2 +- Control/Exception.hs | 2 +- Control/Monad.hs | 2 +- Control/Monad/Cont.hs | 2 +- Control/Monad/Error.hs | 2 +- Control/Monad/Fix.hs | 2 +- Control/Monad/Identity.hs | 2 +- Control/Monad/List.hs | 2 +- Control/Monad/Monoid.hs | 2 +- Control/Monad/RWS.hs | 2 +- Control/Monad/Reader.hs | 2 +- Control/Monad/ST.hs | 2 +- Control/Monad/ST/Lazy.hs | 2 +- Control/Monad/ST/Strict.hs | 2 +- Control/Monad/State.hs | 2 +- Control/Monad/Trans.hs | 2 +- Control/Monad/Writer.hs | 2 +- Control/Parallel.hs | 2 +- Control/Parallel/Strategies.hs | 19 +++++++++++-------- Data/Array.hs | 2 +- Data/Array/Base.hs | 2 +- Data/Array/Diff.hs | 2 +- Data/Array/IArray.hs | 2 +- Data/Array/IO.hs | 2 +- Data/Array/MArray.hs | 2 +- Data/Array/ST.hs | 2 +- Data/Array/Storable.hs | 2 +- Data/Array/Unboxed.hs | 2 +- Data/Bits.hs | 2 +- Data/Bool.hs | 2 +- Data/Char.hs | 2 +- Data/Complex.hs | 2 +- Data/Dynamic.hs | 2 +- Data/Either.hs | 2 +- Data/FiniteMap.hs | 2 +- Data/Generics.hs | 2 +- Data/IORef.hs | 2 +- Data/Int.hs | 2 +- Data/Ix.hs | 2 +- Data/List.hs | 2 +- Data/Maybe.hs | 2 +- Data/PackedString.hs | 2 +- Data/Ratio.hs | 2 +- Data/STRef.hs | 2 +- Data/Set.hs | 2 +- Data/Tuple.hs | 2 +- Data/Unique.hs | 2 +- Data/Word.hs | 2 +- Debug/QuickCheck.hs | 2 +- Debug/QuickCheck/Batch.hs | 2 +- Debug/QuickCheck/Poly.hs | 2 +- Debug/QuickCheck/Utils.hs | 2 +- Debug/Trace.hs | 2 +- Foreign.hs | 2 +- Foreign/C.hs | 2 +- Foreign/C/Error.hs | 2 +- Foreign/C/String.hs | 2 +- Foreign/C/Types.hs | 2 +- Foreign/C/TypesISO.hs | 2 +- Foreign/ForeignPtr.hs | 2 +- Foreign/Marshal/Alloc.hs | 2 +- Foreign/Marshal/Array.hs | 2 +- Foreign/Marshal/Error.hs | 2 +- Foreign/Marshal/Utils.hs | 2 +- Foreign/Ptr.hs | 2 +- Foreign/StablePtr.hs | 2 +- Foreign/Storable.hs | 2 +- Numeric.hs | 2 +- Prelude.hs | 2 +- System/Cmd.hs | 2 +- System/Console/GetOpt.hs | 2 +- System/Directory.hs | 2 +- System/Environment.hs | 2 +- System/Exit.hs | 2 +- System/IO.hs | 2 +- System/IO/Error.hs | 2 +- System/IO/Unsafe.hs | 2 +- System/Info.hs | 2 +- System/Locale.hs | 2 +- System/Mem.hs | 2 +- System/Mem/StableName.hs | 2 +- System/Mem/Weak.hs | 2 +- System/Random.hs | 2 +- Text/Html.hs | 2 +- Text/Html/BlockTable.hs | 2 +- Text/PrettyPrint.hs | 2 +- Text/PrettyPrint/HughesPJ.hs | 2 +- Text/Read.hs | 2 +- Text/Regex.hs | 2 +- Text/Show.hs | 2 +- Text/Show/Functions.hs | 2 +- 97 files changed, 107 insertions(+), 104 deletions(-) diff --git a/Control/Concurrent.hs b/Control/Concurrent.hs index 2ef83ae..673bac3 100644 --- a/Control/Concurrent.hs +++ b/Control/Concurrent.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Concurrent -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Concurrent/CVar.hs b/Control/Concurrent/CVar.hs index ba465d2..0d7c7b8 100644 --- a/Control/Concurrent/CVar.hs +++ b/Control/Concurrent/CVar.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Concurrent.CVar -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Concurrent/Chan.hs b/Control/Concurrent/Chan.hs index d6c1107..e756d1a 100644 --- a/Control/Concurrent/Chan.hs +++ b/Control/Concurrent/Chan.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Concurrent.Chan -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Concurrent/MVar.hs b/Control/Concurrent/MVar.hs index b246bf8..eb1f03f 100644 --- a/Control/Concurrent/MVar.hs +++ b/Control/Concurrent/MVar.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Concurrent.MVar -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Concurrent/QSem.hs b/Control/Concurrent/QSem.hs index d439a8a..04064e4 100644 --- a/Control/Concurrent/QSem.hs +++ b/Control/Concurrent/QSem.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Concurrent.QSem -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Concurrent/QSemN.hs b/Control/Concurrent/QSemN.hs index 59e5e39..9ba46a2 100644 --- a/Control/Concurrent/QSemN.hs +++ b/Control/Concurrent/QSemN.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Concurrent.QSemN -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Concurrent/SampleVar.hs b/Control/Concurrent/SampleVar.hs index 47742eb..2b29092 100644 --- a/Control/Concurrent/SampleVar.hs +++ b/Control/Concurrent/SampleVar.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Concurrent.SampleVar -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Exception.hs b/Control/Exception.hs index 29aa8d3..8a66e97 100644 --- a/Control/Exception.hs +++ b/Control/Exception.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Exception -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad.hs b/Control/Monad.hs index aee36a2..14f33d6 100644 --- a/Control/Monad.hs +++ b/Control/Monad.hs @@ -3,7 +3,7 @@ -- | -- Module : Control.Monad -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Control/Monad/Cont.hs b/Control/Monad/Cont.hs index eb3f65c..51cf2da 100644 --- a/Control/Monad/Cont.hs +++ b/Control/Monad/Cont.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Monad.Cont -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/Error.hs b/Control/Monad/Error.hs index 6df213e..91694ba 100644 --- a/Control/Monad/Error.hs +++ b/Control/Monad/Error.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Monad.Error -- Copyright : (c) Michael Weber , 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/Fix.hs b/Control/Monad/Fix.hs index 53d5c42..8327212 100644 --- a/Control/Monad/Fix.hs +++ b/Control/Monad/Fix.hs @@ -3,7 +3,7 @@ -- Module : Control.Monad.Fix -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/Identity.hs b/Control/Monad/Identity.hs index 282eddb..52c8459 100644 --- a/Control/Monad/Identity.hs +++ b/Control/Monad/Identity.hs @@ -3,7 +3,7 @@ -- Module : Control.Monad.Identity -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/List.hs b/Control/Monad/List.hs index 0c2cb22..11aa3bf 100644 --- a/Control/Monad/List.hs +++ b/Control/Monad/List.hs @@ -3,7 +3,7 @@ -- Module : Control.Monad.List -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/Monoid.hs b/Control/Monad/Monoid.hs index f892455..478f390 100644 --- a/Control/Monad/Monoid.hs +++ b/Control/Monad/Monoid.hs @@ -3,7 +3,7 @@ -- Module : Control.Monad.Monoid -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/RWS.hs b/Control/Monad/RWS.hs index 7f7f98b..5175c7f 100644 --- a/Control/Monad/RWS.hs +++ b/Control/Monad/RWS.hs @@ -3,7 +3,7 @@ -- Module : Control.Monad.RWS -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/Reader.hs b/Control/Monad/Reader.hs index 758a19d..f0e617a 100644 --- a/Control/Monad/Reader.hs +++ b/Control/Monad/Reader.hs @@ -3,7 +3,7 @@ -- Module : Control.Monad.Reader -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/ST.hs b/Control/Monad/ST.hs index 02d8d15..2a3985a 100644 --- a/Control/Monad/ST.hs +++ b/Control/Monad/ST.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Monad.ST -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/ST/Lazy.hs b/Control/Monad/ST/Lazy.hs index 43c2de7..adaca1a 100644 --- a/Control/Monad/ST/Lazy.hs +++ b/Control/Monad/ST/Lazy.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Monad.ST.Lazy -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Control/Monad/ST/Strict.hs b/Control/Monad/ST/Strict.hs index 72f55e1..677d6a2 100644 --- a/Control/Monad/ST/Strict.hs +++ b/Control/Monad/ST/Strict.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Monad.ST.Strict -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Control/Monad/State.hs b/Control/Monad/State.hs index 2353d76..9f67f6d 100644 --- a/Control/Monad/State.hs +++ b/Control/Monad/State.hs @@ -3,7 +3,7 @@ -- Module : Control.Monad.State -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/Trans.hs b/Control/Monad/Trans.hs index 929b242..f81c194 100644 --- a/Control/Monad/Trans.hs +++ b/Control/Monad/Trans.hs @@ -3,7 +3,7 @@ -- Module : Control.Monad.Trans -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Monad/Writer.hs b/Control/Monad/Writer.hs index af7add6..0ef1ab0 100644 --- a/Control/Monad/Writer.hs +++ b/Control/Monad/Writer.hs @@ -3,7 +3,7 @@ -- Module : Control.Monad.Writer -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Parallel.hs b/Control/Parallel.hs index ded89d9..9aae049 100644 --- a/Control/Parallel.hs +++ b/Control/Parallel.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Parallel -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Control/Parallel/Strategies.hs b/Control/Parallel/Strategies.hs index b52f6aa..03932b1 100644 --- a/Control/Parallel/Strategies.hs +++ b/Control/Parallel/Strategies.hs @@ -2,7 +2,7 @@ -- | -- Module : Control.Parallel.Strategies -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental @@ -14,7 +14,7 @@ {- Time-stamp: -$Id: Strategies.hs,v 1.3 2002/04/26 13:34:06 simonmar Exp $ +$Id: Strategies.hs,v 1.4 2002/05/09 13:16:30 simonmar Exp $ This module defines parallel strategy combinators @@ -23,8 +23,8 @@ This module defines parallel strategy combinators Based on Version VII (1/5/96) `Strategies96' of type a -> () Author: $Author: simonmar $ -Date: $Date: 2002/04/26 13:34:06 $ -Revision: $Revision: 1.3 $ +Date: $Date: 2002/05/09 13:16:30 $ +Revision: $Revision: 1.4 $ Source: $Source: /srv/cvs/cvs.haskell.org/fptools/libraries/base/Control/Parallel/Strategies.hs,v $ State: $State: Exp $ @@ -48,6 +48,9 @@ The history of the Strategies module: Changelog: $Log: Strategies.hs,v $ +Revision 1.4 2002/05/09 13:16:30 simonmar +Rename libraries/core to libraries/base in the module headers. + Revision 1.3 2002/04/26 13:34:06 simonmar Remove \$Id\$ from all files: it isn't particularly useful (see previous discussion on cvs-ghc@haskell.org), and it confuses Haddock. @@ -65,7 +68,7 @@ to look at and so the NHC/Hugs guys can start playing around with it. There is no build system. For GHC, the libraries tree is intended to be grafted onto an existing fptools/ tree, and the Makefile in -libraries/core is a quick hack for that setup. This won't work at the +libraries/base is a quick hack for that setup. This won't work at the moment without the other changes needed in fptools/ghc, which I haven't committed because they'll cause breakage. However, with the changes required these sources build a working Prelude and libraries. @@ -74,7 +77,7 @@ The layout mostly follows the one we agreed on, with one or two minor changes; in particular the Data/Array layout probably isn't final (there are several choices here). -The document is in libraries/core/doc as promised. +The document is in libraries/base/doc as promised. The cbits stuff is just a copy of ghc/lib/std/cbits and has GHC-specific stuff in it. We should really separate the @@ -283,8 +286,8 @@ declaration of @par@ and @seq@ despite renaming the imported versions. > infixl 6 $||, $| -- strategic function application (seq and par) > infixl 9 .|, .||, -|, -|| -- strategic (inverse) function composition -> strategy_version = "$Revision: 1.3 $" -> strategy_id = "$Id: Strategies.hs,v 1.3 2002/04/26 13:34:06 simonmar Exp $" +> strategy_version = "$Revision: 1.4 $" +> strategy_id = "$Id: Strategies.hs,v 1.4 2002/05/09 13:16:30 simonmar Exp $" ------------------------------------------------------------------------------ Strategy Type, Application and Semantics diff --git a/Data/Array.hs b/Data/Array.hs index 2cde6c9..301f8c8 100644 --- a/Data/Array.hs +++ b/Data/Array.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Array -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Data/Array/Base.hs b/Data/Array/Base.hs index a1b4c3d..dee798f 100644 --- a/Data/Array/Base.hs +++ b/Data/Array/Base.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Array.Base -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Array/Diff.hs b/Data/Array/Diff.hs index 9c65e6c..515c243 100644 --- a/Data/Array/Diff.hs +++ b/Data/Array/Diff.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Array.Diff -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Array/IArray.hs b/Data/Array/IArray.hs index 1c415cd..3f1706c 100644 --- a/Data/Array/IArray.hs +++ b/Data/Array/IArray.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Array.IArray -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Array/IO.hs b/Data/Array/IO.hs index 5c6e361..816d28e 100644 --- a/Data/Array/IO.hs +++ b/Data/Array/IO.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Array.IO -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Array/MArray.hs b/Data/Array/MArray.hs index 4e21479..4178e0c 100644 --- a/Data/Array/MArray.hs +++ b/Data/Array/MArray.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Array.MArray -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Array/ST.hs b/Data/Array/ST.hs index e71dece..e2b8465 100644 --- a/Data/Array/ST.hs +++ b/Data/Array/ST.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Array.ST -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Array/Storable.hs b/Data/Array/Storable.hs index 8c6fdf3..2ca8dde 100644 --- a/Data/Array/Storable.hs +++ b/Data/Array/Storable.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Array.Storable -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Array/Unboxed.hs b/Data/Array/Unboxed.hs index 3eb01fe..932a1c9 100644 --- a/Data/Array/Unboxed.hs +++ b/Data/Array/Unboxed.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Array.Unboxed -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Bits.hs b/Data/Bits.hs index a72cf89..52cbfb6 100644 --- a/Data/Bits.hs +++ b/Data/Bits.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Bits -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Bool.hs b/Data/Bool.hs index e681d18..2515d58 100644 --- a/Data/Bool.hs +++ b/Data/Bool.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Bool -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Char.hs b/Data/Char.hs index e7d7b72..feadb18 100644 --- a/Data/Char.hs +++ b/Data/Char.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Char -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Data/Complex.hs b/Data/Complex.hs index f53f4a7..8ad4c2e 100644 --- a/Data/Complex.hs +++ b/Data/Complex.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Complex -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Data/Dynamic.hs b/Data/Dynamic.hs index 13e3550..4c44988 100644 --- a/Data/Dynamic.hs +++ b/Data/Dynamic.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Dynamic -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Either.hs b/Data/Either.hs index fa9648c..d8a35b5 100644 --- a/Data/Either.hs +++ b/Data/Either.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Either -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/FiniteMap.hs b/Data/FiniteMap.hs index 88279bd..0c8d4fe 100644 --- a/Data/FiniteMap.hs +++ b/Data/FiniteMap.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.FiniteMap -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Data/Generics.hs b/Data/Generics.hs index 82a08c8..05ced62 100644 --- a/Data/Generics.hs +++ b/Data/Generics.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Generics -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/IORef.hs b/Data/IORef.hs index dec5906..5599685 100644 --- a/Data/IORef.hs +++ b/Data/IORef.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.IORef -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Int.hs b/Data/Int.hs index 553704a..182152c 100644 --- a/Data/Int.hs +++ b/Data/Int.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Int -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Ix.hs b/Data/Ix.hs index d2022ed..54d6b2e 100644 --- a/Data/Ix.hs +++ b/Data/Ix.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Ix -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Data/List.hs b/Data/List.hs index 069a31a..245712f 100644 --- a/Data/List.hs +++ b/Data/List.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.List -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Data/Maybe.hs b/Data/Maybe.hs index d0b5c18..4b7b67e 100644 --- a/Data/Maybe.hs +++ b/Data/Maybe.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Maybe -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/PackedString.hs b/Data/PackedString.hs index fd4528b..d2998bd 100644 --- a/Data/PackedString.hs +++ b/Data/PackedString.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.PackedString -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Ratio.hs b/Data/Ratio.hs index 4462c44..5c58cd5 100644 --- a/Data/Ratio.hs +++ b/Data/Ratio.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Ratio -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Data/STRef.hs b/Data/STRef.hs index deaa209..2331ef9 100644 --- a/Data/STRef.hs +++ b/Data/STRef.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.STRef -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Set.hs b/Data/Set.hs index f4dad32..b724d01 100644 --- a/Data/Set.hs +++ b/Data/Set.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Set -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Data/Tuple.hs b/Data/Tuple.hs index 735a12a..e3c0a43 100644 --- a/Data/Tuple.hs +++ b/Data/Tuple.hs @@ -3,7 +3,7 @@ -- | -- Module : Data.Tuple -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Unique.hs b/Data/Unique.hs index 3e093d3..81fe6d8 100644 --- a/Data/Unique.hs +++ b/Data/Unique.hs @@ -2,7 +2,7 @@ -- | -- Module : Data.Unique -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Data/Word.hs b/Data/Word.hs index 0a8e512..980de4d 100644 --- a/Data/Word.hs +++ b/Data/Word.hs @@ -3,7 +3,7 @@ -- | -- Module : -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Debug/QuickCheck.hs b/Debug/QuickCheck.hs index 99af89b..cf476f7 100644 --- a/Debug/QuickCheck.hs +++ b/Debug/QuickCheck.hs @@ -2,7 +2,7 @@ -- | -- Module : Debug.QuickCheck -- Copyright : (c) Koen Claessen, John Hughes 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Debug/QuickCheck/Batch.hs b/Debug/QuickCheck/Batch.hs index 1b5cafa..850ef68 100644 --- a/Debug/QuickCheck/Batch.hs +++ b/Debug/QuickCheck/Batch.hs @@ -2,7 +2,7 @@ -- | -- Module : Debug.QuickCheck.Batch -- Copyright : (c) Andy Gill 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Debug/QuickCheck/Poly.hs b/Debug/QuickCheck/Poly.hs index f254432..107136a 100644 --- a/Debug/QuickCheck/Poly.hs +++ b/Debug/QuickCheck/Poly.hs @@ -2,7 +2,7 @@ -- | -- Module : Debug.QuickCheck.Poly -- Copyright : (c) Andy Gill 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Debug/QuickCheck/Utils.hs b/Debug/QuickCheck/Utils.hs index 8d22c27..112c3ca 100644 --- a/Debug/QuickCheck/Utils.hs +++ b/Debug/QuickCheck/Utils.hs @@ -2,7 +2,7 @@ -- | -- Module : Debug.QuickCheck.Utils -- Copyright : (c) Andy Gill 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Debug/Trace.hs b/Debug/Trace.hs index 08d2fc1..6f1ce82 100644 --- a/Debug/Trace.hs +++ b/Debug/Trace.hs @@ -2,7 +2,7 @@ -- | -- Module : Debug.Trace -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Foreign.hs b/Foreign.hs index 0b22468..c4d07cd 100644 --- a/Foreign.hs +++ b/Foreign.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/C.hs b/Foreign/C.hs index fb6d10f..7fb0e3c 100644 --- a/Foreign/C.hs +++ b/Foreign/C.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.C -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/C/Error.hs b/Foreign/C/Error.hs index c667412..7dc8d3a 100644 --- a/Foreign/C/Error.hs +++ b/Foreign/C/Error.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.C.Error -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/C/String.hs b/Foreign/C/String.hs index d5463a0..06b27c4 100644 --- a/Foreign/C/String.hs +++ b/Foreign/C/String.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.C.String -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/C/Types.hs b/Foreign/C/Types.hs index 3e2905a..ec1cbf1 100644 --- a/Foreign/C/Types.hs +++ b/Foreign/C/Types.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.C.Types -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/C/TypesISO.hs b/Foreign/C/TypesISO.hs index 490a484..d11d93c 100644 --- a/Foreign/C/TypesISO.hs +++ b/Foreign/C/TypesISO.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.C.TypesISO -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/ForeignPtr.hs b/Foreign/ForeignPtr.hs index 705bf1f..0d49fbf 100644 --- a/Foreign/ForeignPtr.hs +++ b/Foreign/ForeignPtr.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.ForeignPtr -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/Marshal/Alloc.hs b/Foreign/Marshal/Alloc.hs index 7567743..e5c3aa3 100644 --- a/Foreign/Marshal/Alloc.hs +++ b/Foreign/Marshal/Alloc.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.Marshal.Alloc -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/Marshal/Array.hs b/Foreign/Marshal/Array.hs index 002961e..16a3e47 100644 --- a/Foreign/Marshal/Array.hs +++ b/Foreign/Marshal/Array.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.Marshal.Array -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/Marshal/Error.hs b/Foreign/Marshal/Error.hs index 889ab65..46fa2b7 100644 --- a/Foreign/Marshal/Error.hs +++ b/Foreign/Marshal/Error.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.Marshal.Error -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/Marshal/Utils.hs b/Foreign/Marshal/Utils.hs index 87881b6..e5ff7b1 100644 --- a/Foreign/Marshal/Utils.hs +++ b/Foreign/Marshal/Utils.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.Marshal.Utils -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/Ptr.hs b/Foreign/Ptr.hs index 4cf8700..f4260fd 100644 --- a/Foreign/Ptr.hs +++ b/Foreign/Ptr.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.Ptr -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/StablePtr.hs b/Foreign/StablePtr.hs index 9b1bb9b..cc53e9c 100644 --- a/Foreign/StablePtr.hs +++ b/Foreign/StablePtr.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.StablePtr -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Foreign/Storable.hs b/Foreign/Storable.hs index 9286e9c..3d57481 100644 --- a/Foreign/Storable.hs +++ b/Foreign/Storable.hs @@ -3,7 +3,7 @@ -- | -- Module : Foreign.Storable -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional diff --git a/Numeric.hs b/Numeric.hs index 3fc52fc..2fb214d 100644 --- a/Numeric.hs +++ b/Numeric.hs @@ -3,7 +3,7 @@ -- | -- Module : Numeric -- Copyright : (c) The University of Glasgow 2002 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Prelude.hs b/Prelude.hs index 002f0a7..70eee4d 100644 --- a/Prelude.hs +++ b/Prelude.hs @@ -3,7 +3,7 @@ -- | -- Module : Prelude -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/Cmd.hs b/System/Cmd.hs index 14300be..0be8008 100644 --- a/System/Cmd.hs +++ b/System/Cmd.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Cmd -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/Console/GetOpt.hs b/System/Console/GetOpt.hs index 72ffea2..b8423df 100644 --- a/System/Console/GetOpt.hs +++ b/System/Console/GetOpt.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Console.GetOpt -- Copyright : (c) Sven Panne Oct. 1996 (small changes Dec. 1997) --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/System/Directory.hs b/System/Directory.hs index 63d4319..02c6841 100644 --- a/System/Directory.hs +++ b/System/Directory.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Directory -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/Environment.hs b/System/Environment.hs index 4215af6..20b709f 100644 --- a/System/Environment.hs +++ b/System/Environment.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Environment -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/Exit.hs b/System/Exit.hs index 0570c82..51f619f 100644 --- a/System/Exit.hs +++ b/System/Exit.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Exit -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/IO.hs b/System/IO.hs index eb080fc..904082c 100644 --- a/System/IO.hs +++ b/System/IO.hs @@ -3,7 +3,7 @@ -- | -- Module : System.IO -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/IO/Error.hs b/System/IO/Error.hs index 357d50c..245487a 100644 --- a/System/IO/Error.hs +++ b/System/IO/Error.hs @@ -4,7 +4,7 @@ -- | -- Module : System.IO.Error -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/IO/Unsafe.hs b/System/IO/Unsafe.hs index db67a20..3e2ade7 100644 --- a/System/IO/Unsafe.hs +++ b/System/IO/Unsafe.hs @@ -2,7 +2,7 @@ -- | -- Module : System.IO.Unsafe -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/Info.hs b/System/Info.hs index a064991..452cec5 100644 --- a/System/Info.hs +++ b/System/Info.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Info -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/System/Locale.hs b/System/Locale.hs index cdef8ee..556e174 100644 --- a/System/Locale.hs +++ b/System/Locale.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Locale -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/Mem.hs b/System/Mem.hs index 2bac612..10a908a 100644 --- a/System/Mem.hs +++ b/System/Mem.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Mem -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/System/Mem/StableName.hs b/System/Mem/StableName.hs index c26738c..29918c5 100644 --- a/System/Mem/StableName.hs +++ b/System/Mem/StableName.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Mem.StableName -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/System/Mem/Weak.hs b/System/Mem/Weak.hs index 4d75b31..62495fc 100644 --- a/System/Mem/Weak.hs +++ b/System/Mem/Weak.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Mem.Weak -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/System/Random.hs b/System/Random.hs index 27fb7aa..e3fa8b9 100644 --- a/System/Random.hs +++ b/System/Random.hs @@ -2,7 +2,7 @@ -- | -- Module : System.Random -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Text/Html.hs b/Text/Html.hs index cbb1998..1608603 100644 --- a/Text/Html.hs +++ b/Text/Html.hs @@ -3,7 +3,7 @@ -- Module : Text.Html -- Copyright : (c) Andy Gill, and the Oregon Graduate Institute of -- Science and Technology, 1999-2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : Andy Gill -- Stability : experimental diff --git a/Text/Html/BlockTable.hs b/Text/Html/BlockTable.hs index ddb4b58..49ce856 100644 --- a/Text/Html/BlockTable.hs +++ b/Text/Html/BlockTable.hs @@ -3,7 +3,7 @@ -- Module : Text.Html.BlockTable -- Copyright : (c) Andy Gill, and the Oregon Graduate Institute of -- Science and Technology, 1999-2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : Andy Gill -- Stability : experimental diff --git a/Text/PrettyPrint.hs b/Text/PrettyPrint.hs index 00a3b57..c40f85c 100644 --- a/Text/PrettyPrint.hs +++ b/Text/PrettyPrint.hs @@ -2,7 +2,7 @@ -- | -- Module : Text.PrettyPrint -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Text/PrettyPrint/HughesPJ.hs b/Text/PrettyPrint/HughesPJ.hs index 5ad32c0..f126af5 100644 --- a/Text/PrettyPrint/HughesPJ.hs +++ b/Text/PrettyPrint/HughesPJ.hs @@ -2,7 +2,7 @@ -- | -- Module : Text.PrettyPrint.HughesPJ -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Text/Read.hs b/Text/Read.hs index cc028b7..7d105fb 100644 --- a/Text/Read.hs +++ b/Text/Read.hs @@ -3,7 +3,7 @@ -- | -- Module : Text.Read -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Text/Regex.hs b/Text/Regex.hs index 07f155b..9551102 100644 --- a/Text/Regex.hs +++ b/Text/Regex.hs @@ -2,7 +2,7 @@ -- | -- Module : Text.Regex -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental diff --git a/Text/Show.hs b/Text/Show.hs index 6c5d20d..3f2e1a7 100644 --- a/Text/Show.hs +++ b/Text/Show.hs @@ -3,7 +3,7 @@ -- | -- Module : Text.Show -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional diff --git a/Text/Show/Functions.hs b/Text/Show/Functions.hs index 5d5c914..bbd61a1 100644 --- a/Text/Show/Functions.hs +++ b/Text/Show/Functions.hs @@ -2,7 +2,7 @@ -- | -- Module : Text.Show.Functions -- Copyright : (c) The University of Glasgow 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : provisional -- 1.7.10.4