summaryrefslogtreecommitdiff
path: root/debian/control
Commit message (Collapse)AuthorAge
* tweak aws versionGravatar Joey Hess2015-01-30
|
* touchups5.20141231Gravatar Joey Hess2014-12-31
|
* fix typo in recommendsGravatar Joey Hess2014-12-19
|
* Added bittorrent special remoteGravatar Joey Hess2014-12-16
| | | | | | | | | | addurl behavior change: When downloading an url ending in .torrent, it will download files from bittorrent, instead of the old behavior of adding the torrent file to the repository. Added Recommends on aria2 and bittornado | bittorrent. This commit was sponsored by Asbjørn Sloth Tønnesen.
* Merge branch 's3-aws'Gravatar Joey Hess2014-12-03
|\
* | Debian package is now maintained by Gergely Nagy.Gravatar Joey Hess2014-11-11
| |
| * add cabal flag for use with debian's older version of aws, which is now ↵Gravatar Joey Hess2014-10-23
| | | | | | | | patched with the necessary stuff
| * Merge branch 'master' into s3-awsGravatar Joey Hess2014-10-22
| |\ | |/ |/| | | | | Conflicts: Remote/S3.hs
* | rewrote and expanded package descriptionGravatar Joey Hess2014-10-03
| |
* | Add temporary workaround for bug #763078 which broke building on armel and ↵Gravatar Joey Hess2014-09-27
| | | | | | | | armhf.
* | Really depend (not just build-depend) on new enough git for --no-gpg-sign to ↵Gravatar Joey Hess2014-09-27
| | | | | | | | work. Closes: #763057
* | Work around failure to build on mips by using cabal, not Setup, to build in ↵Gravatar Joey Hess2014-09-26
| | | | | | | | debian/rules.
* | Depend on new enough git for --no-gpg-sign to work. Closes: #762446Gravatar Joey Hess2014-09-22
| |
| * Merge branch 'master' into s3-awsGravatar Joey Hess2014-09-18
| |\ | |/ |/| | | | | | | | | Conflicts: Utility/Url.hs debian/changelog git-annex.cabal
* | update arch depsGravatar Joey Hess2014-08-30
| | | | | | | | | | | | | | sparc no longer supports yesod (and is probably not going to be a release arch anyway) tasty is now built on mipsel.
* | no lsof build-dep on hurdGravatar Joey Hess2014-08-23
| | | | | | | | No assistant there
| * update aws version requirementsGravatar Joey Hess2014-08-18
| |
* | fix lower bounds on version of exceptionsGravatar Joey Hess2014-08-17
| | | | | | | | | | | | This is needed only because of the new MonadMask needed for bracket in the new version. Ifdefing it everywhere is not practical, since the Setup.hs uses it.
* | Switched from the old haskell HTTP library to http-conduit.Gravatar Joey Hess2014-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The hoary old HTTP library was only used when checking if an url exists, when curl was not available. It had many problems, including not supporting https at all. Now, this is done using http-conduit for all urls that it supports. Falls back to curl for any url that http-conduit doesn't like (probably ftp etc, but could also be an url that its parser chokes on for whatever reason). This adds a new dependency on http-conduit, but webdav support already indirectly depended on that, and the s3-aws branch also uses it. This opens up the possibility of using http-conduit for large file downloads, but for now I've left it using wget/curl. This commit was sponsored by Paul Tötterman.
| * Merge branch 'master' into s3-awsGravatar Joey Hess2014-08-15
| |\ | | | | | | | | | | | | Conflicts: git-annex.cabal
| | * Switched from the old haskell HTTP library to http-conduit.Gravatar Joey Hess2014-08-15
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | The hoary old HTTP library was only used when checking if an url exists, when curl was not available. It had many problems, including not supporting https at all. Now, this is done using http-conduit for all urls that it supports. Falls back to curl for any url that http-conduit doesn't like (probably ftp etc, but could also be an url that its parser chokes on for whatever reason). This adds a new dependency on http-conduit, but webdav support already indirectly depended on that, and the s3-aws branch also uses it.
| * depsGravatar Joey Hess2014-08-09
|/
* increave dav build-depGravatar Joey Hess2014-08-08
|
* need transformers for Utility.ExceptionGravatar Joey Hess2014-08-07
|
* unify exception handling into Utility.ExceptionGravatar Joey Hess2014-08-07
| | | | | | | | | | | | | | | | | | | | Removed old extensible-exceptions, only needed for very old ghc. Made webdav use Utility.Exception, to work after some changes in DAV's exception handling. Removed Annex.Exception. Mostly this was trivial, but note that tryAnnex is replaced with tryNonAsync and catchAnnex replaced with catchNonAsync. In theory that could be a behavior change, since the former caught all exceptions, and the latter don't catch async exceptions. However, in practice, nothing in the Annex monad uses async exceptions. Grepping for throwTo and killThread only find stuff in the assistant, which does not seem related. Command.Add.undo is changed to accept a SomeException, and things that use it for rollback now catch non-async exceptions, rather than only IOExceptions.
* use DAV monadGravatar Joey Hess2014-08-07
| | | | | | | | | | | | This speeds up the webdav special remote somewhat, since it often now groups actions together in a single http connection when eg, storing a file. Legacy chunks are still supported, but have not been sped up. This depends on a as-yet unreleased version of DAV. This commit was sponsored by Thomas Hochstein.
* network-conduit build dep in cabal was spuriious, remove5.20140707Gravatar Joey Hess2014-07-07
|
* add missing build-dep on network-conduit for webappGravatar Joey Hess2014-07-02
|
* Fix build with wai 0.3.0.Gravatar Joey Hess2014-06-11
| | | | | | | | | | This version of wai changed the type of Middleware, so I cannot seem to liftIO inside it. So, got rid of a lot of not really needed complexity to use System.Log.Logger's logging stuff, and just use the standard wai stdout logger when debug logging is enabled. Format may change some, and it logs http to stdout instead of stderr now. Doesn't matter for the webapp since both go to the same log anyway.
* update for change to exceptionsGravatar Joey Hess2014-05-28
|
* add git-remote-gcrypt to build dependsGravatar Joey Hess2014-05-15
| | | | This ensures it's pulled in when building the standalone tarball
* remove ssh-askpass recommends; close bugs obsoleted by sshpassword branchGravatar Joey Hess2014-05-15
|
* gcrypt needs a new version, which I am releaseingGravatar Joey Hess2014-05-15
|
* Avoid depending on shakespeare except for when building the webapp.Gravatar Joey Hess2014-04-13
|
* importfeed: Filename template can now contain an itempubdate variable. Needs ↵Gravatar Joey Hess2014-04-07
| | | | feed 0.3.9.2.
* add desktop notificationsGravatar Joey Hess2014-03-22
| | | | | | | Motivation: Hook scripts for nautilus or other file managers need to provide the user with feedback that a file is being downloaded. This commit was sponsored by THM Schoemaker.
* webapp: Use securemem for constant time auth token comparisons.Gravatar Joey Hess2014-03-12
| | | | | Debian stable does not have securemem, but neither does it have warp-tls, so just disable use of securemem when not building with https support.
* enable haskell-dns library, rather than needing "host" commandGravatar Joey Hess2014-03-07
| | | | | | Done on Debian to keep the autobuilds and Debian packages the same, but can be reverted for backports, since haskell-dns is not available there.
* depend on warp-tls.. at least for nowGravatar Joey Hess2014-02-28
|
* Disable test suite on sparc, which is missing optparse-applicative.Gravatar Joey Hess2014-02-26
|
* Add build dep on regex-compat to fix build on mipsel, which lacks regex-tdfa.Gravatar Joey Hess2014-02-26
|
* add UrlOptions sum typeGravatar Joey Hess2014-02-24
|
* version DAV depGravatar Joey Hess2014-02-08
|
* Revert "temporarily revert tasty-rerun support for this release"Gravatar Joey Hess2014-01-27
| | | | This reverts commit 65eb61a902ecf68da69d774063fea4880f619a13.
* temporarily revert tasty-rerun support for this release5.20140127Gravatar Joey Hess2014-01-27
| | | | | | revert 852f1f6cea85a7c781c8286f459023bdacebe021 tasty-rerun is stuck in NEW in debian
* tasty-rerun! make rerest runs much much faster than running whole test suiteGravatar Joey Hess2014-01-24
|
* use tasty resourcesGravatar Joey Hess2014-01-21
|
* expose tasty test suite's option parserGravatar Joey Hess2014-01-21
|
* prep releaseGravatar Joey Hess2014-01-16
|
* no lsof on kfreebsdGravatar Joey Hess2014-01-07
|