Re: [Haskell-cafe] test driving cabal install... cabal install and normal install (runghc Setup) don't mix... two package.conf files...

2008-05-30 Thread Duncan Coutts
On Thu, 2008-05-29 at 20:12 -0700, Philip Neustrom wrote: I'm having issues trying to get cabal-install (latest darcs) installed, as well. I'm seeing the message: Hackage/Types.hs:19:29: Module `Distribution.Version' does not export `Dependency' which was mentioned on this list

Re: [Haskell-cafe] test driving cabal install... cabal install and normal install (runghc Setup) don't mix... two package.conf files...

2008-05-30 Thread Thomas Hartman
I think the reason it took longer to build HAppS-Server is that previously, when I was installing the MyProject example from happs.org I was using searchpath. I guess searchpath doesn't compile every single haskell module, whereas runghc Setup build and cabal install does. 2008/5/29 Spencer

[Haskell-cafe] test driving cabal install... cabal install and normal install (runghc Setup) don't mix... two package.conf files...

2008-05-29 Thread Thomas Hartman
After a little drama with zlib, I managed to get cabal-install installed. I then attempted to do cabal install HAppS-Server since this is a module with a lot of dependencies, and in rapid development flux, so perenially painful for me to install. The result is that I managed to install

Re: [Haskell-cafe] test driving cabal install... cabal install and normal install (runghc Setup) don't mix... two package.conf files...

2008-05-29 Thread Daniel Patterson
I think you need to install HAppS-Data etc globally... I'm not sure why locally installed (ie, only your user) packages wouldn't be picked up by runghc Setup.hs'ing, but if they are install system wide it should definitely work. I think it is cabal --global install foo On Thu, 29 May 2008

Re: [Haskell-cafe] test driving cabal install... cabal install and normal install (runghc Setup) don't mix... two package.conf files...

2008-05-29 Thread Thomas Hartman
I see. I had done sudo cabal install HAppS-Server but this just installed with root ownership in my home directory. I'm now trying with sudo cabal install --global HAppS-Server 2008/5/29 Daniel Patterson [EMAIL PROTECTED]: I think you need to install HAppS-Data etc globally... I'm not sure

Re: [Haskell-cafe] test driving cabal install... cabal install and normal install (runghc Setup) don't mix... two package.conf files...

2008-05-29 Thread Thomas Hartman
By the way, it just finally finished. I still think it took way too long. thomas. 2008/5/29 Thomas Hartman [EMAIL PROTECTED]: I see. I had done sudo cabal install HAppS-Server but this just installed with root ownership in my home directory. I'm now trying with sudo cabal install

Re: [Haskell-cafe] test driving cabal install... cabal install and normal install (runghc Setup) don't mix... two package.conf files...

2008-05-29 Thread Thomas Hartman
mistaske, that last comment should have gone on another thread. 2008/5/29 Thomas Hartman [EMAIL PROTECTED]: By the way, it just finally finished. I still think it took way too long. thomas. 2008/5/29 Thomas Hartman [EMAIL PROTECTED]: I see. I had done sudo cabal install HAppS-Server

Re: [Haskell-cafe] test driving cabal install... cabal install and normal install (runghc Setup) don't mix... two package.conf files...

2008-05-29 Thread Philip Neustrom
Excerpts from Thomas Hartman's message of Thu May 29 18:11:04 -0700 2008: After a little drama with zlib, I managed to get cabal-install installed. I then attempted to do cabal install HAppS-Server since this is a module with a lot of dependencies, and in rapid development flux, so

Re: [Haskell-cafe] test driving cabal install... cabal install and normal install (runghc Setup) don't mix... two package.conf files...

2008-05-29 Thread Spencer Janssen
On Thu, May 29, 2008 at 06:11:04PM -0700, Thomas Hartman wrote: After a little drama with zlib, I managed to get cabal-install installed. I then attempted to do cabal install HAppS-Server since this is a module with a lot of dependencies, and in rapid development flux, so perenially