Re: gitweb on darcs.haskell.org?

2011-06-21 Thread austin seipp
I am also a fan of cgit: http://hjemli.net/git/cgit/about/ As it's very very fast and has a pleasant UI, but I'm not partial either way (gitweb is probably more than robust enough to handle a repo of GHC's size I'm sure.) On Tue, Jun 21, 2011 at 12:09 PM, Iavor Diatchki wrote: > Hello, > Do we

Re: gitweb on darcs.haskell.org?

2011-06-21 Thread Edward Z. Yang
All of the GHC repos are mirrored to Github, which offers similar facilities. Of course, it wouldn't be too much work to setup gitweb on darcs.haskell.org, I don't think. Edward ___ Glasgow-haskell-users mailing list Glasgow-haskell-users@haskell.org h

gitweb on darcs.haskell.org?

2011-06-21 Thread Iavor Diatchki
Hello, Do we have an instance of "gitweb" for the various ghc related repos running somewhere? If not, I'd be happy to setup an instance, would anyone object? "gitweb" is a web-interface which makes it easy to get a quick overview of what's going on with a collection of repositories. It shows

Testsuite failures and some easy fixes

2011-06-21 Thread Daniel Fischer
Today's HEAD produced 49 unexpected failures, most of which are caused by trivia. - tcrun006 and tcrun029 use datatype contexts which were removed from HEAD (7 ways each), can be fixed by adding a language pragma (cf. also http://hackage.haskell.org/trac/ghc/ticket/5229) - ghcpk01.stdout hasn't

Type function under a forall type

2011-06-21 Thread Stefan Holdermans
Simon, Tom, I hit this type-error message in GHC 7.0.3: Cannot deal with a type function under a forall type: forall e. El e u Is there a fundamental reason why type functions under a forall type are a bad idea? Of is it just something that hasn't been implemented/thought about yet? Cheers