diff options
author | Joey Hess <joey@kitenet.net> | 2014-08-08 18:54:04 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-08-08 19:00:53 -0400 |
commit | 563036b66fcc78ffe1e18086289b89b457221cac (patch) | |
tree | f0570b57290a155f8183c6aa5c27f048172645d8 /git-annex.cabal | |
parent | 84ceaa5ff7ecbf1630cde688e7391cb844eb285a (diff) |
WIP converting S3 special remote from hS3 to aws library
Currently, initremote works, but not the other operations. They should be
fairly easy to add from this base.
Also, https://github.com/aristidb/aws/issues/119 blocks internet archive
support.
Note that since http-conduit is used, this also adds https support to S3.
Although git-annex encrypts everything anyway, so that may not be extremely
useful. It is not enabled by default, because existing S3 special remotes
have port=80 in their config. Setting port=443 will enable it.
This commit was sponsored by Daniel Brockman.
Diffstat (limited to 'git-annex.cabal')
-rw-r--r-- | git-annex.cabal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-annex.cabal b/git-annex.cabal index 5154b27dd..70bd9c88b 100644 --- a/git-annex.cabal +++ b/git-annex.cabal @@ -137,7 +137,7 @@ Executable git-annex CPP-Options: -DWITH_CRYPTOHASH if flag(S3) - Build-Depends: hS3 + Build-Depends: hS3, http-conduit, http-client, resourcet, http-types, aws CPP-Options: -DWITH_S3 if flag(WebDAV) |