[Haskell-cafe] Fwd: Error in building buster 1.51

2009-11-21 Thread Лев Никитин
Hello. I try to install buster 1.51. It has been uploaded on hackage. During building there is an error. Same error can been seen on hackage (look at build failre: http://hackage.haskell.org/packages/archive/buster/2.51/logs/failure/ghc-6.10 ). How to fix it? Thanks

Re: [Haskell-cafe] Fwd: Error in building buster 1.51

2009-11-21 Thread Mikhail
Hi, In GHC 6.10 exception handling is changed. It is incompatible with 6.8.x versions. It seems that buster wasn't updated for 6.10. So you need or update it your self or ask an author. ___ Sincerely, Mikhail S. Pobolovets 21 ноября 2009 г. 10:11

Re: [Haskell-cafe] Fwd: Error in building buster 1.51

2009-11-21 Thread Jeff Heard
Indeed, it was not updated for the 6.10 exception handling. I'll update in a few days. In the meantime, the file operations module is the culprit. It is a top-level module, so if you aren't using it, you could delete it without consequences. Just delete it and delete its depenency from the

Re: [Haskell-cafe] Wiki software?

2009-11-21 Thread Vladimir Ivanov
I decided to give orchid a try, but failed to install the latest version (0.0.8) using cabal. The reason is that one of the dependencies (filestore) depends on parsec-2.0.* and orchid requires parsec3. I installed filestore-0.2 separately, but nothing changed. $ cabal install orchid Resolving

Re: [Haskell-cafe] Wiki software?

2009-11-21 Thread Gwern Branwen
On Sat, Nov 21, 2009 at 11:14 AM, Vladimir Ivanov vladimir.v.iva...@gmail.com wrote: I decided to give orchid a try, but failed to install the latest version (0.0.8) using cabal. The reason is that one of the dependencies (filestore) depends on parsec-2.0.* and orchid requires parsec3. I

[Haskell-cafe] Re: Wiki software?

2009-11-21 Thread John MacFarlane
+++ Gwern Branwen [Nov 21 09 11:38 ]: On Sat, Nov 21, 2009 at 11:14 AM, Vladimir Ivanov vladimir.v.iva...@gmail.com wrote: I decided to give orchid a try, but failed to install the latest version (0.0.8) using cabal. The reason is that one of the dependencies (filestore) depends on

Re: [Haskell-cafe] Wiki software?

2009-11-21 Thread Petite Abeille
On Nov 18, 2009, at 6:14 PM, Günther Schmidt wrote: And am going to use a wiki for it. Does there a good one exist that's written in Haskell? Not Haskell, but here is a simple one in Lua, Nanoki: http://svr225.stepx.com:3388/nanoki ___

[Haskell-cafe] Haskell Weekly News: Issue 140 - November 22, 2009

2009-11-21 Thread jfredett
--- Haskell Weekly News http://sequence.complete.org/hwn/20091122 Issue 140 - November 22, 2009 --- Welcome to issue 140 of HWN, a newsletter covering

[Haskell-cafe] Haskell Hackathon in Boston January 29th-31st?

2009-11-21 Thread Ravi Nanavati
After all of the fun I had at Hac Phi, I've been thinking for a while that it would be fun to organize a Boston hackathon (to have all of the hackathon fun without the long drive). After some recent chats with my MIT friends, it seems like the weekend just after IAP (January 29th-January 31st)

Re: [Haskell-cafe] Haskell as an alternative to Java

2009-11-21 Thread Paul Johnson
On 18/11/09 11:54, Philippos Apolinarius wrote: I wonder whether the Haskell community tryed to reproduce the study Lisp as an alternative to Java, by Ron Garret / Erann Gat. Sort of. See http://www.haskell.org/haskellwiki/Phone_number Paul.

[Haskell-cafe] Re: Wiki software?

2009-11-21 Thread Gwern Branwen
On Sat, Nov 21, 2009 at 1:13 PM, John MacFarlane j...@berkeley.edu wrote: +++ Gwern Branwen [Nov 21 09 11:38 ]: On Sat, Nov 21, 2009 at 11:14 AM, Vladimir Ivanov vladimir.v.iva...@gmail.com wrote: I decided to give orchid a try, but failed to install the latest version (0.0.8) using cabal.

[Haskell-cafe] haskell code from hi

2009-11-21 Thread Ozgur Akgun
Is there possibly a way of getting source code, given a *.hi file? Yes you're right I deleted all my *.hs files, while trying to remove *.hi ones!! Desperately, -- Ozgur Akgun ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org

Re: [Haskell-cafe] haskell code from hi

2009-11-21 Thread Uwe Hollerbach
Ouch... my condolences, but I think you're screwed. I think the .hi files are purely interface info, and the .o files have all the info on what to actually do (and getting to .hs files from .hi+.o is gonna be like going from sausage to pig, in any case). If you haven't messed with the disk, I

[Haskell-cafe] How to understand such a newtype ?

2009-11-21 Thread zaxis
newtype X a = X (ReaderT XConf (StateT XState IO) a) #ifndef __HADDOCK__ deriving (Functor, Monad, MonadIO, MonadState XState, MonadReader XConf, Typeable) #endif In `X (ReaderT XConf (StateT XState IO) a)`, X is a type constructor, how to understand `(ReaderT XConf (StateT XState IO) a)` ?

Re: [Haskell-cafe] How to understand such a newtype ?

2009-11-21 Thread Felipe Lessa
On Sat, Nov 21, 2009 at 06:20:40PM -0800, zaxis wrote: newtype X a = X (ReaderT XConf (StateT XState IO) a) #ifndef __HADDOCK__ deriving (Functor, Monad, MonadIO, MonadState XState, MonadReader XConf, Typeable) #endif In `X (ReaderT XConf (StateT XState IO) a)`, X is a type constructor,

[Haskell-cafe] What's wrong with code.haskell.org ?

2009-11-21 Thread Andy Stewart
Hi all, I can't use `darcs get --partial http://code.haskell.org/gtk2hs/` to get source code, and can't push patch. What's wrong with code.haskell.org? Rest for weekend? :) -- Andy ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org

Re: [Haskell-cafe] What's wrong with code.haskell.org ?

2009-11-21 Thread John Millikin
code.h.o and community.h.o have rather flaky hosting, and have been going down often recently. The only solution seems to be waiting until the admins notice. On Sat, Nov 21, 2009 at 18:31, Andy Stewart lazycat.mana...@gmail.com wrote: Hi all, I can't use `darcs get --partial

Re: [Haskell-cafe] How to understand such a newtype ?

2009-11-21 Thread zaxis
thanks ! Felipe Lessa wrote: On Sat, Nov 21, 2009 at 06:20:40PM -0800, zaxis wrote: newtype X a = X (ReaderT XConf (StateT XState IO) a) #ifndef __HADDOCK__ deriving (Functor, Monad, MonadIO, MonadState XState, MonadReader XConf, Typeable) #endif In `X (ReaderT XConf (StateT