summaryrefslogtreecommitdiff
path: root/debian/control
Commit message (Collapse)AuthorAge
* Removed support for optparse-applicative versions older than 0.10.Gravatar Joey Hess2015-07-07
| | | | Debian stable has 0.10.0.
* debian/cabal-wrapper: Removed this hack which should not be needed anymore.Gravatar Joey Hess2015-06-14
|
* re-remove hamlet depGravatar Joey Hess2015-06-06
|
* Revert "remove deprecated hamlet package"Gravatar Joey Hess2015-05-27
| | | | | | | | | This reverts commit 8c9908de63ace83efa14744e3f7cf3f12fc8f197. It's too early to do this; the linux and android autobuilder will need to be updated to use the new version of shakespeare, and that will require a complete refresh of them. In the meantime, this has knocked the webapp out of the autobuilders.
* remove deprecated hamlet packageGravatar Joey Hess2015-05-22
| | | | shakespeare provides this now
* typoGravatar Joey Hess2015-05-07
|
* Debian's ghc now supports TH on arm! Adjust build dependencies to build the ↵Gravatar Joey Hess2015-05-07
| | | | | | | webapp on arm, and enable DAV support on arm. \o/ Also, adjust some other arch specific build dependencies that are now available on more architectures in Devian unstable.
* remove workaround for now fixed bug #763078Gravatar Joey Hess2015-05-07
|
* remaining dataenc to sandi conversionsGravatar Joey Hess2015-05-07
| | | | | | I've tested all the dataenc to sandi conversions except Assistant.XMPP, and all have unchanged behavior, including behavior on large unicode code points.
* also drop old dbus compatGravatar Joey Hess2015-04-22
|
* Dropped support for older versions of yesod and warp than the ones in Debian ↵Gravatar Joey Hess2015-04-22
| | | | | | Jessie. 466 lines of compat cruft deleted!
* Removed dependency on haskell SHA library, instead using cryptohash >= 0.11.0.Gravatar Joey Hess2015-04-19
|
* switch to using cryptohash for MACGravatar Joey Hess2015-04-19
|
* avoid using --literal-pathspecs with git older than 1.8.1 which added itGravatar Joey Hess2015-04-06
| | | | Windows is still building with an older git.
* Relax debian package dependencies to git >= 1:1.7.7.6 rather than needing >= ↵Gravatar Joey Hess2015-03-31
| | | | | | | 1:2.0. Git.Merge needs >= 1.7.7.6 if built with such a version; rest of code all probes git version at runtime.
* add new build depsGravatar Joey Hess2015-02-22
|
* 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
|