Duncan Coutts | 2 Jul 2009 02:19
Picon
Picon
Favicon

patch applied (bytestring): Hide the .Internal modules in the haddock docs

Wed Jul  1 17:08:19 PDT 2009  Duncan Coutts <duncan <at> haskell.org>
  * Hide the .Internal modules in the haddock docs
  This should stop users accidentally using the semi-public
  modules while still leaving them available for extension
  packages. Also means that references to 'ByteString' go to
  a sensible place rather than the .Internal modules.

    M ./Data/ByteString/Fusion.hs -1 +1
    M ./Data/ByteString/Internal.hs +1
    M ./Data/ByteString/Lazy/Internal.hs +1

View patch online:
http://darcs.haskell.org/bytestring/_darcs/patches/20090702000819-adfee-e752eb838891eacba1317b4d7ad87448d56f79ef.gz
Simon Marlow | 2 Jul 2009 11:49
Picon

patch applied (packages/base): a byte between 0x80 and 0xBF is illegal immediately (#3341)

Thu Jul  2 01:14:15 PDT 2009  Simon Marlow <marlowsd <at> gmail.com>
  * a byte between 0x80 and 0xBF is illegal immediately (#3341)
  Ignore-this: dc19ef59a1a21118d5a7dd38aa2f611c

    M ./GHC/IO/Encoding/UTF8.hs -1 +3

View patch online:
http://darcs.haskell.org/packages/base/_darcs/patches/20090702081415-12142-b2afb140ffd8bdfd681e8631431201543afda5f6.gz
Ian Lynagh | 5 Jul 2009 17:53
Picon
Gravatar

patch applied (packages/base): Don't export CLDouble for GHC; fixes trac #2793

Sun Jul  5 08:51:20 PDT 2009  Ian Lynagh <igloo <at> earth.li>
  * Don't export CLDouble for GHC; fixes trac #2793
  We never really supported CLDouble (it was a plain old double underneath),
  and pretending that we do does more harm than good.

    M ./Foreign/C/Types.hs -3 +12

View patch online:
http://darcs.haskell.org/packages/base/_darcs/patches/20090705155120-3fd76-ab629fb813ef870d4c245fa49ecdcdf87a6b2d85.gz
Ian Lynagh | 5 Jul 2009 22:12
Picon
Gravatar

patch applied (packages/Cabal): Simplify checkPackageProblems function

Thu Jun  4 13:37:09 PDT 2009  Duncan Coutts <duncan <at> haskell.org>
  * Simplify checkPackageProblems function
  Since we now always have a GenericPackageDescription

    M ./Distribution/Simple/Configure.hs -8 +5

View patch online:
http://darcs.haskell.org/packages/Cabal/_darcs/patches/20090604203709-adfee-5ff29a0182e332c97ad383af9b2dc34f9774f49e.gz
Ian Lynagh | 5 Jul 2009 22:11
Picon
Gravatar

patch applied (packages/Cabal): Change UserHooks.confHook to use simply GenericPackageDescription

Thu Jun  4 13:34:00 PDT 2009  Duncan Coutts <duncan <at> haskell.org>
  * Change UserHooks.confHook to use simply GenericPackageDescription
  Rather than Either GenericPackageDescription PackageDescription
  In principle this is an interface change that could break Setup.hs
  scripts but in practise the few scripts that use confHook just pass
  the arguments through and so are not sensitve to the type change.

    M ./Distribution/Simple.hs -1 +1
    M ./Distribution/Simple/Configure.hs -11 +6
    M ./Distribution/Simple/UserHooks.hs -2 +1

View patch online:
http://darcs.haskell.org/packages/Cabal/_darcs/patches/20090604203400-adfee-35402400f38dcc24726d8dc5a888de2162be9d7a.gz
Ian Lynagh | 5 Jul 2009 22:11
Picon
Gravatar

patch applied (packages/Cabal): Change UserHooks.readDesc to use GenericPackageDescription

Thu Jun  4 13:28:37 PDT 2009  Duncan Coutts <duncan <at> haskell.org>
  * Change UserHooks.readDesc to use GenericPackageDescription
  Also changes Simple.defaultMainNoRead to use GenericPackageDescription.
  This is an API change that in principle could break Setup.hs scripts
  but in practise there are no Setup.hs scripts that use either.

    M ./Distribution/Simple.hs -8 +6
    M ./Distribution/Simple/UserHooks.hs -1 +1

View patch online:
http://darcs.haskell.org/packages/Cabal/_darcs/patches/20090604202837-adfee-f0760f301410534302c375334ca9661b4ec3e539.gz
Ian Lynagh | 5 Jul 2009 22:12
Picon
Gravatar

patch applied (packages/Cabal): Do not pass Maybe LocalBuildInfo to clean hook

Thu Jun  4 13:38:30 PDT 2009  Duncan Coutts <duncan <at> haskell.org>
  * Do not pass Maybe LocalBuildInfo to clean hook
  It is a bad idea for clean to do anything different depending
  on whether the package was configured already or not. The
  actual cleaning code did not use the LocalBuildInfo so this
  only changes in the UserHooks interface. No Setup.hs scripts
  actually make of this parameter for the clean hook.
  Part of ticket #133.

    M ./Distribution/Simple.hs -4 +2
    M ./Distribution/Simple/UserHooks.hs -2 +2

View patch online:
http://darcs.haskell.org/packages/Cabal/_darcs/patches/20090604203830-adfee-7afaa586e826651ba2e519a44f886cc761cbe881.gz
Ian Lynagh | 5 Jul 2009 22:12
Picon
Gravatar

patch applied (packages/Cabal): Split the Program module up a bit

Sun Jun  7 03:12:46 PDT 2009  Duncan Coutts <duncan <at> haskell.org>
  * Split the Program module up a bit
  Add an explicit intermediate ProgramInvocation data type.

    A ./Distribution/Simple/Program/
    M ./Distribution/Simple/Program.hs -644 +78
    A ./Distribution/Simple/Program/Builtin.hs
    A ./Distribution/Simple/Program/Db.hs
    A ./Distribution/Simple/Program/Run.hs
    A ./Distribution/Simple/Program/Types.hs
    M ./Distribution/Simple/Utils.hs -3 +91
    M ./Makefile -1 +1

View patch online:
http://darcs.haskell.org/packages/Cabal/_darcs/patches/20090607101246-adfee-e091f5c0f8bc5d19cdc8864e4bc4e8193f49d21f.gz
Ian Lynagh | 5 Jul 2009 22:12
Picon
Gravatar

patch applied (packages/Cabal): Fix rawSystemStdin util function

Sun Jun  7 05:03:24 PDT 2009  Duncan Coutts <duncan <at> haskell.org>
  * Fix rawSystemStdin util function
  Close the input after pushing it. Return any error message.

    M ./Distribution/Simple/Utils.hs -7 +2

View patch online:
http://darcs.haskell.org/packages/Cabal/_darcs/patches/20090607120324-adfee-b9c3c6a117bb7c3e476dc5376bd514575b57d395.gz
Ian Lynagh | 5 Jul 2009 22:12
Picon
Gravatar

patch applied (packages/Cabal): Re-export the program invocation stuff from the Program module

Sun Jun  7 05:04:04 PDT 2009  Duncan Coutts <duncan <at> haskell.org>
  * Re-export the program invocation stuff from the Program module

    M ./Distribution/Simple/Program.hs +8

View patch online:
http://darcs.haskell.org/packages/Cabal/_darcs/patches/20090607120404-adfee-8d2704aab7d60150584ba22c85d1a5be0b5d6128.gz

Gmane