Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-13 Thread Krzysztof Skrzętnicki
You can also download binary tarball, untar, ./configure
--prefix=$HOME/ghc-7.0.2, make install, export PATH=$PATH:$HOME/ghc-7.0.2
and you will be good to go.

Best regards,
Krzysztof Skrzętnicki

On Mon, Mar 14, 2011 at 02:15, Ertugrul Soeylemez  wrote:

> I know, but at least I can go on with development.  I hope, the problem
> will be fixed soon.
>
>
> vagif.ve...@gmail.com wrote:
>
> > No, it is not solved.
> > With -fproduction flag you are loosing devel-server functionality.
> >
> > On Saturday, March 12, 2011 02:45:11 PM Ertugrul Soeylemez wrote:
> > > Oh, I just noticed the other thread about this issue.  Compiling Yesod
> > > with the -fproduction flag solved it.
> > >
> > > Thanks to Michael for that.
> > >
> > >
> > > Greets,
> > > Ertugrul
> > >
> > > Ertugrul Soeylemez  wrote:
> > > > Hello Ryan,
> > > >
> > > > thanks a lot.
> > > >
> > > > Is there a workaround for this, until it's fixed?
> > > >
> > > >
> > > > Greets,
> > > > Ertugrul
> > > >
> > > > Ryan Yates  wrote:
> > > > > Looks to be reported here:
> > > > >
> > > > > http://hackage.haskell.org/trac/ghc/ticket/5004
> > > > >
> > > > >
> > > > > Ryan
> > > > >
> > > > > On Sat, Mar 12, 2011 at 3:26 PM, Ertugrul Soeylemez 
> wrote:
> > > > > > Hello there,
> > > > > >
> > > > > > today I have upgraded to GHC 7.0.2 by doing a system update on my
> > > > > > Arch Linux box (x86, 32 bits), and I'm having difficulties to
> > > > > > install Yesod. Its dependencies seem to have been installed
> without
> > > > > > problems, but the
> > > > > >
> > > > > > Yesod package itself fails.  The complete build log follows:
> > > > > >% cabal install yesod
> > > > > >Resolving dependencies...
> > > > > >Configuring yesod-0.7.1...
> > > > > >Preprocessing library yesod-0.7.1...
> > > > > >Preprocessing executables for yesod-0.7.1...
> > > > > >Building yesod-0.7.1...
> > > > > >[1 of 1] Compiling Yesod( Yesod.hs,
> dist/build/Yesod.o
> > > > > >) Registering yesod-0.7.1...
> > > > > >[1 of 2] Compiling CodeGen  ( CodeGen.hs,
> > > > > >
> > > > > > dist/build/yesod/yesod-tmp/CodeGen.o )
> > > > > >
> > > > > >[2 of 2] Compiling Main ( scaffold.hs,
> > > > > >
> > > > > > dist/build/yesod/yesod-tmp/Main.o )
> > > > > >
> > > > > >Loading package ghc-prim ... linking ... done.
> > > > > >Loading package integer-gmp ... linking ... done.
> > > > > >Loading package base ... linking ... done.
> > > > > >Loading package bytestring-0.9.1.10 ... linking ... done.
> > > > > >Loading package base64-bytestring-0.1.0.2 ... linking ...
> done.
> > > > > >Loading package array-0.3.0.2 ... linking ... done.
> > > > > >Loading package containers-0.4.0.0 ... linking ... done.
> > > > > >Loading package cereal-0.3.0.0 ... linking ... done.
> > > > > >Loading package filepath-1.2.0.0 ... linking ... done.
> > > > > >Loading package old-locale-1.0.0.2 ... linking ... done.
> > > > > >Loading package old-time-1.0.0.6 ... linking ... done.
> > > > > >Loading package unix-2.4.2.0 ... linking ... done.
> > > > > >Loading package directory-1.1.0.0 ... linking ... done.
> > > > > >Loading package binary-0.5.0.2 ... linking ... done.
> > > > > >Loading package data-default-0.2.0.1 ... linking ... done.
> > > > > >Loading package tagged-0.2 ... linking ... done.
> > > > > >Loading package crypto-api-0.5.2 ... linking ... done.
> > > > > >Loading package pureMD5-2.1.0.3 ... linking ... done.
> > > > > >Loading package pretty-1.0.1.2 ... linking ... done.
> > > > > >Loading package template-haskell ... linking ... done.
> > > > > >Loading package transformers-0.2.2.0 ... linking ... done.
> > > > > >Loading package deepseq-1.1.0.2 ... linking ... done.
> > > > > >Loading package text-0.11.0.5 ... linking ... done.
> > > > > >Loading package blaze-builder-0.2.1.4 ... linking ... done.
> > > > > >Loading package blaze-html-0.4.1.0 ... linking ... done.
> > > > > >Loading package file-embed-0.0.3.1 ... linking ... done.
> > > > > >Loading package time-1.2.0.3 ... linking ... done.
> > > > > >Loading package unix-compat-0.2.1.1 ... linking ... done.
> > > > > >Loading package enumerator-0.4.7 ... linking ... done.
> > > > > >Loading package mtl-2.0.1.0 ... linking ... done.
> > > > > >Loading package parsec-3.1.1 ... linking ... done.
> > > > > >Loading package network-2.2.1.10 ... linking ... done.
> > > > > >Loading package wai-0.3.2 ... linking ... done.
> > > > > >Loading package utf8-string-0.3.6 ... linking ... done.
> > > > > >Loading package web-routes-0.23.4 ... linking ... done.
> > > > > >Loading package wai-app-static-0.0.1.1 ... linking ... done.
> > > > > >Loading package random-1.0.0.3 ... linking ... done.
> > > > > >Loading package clientsession-0.4.1 ... linking ... done.
> > > > > >Loading pa

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-13 Thread Ertugrul Soeylemez
I know, but at least I can go on with development.  I hope, the problem
will be fixed soon.


vagif.ve...@gmail.com wrote:

> No, it is not solved.
> With -fproduction flag you are loosing devel-server functionality.
> 
> On Saturday, March 12, 2011 02:45:11 PM Ertugrul Soeylemez wrote:
> > Oh, I just noticed the other thread about this issue.  Compiling Yesod
> > with the -fproduction flag solved it.
> > 
> > Thanks to Michael for that.
> > 
> > 
> > Greets,
> > Ertugrul
> > 
> > Ertugrul Soeylemez  wrote:
> > > Hello Ryan,
> > > 
> > > thanks a lot.
> > > 
> > > Is there a workaround for this, until it's fixed?
> > > 
> > > 
> > > Greets,
> > > Ertugrul
> > > 
> > > Ryan Yates  wrote:
> > > > Looks to be reported here:
> > > > 
> > > > http://hackage.haskell.org/trac/ghc/ticket/5004
> > > > 
> > > > 
> > > > Ryan
> > > > 
> > > > On Sat, Mar 12, 2011 at 3:26 PM, Ertugrul Soeylemez  
> > > > wrote:
> > > > > Hello there,
> > > > > 
> > > > > today I have upgraded to GHC 7.0.2 by doing a system update on my
> > > > > Arch Linux box (x86, 32 bits), and I'm having difficulties to
> > > > > install Yesod. Its dependencies seem to have been installed without
> > > > > problems, but the
> > > > > 
> > > > > Yesod package itself fails.  The complete build log follows:
> > > > >% cabal install yesod
> > > > >Resolving dependencies...
> > > > >Configuring yesod-0.7.1...
> > > > >Preprocessing library yesod-0.7.1...
> > > > >Preprocessing executables for yesod-0.7.1...
> > > > >Building yesod-0.7.1...
> > > > >[1 of 1] Compiling Yesod( Yesod.hs, dist/build/Yesod.o
> > > > >) Registering yesod-0.7.1...
> > > > >[1 of 2] Compiling CodeGen  ( CodeGen.hs,
> > > > > 
> > > > > dist/build/yesod/yesod-tmp/CodeGen.o )
> > > > > 
> > > > >[2 of 2] Compiling Main ( scaffold.hs,
> > > > > 
> > > > > dist/build/yesod/yesod-tmp/Main.o )
> > > > > 
> > > > >Loading package ghc-prim ... linking ... done.
> > > > >Loading package integer-gmp ... linking ... done.
> > > > >Loading package base ... linking ... done.
> > > > >Loading package bytestring-0.9.1.10 ... linking ... done.
> > > > >Loading package base64-bytestring-0.1.0.2 ... linking ... done.
> > > > >Loading package array-0.3.0.2 ... linking ... done.
> > > > >Loading package containers-0.4.0.0 ... linking ... done.
> > > > >Loading package cereal-0.3.0.0 ... linking ... done.
> > > > >Loading package filepath-1.2.0.0 ... linking ... done.
> > > > >Loading package old-locale-1.0.0.2 ... linking ... done.
> > > > >Loading package old-time-1.0.0.6 ... linking ... done.
> > > > >Loading package unix-2.4.2.0 ... linking ... done.
> > > > >Loading package directory-1.1.0.0 ... linking ... done.
> > > > >Loading package binary-0.5.0.2 ... linking ... done.
> > > > >Loading package data-default-0.2.0.1 ... linking ... done.
> > > > >Loading package tagged-0.2 ... linking ... done.
> > > > >Loading package crypto-api-0.5.2 ... linking ... done.
> > > > >Loading package pureMD5-2.1.0.3 ... linking ... done.
> > > > >Loading package pretty-1.0.1.2 ... linking ... done.
> > > > >Loading package template-haskell ... linking ... done.
> > > > >Loading package transformers-0.2.2.0 ... linking ... done.
> > > > >Loading package deepseq-1.1.0.2 ... linking ... done.
> > > > >Loading package text-0.11.0.5 ... linking ... done.
> > > > >Loading package blaze-builder-0.2.1.4 ... linking ... done.
> > > > >Loading package blaze-html-0.4.1.0 ... linking ... done.
> > > > >Loading package file-embed-0.0.3.1 ... linking ... done.
> > > > >Loading package time-1.2.0.3 ... linking ... done.
> > > > >Loading package unix-compat-0.2.1.1 ... linking ... done.
> > > > >Loading package enumerator-0.4.7 ... linking ... done.
> > > > >Loading package mtl-2.0.1.0 ... linking ... done.
> > > > >Loading package parsec-3.1.1 ... linking ... done.
> > > > >Loading package network-2.2.1.10 ... linking ... done.
> > > > >Loading package wai-0.3.2 ... linking ... done.
> > > > >Loading package utf8-string-0.3.6 ... linking ... done.
> > > > >Loading package web-routes-0.23.4 ... linking ... done.
> > > > >Loading package wai-app-static-0.0.1.1 ... linking ... done.
> > > > >Loading package random-1.0.0.3 ... linking ... done.
> > > > >Loading package clientsession-0.4.1 ... linking ... done.
> > > > >Loading package cookie-0.0.0 ... linking ... done.
> > > > >Loading package failure-0.1.0.1 ... linking ... done.
> > > > >Loading package extensible-exceptions-0.1.1.2 ... linking ...
> > > > >done. Loading package QuickCheck-2.4.0.1 ... linking ... done.
> > > > >Loading package blaze-builder-enumerator-0.2.0.1 ... linking ...
> > > > >done. Loading package json-types-0.1 ... linking ... done.
> > > > >Loading packag

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread vagif . verdi
No, it is not solved.
With -fproduction flag you are loosing devel-server functionality.

On Saturday, March 12, 2011 02:45:11 PM Ertugrul Soeylemez wrote:
> Oh, I just noticed the other thread about this issue.  Compiling Yesod
> with the -fproduction flag solved it.
> 
> Thanks to Michael for that.
> 
> 
> Greets,
> Ertugrul
> 
> Ertugrul Soeylemez  wrote:
> > Hello Ryan,
> > 
> > thanks a lot.
> > 
> > Is there a workaround for this, until it's fixed?
> > 
> > 
> > Greets,
> > Ertugrul
> > 
> > Ryan Yates  wrote:
> > > Looks to be reported here:
> > > 
> > > http://hackage.haskell.org/trac/ghc/ticket/5004
> > > 
> > > 
> > > Ryan
> > > 
> > > On Sat, Mar 12, 2011 at 3:26 PM, Ertugrul Soeylemez  wrote:
> > > > Hello there,
> > > > 
> > > > today I have upgraded to GHC 7.0.2 by doing a system update on my
> > > > Arch Linux box (x86, 32 bits), and I'm having difficulties to
> > > > install Yesod. Its dependencies seem to have been installed without
> > > > problems, but the
> > > > 
> > > > Yesod package itself fails.  The complete build log follows:
> > > >% cabal install yesod
> > > >Resolving dependencies...
> > > >Configuring yesod-0.7.1...
> > > >Preprocessing library yesod-0.7.1...
> > > >Preprocessing executables for yesod-0.7.1...
> > > >Building yesod-0.7.1...
> > > >[1 of 1] Compiling Yesod( Yesod.hs, dist/build/Yesod.o
> > > >) Registering yesod-0.7.1...
> > > >[1 of 2] Compiling CodeGen  ( CodeGen.hs,
> > > > 
> > > > dist/build/yesod/yesod-tmp/CodeGen.o )
> > > > 
> > > >[2 of 2] Compiling Main ( scaffold.hs,
> > > > 
> > > > dist/build/yesod/yesod-tmp/Main.o )
> > > > 
> > > >Loading package ghc-prim ... linking ... done.
> > > >Loading package integer-gmp ... linking ... done.
> > > >Loading package base ... linking ... done.
> > > >Loading package bytestring-0.9.1.10 ... linking ... done.
> > > >Loading package base64-bytestring-0.1.0.2 ... linking ... done.
> > > >Loading package array-0.3.0.2 ... linking ... done.
> > > >Loading package containers-0.4.0.0 ... linking ... done.
> > > >Loading package cereal-0.3.0.0 ... linking ... done.
> > > >Loading package filepath-1.2.0.0 ... linking ... done.
> > > >Loading package old-locale-1.0.0.2 ... linking ... done.
> > > >Loading package old-time-1.0.0.6 ... linking ... done.
> > > >Loading package unix-2.4.2.0 ... linking ... done.
> > > >Loading package directory-1.1.0.0 ... linking ... done.
> > > >Loading package binary-0.5.0.2 ... linking ... done.
> > > >Loading package data-default-0.2.0.1 ... linking ... done.
> > > >Loading package tagged-0.2 ... linking ... done.
> > > >Loading package crypto-api-0.5.2 ... linking ... done.
> > > >Loading package pureMD5-2.1.0.3 ... linking ... done.
> > > >Loading package pretty-1.0.1.2 ... linking ... done.
> > > >Loading package template-haskell ... linking ... done.
> > > >Loading package transformers-0.2.2.0 ... linking ... done.
> > > >Loading package deepseq-1.1.0.2 ... linking ... done.
> > > >Loading package text-0.11.0.5 ... linking ... done.
> > > >Loading package blaze-builder-0.2.1.4 ... linking ... done.
> > > >Loading package blaze-html-0.4.1.0 ... linking ... done.
> > > >Loading package file-embed-0.0.3.1 ... linking ... done.
> > > >Loading package time-1.2.0.3 ... linking ... done.
> > > >Loading package unix-compat-0.2.1.1 ... linking ... done.
> > > >Loading package enumerator-0.4.7 ... linking ... done.
> > > >Loading package mtl-2.0.1.0 ... linking ... done.
> > > >Loading package parsec-3.1.1 ... linking ... done.
> > > >Loading package network-2.2.1.10 ... linking ... done.
> > > >Loading package wai-0.3.2 ... linking ... done.
> > > >Loading package utf8-string-0.3.6 ... linking ... done.
> > > >Loading package web-routes-0.23.4 ... linking ... done.
> > > >Loading package wai-app-static-0.0.1.1 ... linking ... done.
> > > >Loading package random-1.0.0.3 ... linking ... done.
> > > >Loading package clientsession-0.4.1 ... linking ... done.
> > > >Loading package cookie-0.0.0 ... linking ... done.
> > > >Loading package failure-0.1.0.1 ... linking ... done.
> > > >Loading package extensible-exceptions-0.1.1.2 ... linking ...
> > > >done. Loading package QuickCheck-2.4.0.1 ... linking ... done.
> > > >Loading package blaze-builder-enumerator-0.2.0.1 ... linking ...
> > > >done. Loading package json-types-0.1 ... linking ... done.
> > > >Loading package json-enumerator-0.0.1 ... linking ... done.
> > > >Loading package hamlet-0.7.2 ... linking ... done.
> > > >Loading package monad-peel-0.1 ... linking ... done.
> > > >Loading package zlib-0.5.3.1 ... linking ... done.
> > > >Loading package zlib-bindings-0.0.0 ... linking ... done.
> > > >Loading package wai-ext

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread Ertugrul Soeylemez
Oh, I just noticed the other thread about this issue.  Compiling Yesod
with the -fproduction flag solved it.

Thanks to Michael for that.


Greets,
Ertugrul


Ertugrul Soeylemez  wrote:

> Hello Ryan,
> 
> thanks a lot.
> 
> Is there a workaround for this, until it's fixed?
> 
> 
> Greets,
> Ertugrul
> 
> 
> Ryan Yates  wrote:
> 
> > Looks to be reported here:
> > 
> > http://hackage.haskell.org/trac/ghc/ticket/5004
> > 
> > 
> > Ryan
> > 
> > On Sat, Mar 12, 2011 at 3:26 PM, Ertugrul Soeylemez  wrote:
> > 
> > > Hello there,
> > >
> > > today I have upgraded to GHC 7.0.2 by doing a system update on my Arch
> > > Linux box (x86, 32 bits), and I'm having difficulties to install Yesod.
> > > Its dependencies seem to have been installed without problems, but the
> > > Yesod package itself fails.  The complete build log follows:
> > >
> > >% cabal install yesod
> > >Resolving dependencies...
> > >Configuring yesod-0.7.1...
> > >Preprocessing library yesod-0.7.1...
> > >Preprocessing executables for yesod-0.7.1...
> > >Building yesod-0.7.1...
> > >[1 of 1] Compiling Yesod( Yesod.hs, dist/build/Yesod.o )
> > >Registering yesod-0.7.1...
> > >[1 of 2] Compiling CodeGen  ( CodeGen.hs,
> > > dist/build/yesod/yesod-tmp/CodeGen.o )
> > >[2 of 2] Compiling Main ( scaffold.hs,
> > > dist/build/yesod/yesod-tmp/Main.o )
> > >Loading package ghc-prim ... linking ... done.
> > >Loading package integer-gmp ... linking ... done.
> > >Loading package base ... linking ... done.
> > >Loading package bytestring-0.9.1.10 ... linking ... done.
> > >Loading package base64-bytestring-0.1.0.2 ... linking ... done.
> > >Loading package array-0.3.0.2 ... linking ... done.
> > >Loading package containers-0.4.0.0 ... linking ... done.
> > >Loading package cereal-0.3.0.0 ... linking ... done.
> > >Loading package filepath-1.2.0.0 ... linking ... done.
> > >Loading package old-locale-1.0.0.2 ... linking ... done.
> > >Loading package old-time-1.0.0.6 ... linking ... done.
> > >Loading package unix-2.4.2.0 ... linking ... done.
> > >Loading package directory-1.1.0.0 ... linking ... done.
> > >Loading package binary-0.5.0.2 ... linking ... done.
> > >Loading package data-default-0.2.0.1 ... linking ... done.
> > >Loading package tagged-0.2 ... linking ... done.
> > >Loading package crypto-api-0.5.2 ... linking ... done.
> > >Loading package pureMD5-2.1.0.3 ... linking ... done.
> > >Loading package pretty-1.0.1.2 ... linking ... done.
> > >Loading package template-haskell ... linking ... done.
> > >Loading package transformers-0.2.2.0 ... linking ... done.
> > >Loading package deepseq-1.1.0.2 ... linking ... done.
> > >Loading package text-0.11.0.5 ... linking ... done.
> > >Loading package blaze-builder-0.2.1.4 ... linking ... done.
> > >Loading package blaze-html-0.4.1.0 ... linking ... done.
> > >Loading package file-embed-0.0.3.1 ... linking ... done.
> > >Loading package time-1.2.0.3 ... linking ... done.
> > >Loading package unix-compat-0.2.1.1 ... linking ... done.
> > >Loading package enumerator-0.4.7 ... linking ... done.
> > >Loading package mtl-2.0.1.0 ... linking ... done.
> > >Loading package parsec-3.1.1 ... linking ... done.
> > >Loading package network-2.2.1.10 ... linking ... done.
> > >Loading package wai-0.3.2 ... linking ... done.
> > >Loading package utf8-string-0.3.6 ... linking ... done.
> > >Loading package web-routes-0.23.4 ... linking ... done.
> > >Loading package wai-app-static-0.0.1.1 ... linking ... done.
> > >Loading package random-1.0.0.3 ... linking ... done.
> > >Loading package clientsession-0.4.1 ... linking ... done.
> > >Loading package cookie-0.0.0 ... linking ... done.
> > >Loading package failure-0.1.0.1 ... linking ... done.
> > >Loading package extensible-exceptions-0.1.1.2 ... linking ... done.
> > >Loading package QuickCheck-2.4.0.1 ... linking ... done.
> > >Loading package blaze-builder-enumerator-0.2.0.1 ... linking ... done.
> > >Loading package json-types-0.1 ... linking ... done.
> > >Loading package json-enumerator-0.0.1 ... linking ... done.
> > >Loading package hamlet-0.7.2 ... linking ... done.
> > >Loading package monad-peel-0.1 ... linking ... done.
> > >Loading package zlib-0.5.3.1 ... linking ... done.
> > >Loading package zlib-bindings-0.0.0 ... linking ... done.
> > >Loading package wai-extra-0.3.3 ... linking ... done.
> > >Loading package web-routes-quasi-0.6.3.1 ... linking ... done.
> > >Loading package yesod-core-0.7.0.1 ... linking ... done.
> > >Loading package yesod-static-0.0.0.1 ... linking ... done.
> > >Loading package SHA-1.4.1.3 ... linking ... done.
> > >Loading package RSA-1.0.6.1 ... linking ... done.
> > >Loading package data-

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread Ertugrul Soeylemez
Hello Ryan,

thanks a lot.

Is there a workaround for this, until it's fixed?


Greets,
Ertugrul


Ryan Yates  wrote:

> Looks to be reported here:
> 
> http://hackage.haskell.org/trac/ghc/ticket/5004
> 
> 
> Ryan
> 
> On Sat, Mar 12, 2011 at 3:26 PM, Ertugrul Soeylemez  wrote:
> 
> > Hello there,
> >
> > today I have upgraded to GHC 7.0.2 by doing a system update on my Arch
> > Linux box (x86, 32 bits), and I'm having difficulties to install Yesod.
> > Its dependencies seem to have been installed without problems, but the
> > Yesod package itself fails.  The complete build log follows:
> >
> >% cabal install yesod
> >Resolving dependencies...
> >Configuring yesod-0.7.1...
> >Preprocessing library yesod-0.7.1...
> >Preprocessing executables for yesod-0.7.1...
> >Building yesod-0.7.1...
> >[1 of 1] Compiling Yesod( Yesod.hs, dist/build/Yesod.o )
> >Registering yesod-0.7.1...
> >[1 of 2] Compiling CodeGen  ( CodeGen.hs,
> > dist/build/yesod/yesod-tmp/CodeGen.o )
> >[2 of 2] Compiling Main ( scaffold.hs,
> > dist/build/yesod/yesod-tmp/Main.o )
> >Loading package ghc-prim ... linking ... done.
> >Loading package integer-gmp ... linking ... done.
> >Loading package base ... linking ... done.
> >Loading package bytestring-0.9.1.10 ... linking ... done.
> >Loading package base64-bytestring-0.1.0.2 ... linking ... done.
> >Loading package array-0.3.0.2 ... linking ... done.
> >Loading package containers-0.4.0.0 ... linking ... done.
> >Loading package cereal-0.3.0.0 ... linking ... done.
> >Loading package filepath-1.2.0.0 ... linking ... done.
> >Loading package old-locale-1.0.0.2 ... linking ... done.
> >Loading package old-time-1.0.0.6 ... linking ... done.
> >Loading package unix-2.4.2.0 ... linking ... done.
> >Loading package directory-1.1.0.0 ... linking ... done.
> >Loading package binary-0.5.0.2 ... linking ... done.
> >Loading package data-default-0.2.0.1 ... linking ... done.
> >Loading package tagged-0.2 ... linking ... done.
> >Loading package crypto-api-0.5.2 ... linking ... done.
> >Loading package pureMD5-2.1.0.3 ... linking ... done.
> >Loading package pretty-1.0.1.2 ... linking ... done.
> >Loading package template-haskell ... linking ... done.
> >Loading package transformers-0.2.2.0 ... linking ... done.
> >Loading package deepseq-1.1.0.2 ... linking ... done.
> >Loading package text-0.11.0.5 ... linking ... done.
> >Loading package blaze-builder-0.2.1.4 ... linking ... done.
> >Loading package blaze-html-0.4.1.0 ... linking ... done.
> >Loading package file-embed-0.0.3.1 ... linking ... done.
> >Loading package time-1.2.0.3 ... linking ... done.
> >Loading package unix-compat-0.2.1.1 ... linking ... done.
> >Loading package enumerator-0.4.7 ... linking ... done.
> >Loading package mtl-2.0.1.0 ... linking ... done.
> >Loading package parsec-3.1.1 ... linking ... done.
> >Loading package network-2.2.1.10 ... linking ... done.
> >Loading package wai-0.3.2 ... linking ... done.
> >Loading package utf8-string-0.3.6 ... linking ... done.
> >Loading package web-routes-0.23.4 ... linking ... done.
> >Loading package wai-app-static-0.0.1.1 ... linking ... done.
> >Loading package random-1.0.0.3 ... linking ... done.
> >Loading package clientsession-0.4.1 ... linking ... done.
> >Loading package cookie-0.0.0 ... linking ... done.
> >Loading package failure-0.1.0.1 ... linking ... done.
> >Loading package extensible-exceptions-0.1.1.2 ... linking ... done.
> >Loading package QuickCheck-2.4.0.1 ... linking ... done.
> >Loading package blaze-builder-enumerator-0.2.0.1 ... linking ... done.
> >Loading package json-types-0.1 ... linking ... done.
> >Loading package json-enumerator-0.0.1 ... linking ... done.
> >Loading package hamlet-0.7.2 ... linking ... done.
> >Loading package monad-peel-0.1 ... linking ... done.
> >Loading package zlib-0.5.3.1 ... linking ... done.
> >Loading package zlib-bindings-0.0.0 ... linking ... done.
> >Loading package wai-extra-0.3.3 ... linking ... done.
> >Loading package web-routes-quasi-0.6.3.1 ... linking ... done.
> >Loading package yesod-core-0.7.0.1 ... linking ... done.
> >Loading package yesod-static-0.0.0.1 ... linking ... done.
> >Loading package SHA-1.4.1.3 ... linking ... done.
> >Loading package RSA-1.0.6.1 ... linking ... done.
> >Loading package data-object-0.3.1.6 ... linking ... done.
> >Loading package attoparsec-0.8.5.0 ... linking ... done.
> >Loading package bytestring-nums-0.3.2 ... linking ... done.
> >Loading package bytestring-trie-0.2.3 ... linking ... done.
> >Loading package JSONb-1.0.3 ... linking ... done.
> >Loading package attempt-0.3.0 ... linking ... done.
> >Loading package convert

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread Ryan Yates
Looks to be reported here:

http://hackage.haskell.org/trac/ghc/ticket/5004


Ryan

On Sat, Mar 12, 2011 at 3:26 PM, Ertugrul Soeylemez  wrote:

> Hello there,
>
> today I have upgraded to GHC 7.0.2 by doing a system update on my Arch
> Linux box (x86, 32 bits), and I'm having difficulties to install Yesod.
> Its dependencies seem to have been installed without problems, but the
> Yesod package itself fails.  The complete build log follows:
>
>% cabal install yesod
>Resolving dependencies...
>Configuring yesod-0.7.1...
>Preprocessing library yesod-0.7.1...
>Preprocessing executables for yesod-0.7.1...
>Building yesod-0.7.1...
>[1 of 1] Compiling Yesod( Yesod.hs, dist/build/Yesod.o )
>Registering yesod-0.7.1...
>[1 of 2] Compiling CodeGen  ( CodeGen.hs,
> dist/build/yesod/yesod-tmp/CodeGen.o )
>[2 of 2] Compiling Main ( scaffold.hs,
> dist/build/yesod/yesod-tmp/Main.o )
>Loading package ghc-prim ... linking ... done.
>Loading package integer-gmp ... linking ... done.
>Loading package base ... linking ... done.
>Loading package bytestring-0.9.1.10 ... linking ... done.
>Loading package base64-bytestring-0.1.0.2 ... linking ... done.
>Loading package array-0.3.0.2 ... linking ... done.
>Loading package containers-0.4.0.0 ... linking ... done.
>Loading package cereal-0.3.0.0 ... linking ... done.
>Loading package filepath-1.2.0.0 ... linking ... done.
>Loading package old-locale-1.0.0.2 ... linking ... done.
>Loading package old-time-1.0.0.6 ... linking ... done.
>Loading package unix-2.4.2.0 ... linking ... done.
>Loading package directory-1.1.0.0 ... linking ... done.
>Loading package binary-0.5.0.2 ... linking ... done.
>Loading package data-default-0.2.0.1 ... linking ... done.
>Loading package tagged-0.2 ... linking ... done.
>Loading package crypto-api-0.5.2 ... linking ... done.
>Loading package pureMD5-2.1.0.3 ... linking ... done.
>Loading package pretty-1.0.1.2 ... linking ... done.
>Loading package template-haskell ... linking ... done.
>Loading package transformers-0.2.2.0 ... linking ... done.
>Loading package deepseq-1.1.0.2 ... linking ... done.
>Loading package text-0.11.0.5 ... linking ... done.
>Loading package blaze-builder-0.2.1.4 ... linking ... done.
>Loading package blaze-html-0.4.1.0 ... linking ... done.
>Loading package file-embed-0.0.3.1 ... linking ... done.
>Loading package time-1.2.0.3 ... linking ... done.
>Loading package unix-compat-0.2.1.1 ... linking ... done.
>Loading package enumerator-0.4.7 ... linking ... done.
>Loading package mtl-2.0.1.0 ... linking ... done.
>Loading package parsec-3.1.1 ... linking ... done.
>Loading package network-2.2.1.10 ... linking ... done.
>Loading package wai-0.3.2 ... linking ... done.
>Loading package utf8-string-0.3.6 ... linking ... done.
>Loading package web-routes-0.23.4 ... linking ... done.
>Loading package wai-app-static-0.0.1.1 ... linking ... done.
>Loading package random-1.0.0.3 ... linking ... done.
>Loading package clientsession-0.4.1 ... linking ... done.
>Loading package cookie-0.0.0 ... linking ... done.
>Loading package failure-0.1.0.1 ... linking ... done.
>Loading package extensible-exceptions-0.1.1.2 ... linking ... done.
>Loading package QuickCheck-2.4.0.1 ... linking ... done.
>Loading package blaze-builder-enumerator-0.2.0.1 ... linking ... done.
>Loading package json-types-0.1 ... linking ... done.
>Loading package json-enumerator-0.0.1 ... linking ... done.
>Loading package hamlet-0.7.2 ... linking ... done.
>Loading package monad-peel-0.1 ... linking ... done.
>Loading package zlib-0.5.3.1 ... linking ... done.
>Loading package zlib-bindings-0.0.0 ... linking ... done.
>Loading package wai-extra-0.3.3 ... linking ... done.
>Loading package web-routes-quasi-0.6.3.1 ... linking ... done.
>Loading package yesod-core-0.7.0.1 ... linking ... done.
>Loading package yesod-static-0.0.0.1 ... linking ... done.
>Loading package SHA-1.4.1.3 ... linking ... done.
>Loading package RSA-1.0.6.1 ... linking ... done.
>Loading package data-object-0.3.1.6 ... linking ... done.
>Loading package attoparsec-0.8.5.0 ... linking ... done.
>Loading package bytestring-nums-0.3.2 ... linking ... done.
>Loading package bytestring-trie-0.2.3 ... linking ... done.
>Loading package JSONb-1.0.3 ... linking ... done.
>Loading package attempt-0.3.0 ... linking ... done.
>Loading package convertible-text-0.3.0.9 ... linking ... done.
>Loading package data-object-json-0.3.1.5 ... linking ... done.
>Loading package attoparsec-enumerator-0.2.0.3 ... linking ... done.
>Loading package network-bytestring-0.1.3.4 ... linking ... done.
>Loading package asn1-data-0.4.6 ... linking

[Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread Ertugrul Soeylemez
Hello there,

today I have upgraded to GHC 7.0.2 by doing a system update on my Arch
Linux box (x86, 32 bits), and I'm having difficulties to install Yesod.
Its dependencies seem to have been installed without problems, but the
Yesod package itself fails.  The complete build log follows:

% cabal install yesod
Resolving dependencies...
Configuring yesod-0.7.1...
Preprocessing library yesod-0.7.1...
Preprocessing executables for yesod-0.7.1...
Building yesod-0.7.1...
[1 of 1] Compiling Yesod( Yesod.hs, dist/build/Yesod.o )
Registering yesod-0.7.1...
[1 of 2] Compiling CodeGen  ( CodeGen.hs, 
dist/build/yesod/yesod-tmp/CodeGen.o )
[2 of 2] Compiling Main ( scaffold.hs, 
dist/build/yesod/yesod-tmp/Main.o )
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Loading package bytestring-0.9.1.10 ... linking ... done.
Loading package base64-bytestring-0.1.0.2 ... linking ... done.
Loading package array-0.3.0.2 ... linking ... done.
Loading package containers-0.4.0.0 ... linking ... done.
Loading package cereal-0.3.0.0 ... linking ... done.
Loading package filepath-1.2.0.0 ... linking ... done.
Loading package old-locale-1.0.0.2 ... linking ... done.
Loading package old-time-1.0.0.6 ... linking ... done.
Loading package unix-2.4.2.0 ... linking ... done.
Loading package directory-1.1.0.0 ... linking ... done.
Loading package binary-0.5.0.2 ... linking ... done.
Loading package data-default-0.2.0.1 ... linking ... done.
Loading package tagged-0.2 ... linking ... done.
Loading package crypto-api-0.5.2 ... linking ... done.
Loading package pureMD5-2.1.0.3 ... linking ... done.
Loading package pretty-1.0.1.2 ... linking ... done.
Loading package template-haskell ... linking ... done.
Loading package transformers-0.2.2.0 ... linking ... done.
Loading package deepseq-1.1.0.2 ... linking ... done.
Loading package text-0.11.0.5 ... linking ... done.
Loading package blaze-builder-0.2.1.4 ... linking ... done.
Loading package blaze-html-0.4.1.0 ... linking ... done.
Loading package file-embed-0.0.3.1 ... linking ... done.
Loading package time-1.2.0.3 ... linking ... done.
Loading package unix-compat-0.2.1.1 ... linking ... done.
Loading package enumerator-0.4.7 ... linking ... done.
Loading package mtl-2.0.1.0 ... linking ... done.
Loading package parsec-3.1.1 ... linking ... done.
Loading package network-2.2.1.10 ... linking ... done.
Loading package wai-0.3.2 ... linking ... done.
Loading package utf8-string-0.3.6 ... linking ... done.
Loading package web-routes-0.23.4 ... linking ... done.
Loading package wai-app-static-0.0.1.1 ... linking ... done.
Loading package random-1.0.0.3 ... linking ... done.
Loading package clientsession-0.4.1 ... linking ... done.
Loading package cookie-0.0.0 ... linking ... done.
Loading package failure-0.1.0.1 ... linking ... done.
Loading package extensible-exceptions-0.1.1.2 ... linking ... done.
Loading package QuickCheck-2.4.0.1 ... linking ... done.
Loading package blaze-builder-enumerator-0.2.0.1 ... linking ... done.
Loading package json-types-0.1 ... linking ... done.
Loading package json-enumerator-0.0.1 ... linking ... done.
Loading package hamlet-0.7.2 ... linking ... done.
Loading package monad-peel-0.1 ... linking ... done.
Loading package zlib-0.5.3.1 ... linking ... done.
Loading package zlib-bindings-0.0.0 ... linking ... done.
Loading package wai-extra-0.3.3 ... linking ... done.
Loading package web-routes-quasi-0.6.3.1 ... linking ... done.
Loading package yesod-core-0.7.0.1 ... linking ... done.
Loading package yesod-static-0.0.0.1 ... linking ... done.
Loading package SHA-1.4.1.3 ... linking ... done.
Loading package RSA-1.0.6.1 ... linking ... done.
Loading package data-object-0.3.1.6 ... linking ... done.
Loading package attoparsec-0.8.5.0 ... linking ... done.
Loading package bytestring-nums-0.3.2 ... linking ... done.
Loading package bytestring-trie-0.2.3 ... linking ... done.
Loading package JSONb-1.0.3 ... linking ... done.
Loading package attempt-0.3.0 ... linking ... done.
Loading package convertible-text-0.3.0.9 ... linking ... done.
Loading package data-object-json-0.3.1.5 ... linking ... done.
Loading package attoparsec-enumerator-0.2.0.3 ... linking ... done.
Loading package network-bytestring-0.1.3.4 ... linking ... done.
Loading package asn1-data-0.4.6 ... linking ... done.
Loading package certificate-0.7.0 ... linking ... done.
Loading package primitive-0.3.1 ... linking ... done.
Loading package vector-0.7.0.1 ... linking ... done.
Loading package cryptocipher-0.2.6 ... linking ... done.
Loading package cryptohash-0.6.3