summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* git-annex.cabal: relax 'mtl >= 2.1' constraint to 'mtl >= 2'Gravatar Peter Simons2013-02-28
| | | | | Git-annex doesn't actually depend on mtl version 2.1. By relaxing this constraint, builds can succeed on Ubuntu 12.04.
* fix linkGravatar Joey Hess2013-02-28
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-02-28
|\
* \ Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-02-28
|\ \
| | * Added a commentGravatar http://joeyh.name/2013-02-28
| |/
* | webapp: Only show up to 10 queued transfers.Gravatar Joey Hess2013-02-28
| | | | | | | | | | | | | | | | The transfer queue can grow larger than 10 when queueing transfers for files that were just received, as well as requeueing failed transfers. I probably need to do some work to prevent that, as it could use a lot of RAM. But for now, cap the number of displayed transfers in the webapp, to avoid flooding the browser.
| * Added a commentGravatar http://joeyh.name/2013-02-28
| |
| * Added a commentGravatar http://joeyh.name/2013-02-28
|/
* fixed in gitGravatar Joey Hess2013-02-28
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-02-28
|\
| * (no commit message)Gravatar http://edheil.wordpress.com/2013-02-28
| |
| * Added a comment: Testpack install fails on ubuntu 12.04Gravatar https://www.google.com/accounts/o8/id?id=AItOawn7gQ1zZDdWhXy9H51W2krZYShNmKL3qfM2013-02-28
| |
| * Added a comment: lot of stuck git processesGravatar https://www.google.com/accounts/o8/id?id=AItOawm5iosFbL2By7UFeViqkc6v-hoAtqILeDA2013-02-28
| |
| * removedGravatar https://www.google.com/accounts/o8/id?id=AItOawm5iosFbL2By7UFeViqkc6v-hoAtqILeDA2013-02-28
| |
| * removedGravatar https://www.google.com/accounts/o8/id?id=AItOawm5iosFbL2By7UFeViqkc6v-hoAtqILeDA2013-02-28
| |
| * Added a comment: lot of stuck git processGravatar https://www.google.com/accounts/o8/id?id=AItOawm5iosFbL2By7UFeViqkc6v-hoAtqILeDA2013-02-28
| |
| * Added a comment: lot of stuck git processGravatar https://www.google.com/accounts/o8/id?id=AItOawm5iosFbL2By7UFeViqkc6v-hoAtqILeDA2013-02-28
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawm5iosFbL2By7UFeViqkc6v-hoAtqILeDA2013-02-28
| |
* | allow reloacting the source tree used for building androidGravatar Joey Hess2013-02-28
| | | | | | | | | | Putting it outside the git-annex directory is useful to me, so I don't accidentially tar it up into my release tarball.. which almost happened today.
* | no template haskell here any longerGravatar Joey Hess2013-02-28
| |
| * Added a commentGravatar http://meep.pl/2013-02-28
| |
* | more test output improvementsGravatar Joey Hess2013-02-28
|/
* improve test outputGravatar Joey Hess2013-02-27
|
* Added a commentGravatar http://edheil.wordpress.com/2013-02-28
|
* Android: Enable test suite.Gravatar Joey Hess2013-02-27
|
* Stop depending on testpack.Gravatar Joey Hess2013-02-27
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-02-27
|\
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnxp2XU8gIribhhGhGuYtU6eMMwHv5gUGI2013-02-28
| |
| * Added a commentGravatar http://joeyh.name/2013-02-28
| |
* | improve importsGravatar Joey Hess2013-02-27
| |
* | move Arbitrary instances out of Test and into modules that define the typesGravatar Joey Hess2013-02-27
| | | | | | | | This is possible now that we build-depend on QuickCheck.
* | re-enable fast autobuild from vimGravatar Joey Hess2013-02-27
| |
* | brought back fast ghciGravatar Joey Hess2013-02-27
| |
| * (no commit message)Gravatar http://edheil.wordpress.com/2013-02-28
| |
* | faster fast buildsGravatar Joey Hess2013-02-27
|/
* make `make fast` work in clean treeGravatar Joey Hess2013-02-27
|
* releasing version 4.201302274.20130227Gravatar Joey Hess2013-02-27
|
* add news item for git-annex 4.20130227Gravatar Joey Hess2013-02-27
|
* adjust linux tarball treeGravatar Joey Hess2013-02-27
|
* install fixGravatar Joey Hess2013-02-27
|
* fix broken build-stampGravatar Joey Hess2013-02-27
|
* need build-dep on cabal-installGravatar Joey Hess2013-02-27
|
* finalize releaseGravatar Joey Hess2013-02-27
|
* typoGravatar Joey Hess2013-02-27
|
* disable test suite on AndroidGravatar Joey Hess2013-02-27
| | | | Cannot get QuickCheck to install just now.
* cleanupGravatar Joey Hess2013-02-27
|
* break dependency cycle by special casing running of test commandGravatar Joey Hess2013-02-27
|
* one more android build fixGravatar Joey Hess2013-02-27
|
* embed test suite into git annex; available by running: git annex testGravatar Joey Hess2013-02-27
| | | | | | | | | | | | | | I have seen some other programs do this, and think it's pretty cool. Means you can test wherever it's deployed, as well as at build time. My other reason for doing it is less happy. Cabal's handling of test suites sucks, requiring duplicated info, and even when that's done, it fails to preprocess hsc files here. Building it in avoids that and avoids having to explicitly tell cabal to enable test suites, which would then make it link the test executable every time, which is unnecessarily slow. This also has the benefit that now "make fast test" does a max speed build and tests it.
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-02-27
|\