summaryrefslogtreecommitdiff
path: root/git-annex.cabal
Commit message (Collapse)AuthorAge
* prep releaseGravatar Joey Hess2015-05-08
|
* Replace dataenc with sandi.Gravatar Magnus Therning2015-05-07
| | | | | | The library dataenc is unmaintained and has been superseded by sandi. Signed-off-by: Magnus Therning <magnus@therning.org>
* 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!
* prep releaseGravatar Joey Hess2015-04-20
|
* 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
|
* info dir: Added information about repositories that contain files in the ↵Gravatar Joey Hess2015-04-12
| | | | | | | | | | | specified directory. This is a nearly free feature; it piggybacks on the location log lookups done for the numcopies stats. So, the only extra overhead is updating the map of repository sizes. However, I had to switch to Data.Map.Strict, which needs containers 0.5. If backporting to wheezy, will probably need to revert this commit.
* prep releaseGravatar Joey Hess2015-04-09
|
* emergency releaseGravatar Joey Hess2015-04-06
|
* prep releaseGravatar Joey Hess2015-04-06
|
* prep releaseGravatar Joey Hess2015-03-27
|
* prep release5.20150317Gravatar Joey Hess2015-03-17
|
* Specify a version for the 'feed' build dependency.Gravatar Justin Lebar2015-03-17
| | | | | Versions of feed before 0.3.4 don't have 'getItemSummary', which is used in ImportFeed.hs.
* move resourcet dependency out of S3 only; needed by database codeGravatar Joey Hess2015-02-27
|
* Merge branch 'master' into databaseGravatar Joey Hess2015-02-22
|\ | | | | | | | | Conflicts: debian/changelog
* | complete work around for sqlite SELECT ErrorBusy on new connection bugGravatar Joey Hess2015-02-22
| |
| * prep releaseGravatar Joey Hess2015-02-19
| |
* | WIPGravatar Joey Hess2015-02-18
| |
* | convert incremental fsck to using sqlite databaseGravatar Joey Hess2015-02-16
|/ | | | | | | | | | | | | | | | | Did not keep backwards compat for sticky bit records. An incremental fsck that is already in progress will start over on upgrade to this version. This is not yet ready for merging. The autobuilders need to have sqlite installed. Also, interrupting a fsck --incremental does not commit the database. So, resuming with fsck --more restarts from beginning. Memory: Constant during a fsck of tens of thousands of files. (But, it does seem to buffer whole transation in memory, so may really scale with number of files.) CPU: ?
* prep release5.20150205Gravatar Joey Hess2015-02-05
|
* Remove support for building without cryptohash.Gravatar Joey Hess2015-02-04
| | | | | This will prevent backporting to wheezy, but it's time to simplify the code.
* update my email address and homepage urlGravatar Joey Hess2015-01-21
|
* prep release5.20150113Gravatar Joey Hess2015-01-13
|
* prep releaseGravatar Joey Hess2014-12-31
|
* prep Solstice releaseGravatar Joey Hess2014-12-19
|
* When possible, build with the haskell torrent library for parsing torrent files.Gravatar Joey Hess2014-12-18
|
* git-annex.cabal: add missing http-client depend to S3Gravatar Sergei Trofimovich2014-12-17
| | | | | | | | | | | | | | With the following flags: $ cabal configure --ghc --prefix=/usr --with-compiler=/usr/bin/ghc --with-hc-pkg=/usr/bin/ghc-pkg --prefix=/usr --libdir=/usr/lib64 --libsubdir=git-annex-5.20141203/ghc-7.8.3.20141119 --datadir=/usr/share/ --datasubdir=git-annex-5.20141203/ghc-7.8.3.20141119 --ghc-option=-O2 --ghc-option=+RTS --ghc-option=-H64M --ghc-option=-M4G --ghc-option=-RTS --ghc-option=-O0 --ghc-option=-j4 --ghc-option=-optl-Wl,-O1 --ghc-option=-optl-Wl,--as-needed --ghc-option=-optl-Wl,--hash-style=gnu --disable-executable-stripping --docdir=/usr/share/doc/git-annex-5.20141203 --verbose --sysconfdir=/etc --disable-library-stripping --flags=-android --flags=-androidsplice --flags=-assistant --flags=cryptohash --flags=dbus --flags=-desktop-notify --flags=dns --flags=-ekg --flags=-feed --flags=-inotify --flags=pairing --flags=production --flags=-quvi --flags=s3 --flags=tahoe --flags=tdfa --flags=-testsuite --flags=-webapp --flags=-webapp-secure --flags=-webdav --flags=-xmpp ghc detects missing module (used directly by Remote.S3): Remote/Helper/Http.hs:16:8: Could not find module ‘Network.HTTP.Client’ It is a member of the hidden package ‘http-client-0.3.8.2’. Perhaps you need to add ‘http-client’ to the build-depends in your .cabal file. Use -v to see a list of the files searched for. Signed-off-by: Sergei Trofimovich <siarheit@google.com>
* prep releaseGravatar Joey Hess2014-12-03
|
* remove PatchedAWS flagGravatar Joey Hess2014-12-03
| | | | | | | | Now that deps are sorted out in hackage, cabal is unlikely to try to install a too old AWS, so I don't think this flag is worth the bother of being completely correct with the dependency versioning. This avoids me needing to enable to flag on the autobuilders..
* Merge branch 's3-aws'Gravatar Joey Hess2014-12-03
|\
* | remove redundant depsGravatar Joey Hess2014-12-01
| |
* | prep release5.20141125Gravatar Joey Hess2014-11-05
| |
| * fix buildGravatar Joey Hess2014-11-03
| |
| * WIP multipart S3 uploadGravatar Joey Hess2014-10-28
| | | | | | | | | | | | | | | | | | | | | | | | I'm a little stuck on getting the list of etags of the parts. This seems to require taking the md5 of each part locally, which doesn't get along well with lazily streaming in the part from the file. It would need to read the file twice, or lose laziness and buffer a whole part -- but parts might be quite large. This seems to be a problem with the API provided; S3 is supposed to return an etag, but that is not exposed. I have filed a bug: https://github.com/aristidb/aws/issues/141
| * Merge branch 'master' into s3-awsGravatar Joey Hess2014-10-28
| |\ | |/ |/|
* | prep release5.20141024Gravatar Joey Hess2014-10-24
| |
| * 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
* | Use haskell setenv library to clean up several ugly workarounds for ↵Gravatar Joey Hess2014-10-15
| | | | | | | | | | | | | | | | | | inability to manipulate the environment on windows. Didn't know that this library existed! This includes making git-annex not re-exec itself on start on windows, and making the test suite on Windows run tests without forking.
* | Remove hurd stuff from cabal file, since hackage currently rejects it.Gravatar Joey Hess2014-10-15
| | | | | | | | https://github.com/haskell/hackage-server/issues/269
* | prep release5.20141013Gravatar Joey Hess2014-10-13
| |
* | rewrote and expanded package descriptionGravatar Joey Hess2014-10-03
| |
* | Adjust cabal file to support building w/o assistant on the hurd.Gravatar Joey Hess2014-09-29
| | | | | | | | | | I used to have this and hackage rejected the os(gnu), so I am going to see if the new hackage still rejects it.
* | prep release5.20140927Gravatar Joey Hess2014-09-27
| |
* | prep releaseGravatar Joey Hess2014-09-26
| |
* | prep release5.20140919Gravatar Joey Hess2014-09-19
| |
| * Merge branch 'master' into s3-awsGravatar Joey Hess2014-09-18
| |\ | |/ |/| | | | | | | | | Conflicts: Utility/Url.hs debian/changelog git-annex.cabal
* | fix display of git-annex test command name in usageGravatar Joey Hess2014-09-17
| | | | | | | | | | | | This needs optparse-applicative 0.10. Dropped support for 0.9 and older, but kept 0.9.1 working since autobuilders and debian testing still use it. (The display is not perfect with 0.9.1.)
* | prep5.20140915Gravatar Joey Hess2014-09-15
| |