add monad-control to build depends

Will use this to handle exceptions in the Annex monad, yay.
This commit is contained in:
Joey Hess 2011-07-07 19:10:42 -04:00
parent 8c1fa1ab5f
commit 2a108982ad
5 changed files with 5 additions and 1 deletions

1
debian/control vendored
View file

@ -13,6 +13,7 @@ Build-Depends:
libghc-utf8-string-dev,
libghc-hs3-dev (>= 0.5.6),
libghc-testpack-dev [any-i386 any-amd64],
libghc-monad-control-dev,
ikiwiki,
perlmagick,
git | git-core,

View file

@ -23,6 +23,7 @@ To build and use git-annex, you will need:
* [utf8-string](http://hackage.haskell.org/package/utf8-string)
* [SHA](http://hackage.haskell.org/package/SHA)
* [dataenc](http://hackage.haskell.org/package/dataenc)
* [monad-control](http://hackage.haskell.org/package/monad-control)
* [TestPack](http://hackage.haskell.org/cgi-bin/hackage-scripts/package/testpack)
* [QuickCheck 2](http://hackage.haskell.org/package/QuickCheck)
* [HTTP](http://hackage.haskell.org/package/HTTP)

View file

@ -9,6 +9,7 @@ sudo cabal install pcre-light
sudo cabal install quickcheck
sudo cabal install SHA
sudo cabal install dataenc
sudo cabal install monad-control
sudo cabal install HTTP
sudo cabal install hS3

View file

@ -7,6 +7,7 @@ sudo cabal install pcre-light
sudo cabal install quickcheck
sudo cabal install SHA
sudo cabal install dataenc
sudo cabal install monad-control
sudo cabal install HTTP
sudo cabal install hS3 # optional

View file

@ -31,7 +31,7 @@ Executable git-annex
Build-Depends: haskell98, MissingH, hslogger, directory, filepath,
unix, containers, utf8-string, network, mtl, bytestring, old-locale, time,
pcre-light, extensible-exceptions, dataenc, SHA, process, hS3, HTTP,
base < 5
base < 5, monad-control
Executable git-annex-shell
Main-Is: git-annex-shell.hs