aboutsummaryrefslogtreecommitdiff
path: root/doc/install
Commit message (Collapse)AuthorAge
* add a step to make sure that $HOME/bin exists - this tripped me up.Gravatar https://www.google.com/accounts/o8/id?id=AItOawk1MwAbPhkvUfU6duYaUnLFC_PXI2VfwtE2013-07-08
|
* Added a commentGravatar http://joeyh.name/2013-07-07
|
* Added a comment: Wheezy SupportGravatar https://www.google.com/accounts/o8/id?id=AItOawmF3Klaj8Q0Czfh1F3jaLF6issqeAhmru42013-07-05
|
* Added a commentGravatar http://joeyh.name/2013-07-05
|
* Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawmhfodZquCI_EEl-f3h7HkROTszlsQL6yA2013-07-04
|
* downloads.kitenet.net now supports https; use it for all linksGravatar Joey Hess2013-06-26
|
* Added a commentGravatar http://joeyh.name/2013-06-25
|
* Added a commentGravatar http://joeyh.name/2013-06-25
|
* Added a comment: Could not resolve dependencies for yesodGravatar krig2013-06-25
|
* I'm told raring has the webappGravatar Joey Hess2013-06-22
|
* Added a comment: Minimum version of Android?Gravatar http://josh.easyid.net/2013-06-18
|
* Added very easy SL6/CentOS6 instructions so that hopefully someone else will ↵Gravatar https://www.google.com/accounts/o8/id?id=AItOawknXZSnvd0_L1Gc1XKYT4qr5e8zTcn371U2013-06-17
| | | | not waste hours of their life
* Added a comment: New PPA only contains git-annexGravatar https://openid.fmarier.org/2013-06-15
|
* update to my new git-annex PPAGravatar https://openid.fmarier.org/2013-06-15
|
* (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawl9J51AO9t75xN5k0sJgg8taUo4y0a4hpQ2013-06-11
|
* Added cabal bin path for brewGravatar https://www.google.com/accounts/o8/id?id=AItOawl9J51AO9t75xN5k0sJgg8taUo4y0a4hpQ2013-06-10
|
* Added a comment: OSX app bundleGravatar https://www.google.com/accounts/o8/id?id=AItOawnEgT3Gxm4AAK4zu3ft5-PsUmY6dr1F-gE2013-06-05
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-05-30
|\
| * Added a commentGravatar http://hands.com/~phil/2013-05-30
| |
| * Added a commentGravatar http://joeyh.name/2013-05-30
| |
* | updateGravatar Joey Hess2013-05-30
| |
| * Added a comment: any chance of a wheezy-backports upload?Gravatar http://hands.com/~phil/2013-05-30
|/
* Added a comment: Some errors after the buildGravatar https://www.google.com/accounts/o8/id?id=AItOawnaH44G3QbxBAYyDwy0PbvL0ls60XoaR3Y2013-05-30
|
* Added a comment: Re: Comment 3Gravatar https://www.google.com/accounts/o8/id?id=AItOawnaH44G3QbxBAYyDwy0PbvL0ls60XoaR3Y2013-05-30
|
* Added a comment: Re: Comment 3Gravatar https://www.google.com/accounts/o8/id?id=AItOawnaH44G3QbxBAYyDwy0PbvL0ls60XoaR3Y2013-05-30
|
* Added a commentGravatar http://joeyh.name/2013-05-30
|
* Added a comment: E: Unable to locate package libghc-libxml-sax-devGravatar https://www.google.com/accounts/o8/id?id=AItOawnaH44G3QbxBAYyDwy0PbvL0ls60XoaR3Y2013-05-30
|
* Added a commentGravatar http://joeyh.name/2013-05-29
|
* Added a comment: libc6 dep version on amd64Gravatar http://mey.vn/2013-05-28
|
* Added a step I had to do on my own OS X machine with 10.6 in order for the ↵Gravatar https://www.google.com/accounts/o8/id?id=AItOawnu1NYw8UF-NoDbKu8YKVGxi8FoZLH7JPs2013-05-25
| | | | build to work.
* Added a comment: PPA Package PinningGravatar https://www.google.com/accounts/o8/id?id=AItOawlQ7ZdQxAps4v0cl5J3wKGWD8243Gy8-m02013-05-23
|
* fix link to windows autobuildGravatar Joey Hess2013-05-21
|
* Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawkx5V3MTbzCXS3J7Mn9FEq8M9bPPYMkAHY2013-05-20
|
* updateGravatar Joey Hess2013-05-19
|
* Add note about no webapp in RaringGravatar https://www.google.com/accounts/o8/id?id=AItOawnFjuvfPpi1kf6l54bxfFUm0Aw_Gf_IO0o2013-05-19
|
* Switch to MonadCatchIO-transformers for better handling of state while ↵Gravatar Joey Hess2013-05-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | catching exceptions. As seen in this bug report, the lifted exception handling using the StateT monad throws away state changes when an action throws an exception. http://git-annex.branchable.com/bugs/git_annex_fork_bombs_on_gpg_file/ .. Which can result in cached values being redundantly calculated, or other possibly worse bugs when the annex state gets out of sync with reality. This switches from a StateT AnnexState to a ReaderT (MVar AnnexState). All changes to the state go via the MVar. So when an Annex action is running inside an exception handler, and it makes some changes, they immediately go into affect in the MVar. If it then throws an exception (or even crashes its thread!), the state changes are still in effect. The MonadCatchIO-transformers change is actually only incidental. I could have kept on using lifted-base for the exception handling. However, I'd have needed to write a new instance of MonadBaseControl for the new monad.. and I didn't write the old instance.. I begged Bas and he kindly sent it to me. Happily, MonadCatchIO-transformers is able to derive a MonadCatchIO instance for my monad. This is a deep level change. It passes the test suite! What could it break? Well.. The most likely breakage would be to code that runs an Annex action in an exception handler, and *wants* state changes to be thrown away. Perhaps the state changes leaves the state inconsistent, or wrong. Since there are relatively few places in git-annex that catch exceptions in the Annex monad, and the AnnexState is generally just used to cache calculated data, this is unlikely to be a problem. Oh yeah, this change also makes Assistant.Types.ThreadedMonad a bit redundant. It's now entirely possible to run concurrent Annex actions in different threads, all sharing access to the same state! The ThreadedMonad just adds some extra work on top of that, with its own MVar, and avoids such actions possibly stepping on one-another's toes. I have not gotten rid of it, but might try that later. Being able to run concurrent Annex actions would simplify parts of the Assistant code.
* remove old comments, there is a build script nowGravatar Joey Hess2013-05-17
|
* fix linkGravatar Joey Hess2013-05-17
|
* updateGravatar Joey Hess2013-05-17
|
* update with autobuilderGravatar Joey Hess2013-05-17
|
* add dep needed with newer ghcGravatar Joey Hess2013-05-17
|
* Added a commentGravatar http://joeyh.name/2013-05-16
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-05-16
|\
* | typoGravatar Joey Hess2013-05-15
| |
| * Added a commentGravatar http://joeyh.name/2013-05-16
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawkGCmVc5qIJaQQgG82Hc5zzBdAVdhe2JEM2013-05-16
|/
* Merge branch 'master' into windowsGravatar Joey Hess2013-05-15
|\
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawkGCmVc5qIJaQQgG82Hc5zzBdAVdhe2JEM2013-05-15
| |
| * updateGravatar Joey Hess2013-05-14
| |
* | Merge branch 'master' into windowsGravatar Joey Hess2013-05-14
|\| | | | | | | | | | | | | | | Conflicts: Annex/Environment.hs Build/Configure.hs Git/Construct.hs Utility/FileMode.hs