patch applied (ghc): Ensure runhaskell is rebuild in stage2

2008-05-21 Thread chak
Wed May 21 21:49:00 PDT 2008 Manuel M T Chakravarty <[EMAIL PROTECTED]> * Ensure runhaskell is rebuild in stage2 M ./utils/runghc/Makefile -1 +1 View patch online: http://darcs.haskell.org/ghc/_darcs/patches/20080522044900-6295e-178abbc416fa21abf7f3cd626c5693f4ddbea9ae.gz

patch applied (testsuite): Update output for GHC 6.8

2008-05-21 Thread Ian Lynagh
Wed May 21 07:40:53 PDT 2008 Ian Lynagh <[EMAIL PROTECTED]> * Update output for GHC 6.8 A ./tests/ghc-regress/driver/bug1677/bug1677.stderr-6.8 M ./tests/ghc-regress/gadt/all.T -1 +1 A ./tests/ghc-regress/ghci.debugger/scripts/dynbrk007.stdout-6.8 A ./tests/ghc-regress/ghci.debu

patch applied (ghc-6.8/ghc): Document ghc-pkg find-module, substring matching, and multi-field selection

2008-05-21 Thread Ian Lynagh
Thu May 1 08:27:00 PDT 2008 [EMAIL PROTECTED] * Document ghc-pkg find-module, substring matching, and multi-field selection Documentation and examples taken from - ghc-pkg/Main.hs usageHeader - patch: FIX 1463 (implement 'ghc-pkg find-module') - patch: FIX #1

patch applied (ghc-6.8/ghc): bump GHC's maximum stack size to 64Mb (see #2002)

2008-05-21 Thread Ian Lynagh
Mon May 19 05:53:33 PDT 2008 Simon Marlow <[EMAIL PROTECTED]> * bump GHC's maximum stack size to 64Mb (see #2002) M ./compiler/parser/hschooks.c -1 +1 View patch online: http://darcs.haskell.org/ghc-6.8/ghc/_darcs/patches/20080519125333-12142-5570085f44e7d146709263557b4dae3f9948fbb1.gz __

patch applied (ghc-6.8/ghc): sort the output of :show packages

2008-05-21 Thread Ian Lynagh
Tue May 20 01:42:21 PDT 2008 Simon Marlow <[EMAIL PROTECTED]> * sort the output of :show packages M ./compiler/ghci/InteractiveUI.hs -1 +1 View patch online: http://darcs.haskell.org/ghc-6.8/ghc/_darcs/patches/20080520084221-12142-be7d0831e3c5b6119b29bd8759e5448a7688a5bc.gz __

patch applied (ghc-6.8/ghc): FIX #1955: confusion between .exe.hp and .hp suffixes for heap profiles

2008-05-21 Thread Ian Lynagh
Mon May 19 05:51:01 PDT 2008 Simon Marlow <[EMAIL PROTECTED]> * FIX #1955: confusion between .exe.hp and .hp suffixes for heap profiles Now we use .hp and .prof consistently. M ./rts/Profiling.c -5 +20 M ./utils/hp2ps/Main.c -1 View patch online: http://darcs.haskell.org/ghc-6.8/ghc/

patch applied (ghc-6.8/ghc): Teach push-all how to send as well

2008-05-21 Thread Ian Lynagh
Sat May 17 07:21:12 PDT 2008 Ian Lynagh <[EMAIL PROTECTED]> * Teach push-all how to send as well M ./push-all -5 +8 View patch online: http://darcs.haskell.org/ghc-6.8/ghc/_darcs/patches/20080517142112-3fd76-83616f0fb7af36c0f5c22471ea362495fc829a0e.gz _

patch applied (testsuite): tc199 is now expect-pass

2008-05-21 Thread Simon Peyton Jones
Wed May 21 07:13:11 PDT 2008 [EMAIL PROTECTED] * tc199 is now expect-pass M ./tests/ghc-regress/typecheck/should_compile/all.T -1 +1 View patch online: http://darcs.haskell.org/testsuite/_darcs/patches/20080521141311-1287e-1a6834e6b63c5b8fd5b1e5d44ef5f93b574781cd.gz __

patch applied (ghc): Fix Trac #1061: refactor handling of default methods

2008-05-21 Thread Simon Peyton Jones
Wed May 21 06:00:28 PDT 2008 [EMAIL PROTECTED] * Fix Trac #1061: refactor handling of default methods In an instance declaration, omitted methods get a definition that uses the default method. We used to generate source code and feed it to the type checker. But tc199 shows that is a b

patch applied (ghc): Comment typo

2008-05-21 Thread Simon Peyton Jones
Wed May 21 06:00:16 PDT 2008 [EMAIL PROTECTED] * Comment typo M ./compiler/hsSyn/HsBinds.lhs -1 +1 View patch online: http://darcs.haskell.org/ghc/_darcs/patches/20080521130016-1287e-bb4e0c92331d2883fbb4da3acd18718d698cbb72.gz ___ Cvs-ghc mailin

patch applied (ghc): Fix Trac #2292: improve error message for lone signatures

2008-05-21 Thread Simon Peyton Jones
Tue May 20 07:30:48 PDT 2008 [EMAIL PROTECTED] * Fix Trac #2292: improve error message for lone signatures Refactoring reduces code and improves error messages M ./compiler/hsSyn/HsBinds.lhs -18 +15 M ./compiler/rename/RnBinds.lhs -72 +90 M ./compiler/rename/RnEnv.lhs -30 +1

patch applied (ghc): Fix Trac #2293: improve error reporting for duplicate declarations

2008-05-21 Thread Simon Peyton Jones
Tue May 20 07:30:06 PDT 2008 [EMAIL PROTECTED] * Fix Trac #2293: improve error reporting for duplicate declarations M ./compiler/basicTypes/RdrName.lhs -1 +22 M ./compiler/rename/RnNames.lhs -24 +22 View patch online: http://darcs.haskell.org/ghc/_darcs/patches/20080520143006-1287e-b7d

patch applied (ghc): Tuples cannot contain unboxed types

2008-05-21 Thread Simon Peyton Jones
Thu May 15 04:53:32 PDT 2008 [EMAIL PROTECTED] * Tuples cannot contain unboxed types This bug allowed, for example f = let x = ( 1#, 'x' ) in x which is ill-typed because you can't put an unboxed value in a tuple. Core Lint fails on this program. The patch makes the progr

patch applied (testsuite): Update tests to improvements in renamer error reporting (duplicate decls and misplaced sigs)

2008-05-21 Thread Simon Peyton Jones
Wed May 21 02:04:05 PDT 2008 [EMAIL PROTECTED] * Update tests to improvements in renamer error reporting (duplicate decls and misplaced sigs) M ./tests/ghc-regress/module/mod45.stderr -3 +1 M ./tests/ghc-regress/module/mod67.stderr -1 +2 M ./tests/ghc-regress/rename/should_fail/rn_

patch applied (testsuite): Test for unboxed values in tuples

2008-05-21 Thread Simon Peyton Jones
Wed May 21 01:36:00 PDT 2008 [EMAIL PROTECTED] * Test for unboxed values in tuples M ./tests/ghc-regress/typecheck/should_fail/all.T +1 A ./tests/ghc-regress/typecheck/should_fail/tcfail200.hs A ./tests/ghc-regress/typecheck/should_fail/tcfail200.stderr View patch online: http://da

Daily report for head

2008-05-21 Thread BuildBot Collator
Build results: x86-64 Linux head: lost x86 Windows head: fail (failed getsubrepos) x86 Windows head fast: pass lost pass pass gabor head:fail (failed darcs) kahl G5 Gentoo Linux head: pass tnaur x86 Linux head: pass x86-64 Linux head unreg: lost Old unex

Daily report for stable

2008-05-21 Thread BuildBot Collator
Build results: gabor stable:lost kahl G5 Gentoo Linux stable: fail (failed darcs) macgyver PPC OSX stable: pass tnaur PPC OSX stable 2: pass x86 Windows stable fast: pass lost pass pass pass x86-64 Linux stable: lost Dropping unexpected test passes reports from