summaryrefslogtreecommitdiff
path: root/doc/install/fromscratch.mdwn
Commit message (Collapse)AuthorAge
* reorg and rewrote build-from-source instructionsGravatar Joey Hess2014-09-16
|
* remove the big list of haskell libraries; just use cabalGravatar Joey Hess2014-03-12
|
* depend on warp-tls.. at least for nowGravatar Joey Hess2014-02-28
|
* metadata: FIeld names are now case insensative.Gravatar Joey Hess2014-02-25
|
* add UrlOptions sum typeGravatar Joey Hess2014-02-24
|
* promote stm dependency, since Remote.External needs itGravatar Joey Hess2014-01-20
|
* make note of minimum git versionGravatar Joey Hess2013-12-16
|
* assistant: Batch jobs are now run with ionice and nocache, when those ↵Gravatar Joey Hess2013-12-01
| | | | commands are available.
* always depend on asyncGravatar Joey Hess2013-10-26
|
* Revert "use vector in local status", which was not an improvementGravatar Joey Hess2013-10-07
| | | | This reverts commit c0caa37187e9c062825dd6d5cb6be2dfa63bc7dd.
* use vector in local statusGravatar Joey Hess2013-10-07
| | | | | | Thought was that this would be faster than a map, since a vector can be updated more efficiently. It turns out to not seem to matter; runtime and memory usage are basically identical.
* allow building w/o cryptohashGravatar Joey Hess2013-10-03
| | | | | Mostly for the debian stable autobuilds, which have a too old version to use the Crypto.Hash module.
* explicit cryptohash depGravatar Joey Hess2013-09-22
|
* webapp: Initial support for setting up encrypted removable drives.Gravatar Joey Hess2013-09-16
| | | | | No support yet for generating new gpg keys. No support yet for adding existing encrypted repos from removable drives.
* add gcrypt (optional)Gravatar Joey Hess2013-09-13
|
* Youtube support! (And 53 other video hosts)Gravatar Joey Hess2013-08-22
| | | | | | | | | | When quvi is installed, git-annex addurl automatically uses it to detect when an page is a video, and downloads the video file. web special remote: Also support using quvi, for getting files, or checking if files exist in the web. This commit was sponsored by Mark Hepburn. Thanks!
* importfeed: git-annex becomes a podcatcher in 150 LOCGravatar Joey Hess2013-07-28
|
* 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.
* add dep needed with newer ghcGravatar Joey Hess2013-05-17
|
* Merge branch 'master' into windowsGravatar Joey Hess2013-05-14
|\ | | | | | | | | | | | | | | Conflicts: Annex/Environment.hs Build/Configure.hs Git/Construct.hs Utility/FileMode.hs
| * updateGravatar Joey Hess2013-05-13
| | | | | | | | | | No need to edit Makefile to disable webapp build anymore; just build w/o dependencies installed.
* | add unix-compat to depsGravatar Joey Hess2013-05-11
|/
* add TList, built on DListGravatar Joey Hess2013-04-24
|
* new build depGravatar Joey Hess2013-04-16
|
* Switch from using regex-compat to regex-tdfa, as the C regex library is ↵Gravatar Joey Hess2013-03-08
| | | | rather buggy.
* Stop depending on testpack.Gravatar Joey Hess2013-02-27
|
* Now uses the Haskell Glob library, rather than pcre-light, avoiding the need ↵Gravatar Joey Hess2013-02-11
| | | | to install libpcre. Currently done only for Cabal or when the Makefile is made to use -DWITH_GLOB
* Now uses the Haskell uuid library, rather than needing a uuid program.Gravatar Joey Hess2013-02-10
| | | | | | | | Been meaning to do this for some time; Android port was last straw. Note that newer versions of the uuid library have a Data.UUID.V4 that generates random UUIDs slightly more cleanly, but Debian has an old version of the library, so I do it slightly round-about.
* addurl --fast: Use curl, rather than haskell HTTP library, to support https.Gravatar Joey Hess2013-01-27
|
* depend on both wget and curlGravatar Joey Hess2013-01-27
| | | | | wget is used due to having better progress output, but curl is used in some cases where wget is not appropriate.
* use async to track and manage threadsGravatar Joey Hess2013-01-26
|
* build-depend on a recent mtlGravatar Joey Hess2012-11-25
| | | | | | Old versions have an insufficiently generic definition of reader, which only works on ReaderT and not on newtypes made of it, or something like that.
* skeltal webdav special remoteGravatar Joey Hess2012-11-14
| | | | | Doesn't actually store anything yet, but initremote works and tests the server.
* remove async build depGravatar Joey Hess2012-11-14
| | | | Not needed.. At least for now..
* added a runTimeout functionGravatar Joey Hess2012-11-11
| | | | | | This adds a dep on haskell's async library, but since that's been added to the recent haskell platform release, it should not be much hardship to my poor long-suffering library chasing users.
* avoid using Blaze directlyGravatar Joey Hess2012-10-31
| | | | | New 0.5 changes the api, rather gratuitously, so run away. I can juse use Hamlet here.
* added a missing build-depGravatar Joey Hess2012-10-31
|
* add build-dep on blaze-markupGravatar Joey Hess2012-10-30
| | | | which blaze-html depends on, so not a significant new dep
* support using haskell-dns for SRV lookupsGravatar Joey Hess2012-10-28
| | | | | This library should be easier to install than ADNS, so I've made it be used by default.
* added network-protocol-xmpp and -DWITH_XMPPGravatar Joey Hess2012-10-23
|
* Depend on and use the Haskell SafeSemaphore library, which provides ↵Gravatar Joey Hess2012-10-05
| | | | exception-safe versions of SampleVar and QSemN. Thanks, Ben Gamari for an excellent patch set.
* update install pageGravatar Joey Hess2012-09-27