
New patches:

[#2759: Amend previous patch
Jose Pedro Magalhaes <jpm@cs.uu.nl>**20090212132327] {
hunk ./Data/Data.hs 643
-        FloatRep    -> mkReadCon (\f -> (mkPrimCon dt str (FloatConstr f)))
+        FloatRep    -> mkReadCon ffloat
hunk ./Data/Data.hs 661
+    ffloat :: Double -> Constr
+    ffloat =  mkPrimCon dt str . FloatConstr . toRational
}

Context:

[Fix #2971: we had lost the non-blocking flag on Handles created by openFile
Simon Marlow <marlowsd@gmail.com>**20090206165912
 Ignore-this: 546f1a799b6e80f7b25c73ef642d8f9d
 This code is a mess, fortunately the new IO library cleans it up.
] 
[add some rules of thumb for catching exceptions, restructure the docs a bit
Simon Marlow <marlowsd@gmail.com>**20090205150642
 Ignore-this: 8294e58f247b2cc3f193991434d336de
] 
[implement System.IO.Error more fully for nhc98
Malcolm.Wallace@cs.york.ac.uk**20090206173314] 
[Make System.Posix.Internals buildable by nhc98.
Malcolm.Wallace@cs.york.ac.uk**20090206111152] 
[Fix #2903: ensure CWStringLen contains the length of the array rather than the String
Ross Paterson <ross@soi.city.ac.uk>**20090203011026] 
[OldException catches unknown exceptions as DynException
Ian Lynagh <igloo@earth.li>**20090202151856
 It's important that we put all exceptions into the old Exception
 type somehow, or throwing a new exception wouldn't cause the
 cleanup code for bracket, finally etc to happen.
] 
[Update the Exception docs
Ian Lynagh <igloo@earth.li>**20090131204845] 
[Proposal #2875: remove StringRep and StringConstr
Jose Pedro Magalhaes <jpm@cs.uu.nl>**20090116142617] 
[Fix #2759: add mkRealConstr and mkIntegralConstr, deprecate mkFloatConstr and mkIntConstr
Jose Pedro Magalhaes <jpm@cs.uu.nl>**20090116140655] 
[Correct SYB's representation of Char
Jose Pedro Magalhaes <jpm@cs.uu.nl>**20081211144716] 
[Require Cabal version >= 1.6
Ian Lynagh <igloo@earth.li>**20090122011251] 
[Add "bug-reports" and "source-repository" info to the Cabal file
Ian Lynagh <igloo@earth.li>**20090121182010] 
[avoid `mappend` in monoid laws, because it doesn't work with haddock
Ross Paterson <ross@soi.city.ac.uk>**20090118011508] 
[Make Data.Typeable imports and exports more explicit
Ian Lynagh <igloo@earth.li>**20090114234512] 
[add Monoid laws
Ross Paterson <ross@soi.city.ac.uk>**20090116151624] 
[Unbreak an import cycle caused by moving 'catch' definitions around.
Malcolm.Wallace@cs.york.ac.uk**20090116110132
 The new cycle was introduced for nhc98 only.
] 
[make the Monoid docs more self-contained
Ross Paterson <ross@soi.city.ac.uk>**20090115222441] 
[Move some catch definitions around to avoid an import loop
Ian Lynagh <igloo@earth.li>**20090114211033
 As suggested by simonpj in trac #2822.
] 
[Add NoImplicitPrelude to the extensions used when building with GHC
Ian Lynagh <igloo@earth.li>**20090114202810] 
[#2699: exit silently for EPIPE on stdout
Simon Marlow <marlowsd@gmail.com>**20090114134612
 Ignore-this: 4236560e8e9c1135129e9526355f11b4
] 
[Fix build when we have HTYPE_TCFLAG_T
Ian Lynagh <igloo@earth.li>**20090105102020] 
[Fix the build on Windows
Ian Lynagh <igloo@earth.li>**20090105014625] 
[Add errno to the IOError type
Ian Lynagh <igloo@earth.li>**20090104173018] 
[Fix typo (reqwests -> requests); trac #2908, spotted by bancroft
Ian Lynagh <igloo@earth.li>**20090104154405] 
[More compact error messages for record selectors
simonpj@microsoft.com**20090102145325
 
 Make recSelError generate the standard part of the record selector
 error message (i.e. "No match in record selector") rather than have
 that string duplicated for every record selector.
 
] 
[extra dependencies for the new build system
Simon Marlow <marlowsd@gmail.com>**20081217104655] 
[warning fix: don't use -XPatternSignatures in GHC >= 6.10
Simon Marlow <marlowsd@gmail.com>**20081217104637] 
[Rollback INLINE patches
Simon Marlow <marlowsd@gmail.com>**20081216104143
 
 rolling back:
 
 Fri Dec  5 17:00:15 GMT 2008  simonpj@microsoft.com
   * Update INLINE pragmas for new INLINE story
   
   - (.) and foldr should inline when applied to only two arguments
   - Make unpackCString# NOINLINE; it inlines too much (with little gain)
   
 
     M ./GHC/Base.lhs -10 +31
] 
[FIX #1364: added support for C finalizers that run as soon as the value is no longer reachable.
Ivan Tomac <tomac@pacific.net.au>**20081210150510
 
 Patch amended by Simon Marlow:
   - mkWeakFinalizer# commoned up with mkWeakFinalizerEnv#
] 
[Update INLINE pragmas for new INLINE story
simonpj@microsoft.com**20081205170015
 
 - (.) and foldr should inline when applied to only two arguments
 - Make unpackCString# NOINLINE; it inlines too much (with little gain)
 
] 
[Fix #2750: change Prelude.(,) to Prelude.(,,)
Jose Pedro Magalhaes <jpm@cs.uu.nl>**20081201113411] 
[Fix typo (or out of date reference) in throwTo documentation.
shelarcy <shelarcy@gmail.com>**20081129024639] 
[Fix #2760: deprecate mkNorepType, add mkNoRepType
Jose Pedro Magalhaes <jpm@cs.uu.nl>**20081121141905] 
[Add more description of what "round" does, from the H98 report
Ian Lynagh <igloo@earth.li>**20081119143131] 
[re-instate the gcd/Integer and lcm/Integer RULES
Simon Marlow <marlowsd@gmail.com>**20081120101826
 Fixes a performance regression between 6.8.3 and 6.10.1
] 
[Change an "undefined" into a more informative error; trac #2782
Ian Lynagh <igloo@earth.li>**20081116160228] 
[updating Haddock documentation
jpm@cs.uu.nl**20081111095023
 
 Fixed the broken link from Data.Generics to Data.Data.
] 
[add GHC.Conc.runSparks (required by GHC patch "Run sparks in batches")
Simon Marlow <marlowsd@gmail.com>**20081106095419] 
[FIX #2722: update RULES for the Category/Arrow split
Ross Paterson <ross@soi.city.ac.uk>**20081104144515
 
 The rule
 
 	arr id = id
 
 interacts unpleasantly with the advice to define
 
 	id = arr id
 
 in instances of Category that are also instances of Arrow (#2722).
 
 Also changed a couple of >>>'s to .'s in later rules.
] 
[Add AnnotationWrapper type so GHC can capture annotation dictionaries during compilation
Max Bolingbroke <batterseapower@hotmail.com>**20081016122608] 
[docs about how exceptions are handled by forkIO'd threads (#2651)
Simon Marlow <marlowsd@gmail.com>**20081016100410] 
[Import n_capabilities via import symbol when linking dynamically
Clemens Fruhwirth <clemens@endorphin.org>**20081013161220] 
[add link to the new syb wiki
jpm@cs.uu.nl**20081013111605] 
[add readTVarIO :: TVar a -> IO a
Simon Marlow <marlowsd@gmail.com>**20081010113835] 
[changing haddock links
jpm@cs.uu.nl**20081010095434] 
[non-GHC: delete unnecessary imports
Ross Paterson <ross@soi.city.ac.uk>**20081007134809] 
[removed (->) instance from Data.Data
jpm@cs.uu.nl**20081006075254] 
[added new module Data.Data
'Jose Pedro Magalhaes <jpm@cs.uu.nl>'**20081002140535
 
 The new Data.Data module contains all of Data.Generics.Basics 
 and most of Data.Generics.Instances. The missing instances were 
 deemed dubious and moved to the syb package.
] 
[add new Data.Data module
'Jose Pedro Magalhaes <jpm@cs.uu.nl>'**20081002082735] 
[restore Complex's derived Data instance
'Jose Pedro Magalhaes <jpm@cs.uu.nl>'**20081002082655] 
[update Data.Generics import
'Jose Pedro Magalhaes <jpm@cs.uu.nl>'**20081002082604] 
[Don't use ^(2::Int) in Data.Complex.magnitude; partially fixes trac #2450
Ian Lynagh <igloo@earth.li>**20081004142651
 We still might want to make a RULE for this, so the bug is not fully fixed.
] 
[Restore the Haskell 98 behaviour of Show Ratio (#1920)
Simon Marlow <simonmarhaskell@gmail.com>**20080923134949] 
[Pad version number to 4.0.0.0
Ian Lynagh <igloo@earth.li>**20080920155801] 
[TAG 6.10 branch has been forked
Ian Lynagh <igloo@earth.li>**20080919123437] 
Patch bundle hash:
3c6024567316c2ee97f0dc45f1bc0f69a39a6630
