summaryrefslogtreecommitdiff
path: root/git-annex.cabal
Commit message (Collapse)AuthorAge
* started converting to use optparse-applicativeGravatar Joey Hess2015-07-08
| | | | | | | | | | | | This is a work in progress. It compiles and is able to do basic command dispatch, including git autocorrection, while using optparse-applicative for the core commandline parsing. * Many commands are temporarily disabled before conversion. * Options are not wired in yet. * cmdnorepo actions don't work yet. Also, removed the [Command] list, which was only used in one place.
* Removed support for optparse-applicative versions older than 0.10.Gravatar Joey Hess2015-07-07
| | | | Debian stable has 0.10.0.
* On linux, pass --as-needed to linker to avoid linking with unused shared ↵Gravatar Joey Hess2015-07-07
| | | | libraries including libyaml.
* prep releaseGravatar Joey Hess2015-06-16
|
* 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
|
* -fPIC broke the autobuilders, so remove again. hmmGravatar Joey Hess2015-06-06
|
* not sure why, but ghc started failing linking the C libs unless explicitly ↵Gravatar Joey Hess2015-06-05
| | | | built with -fPIC
* prep releaseGravatar Joey Hess2015-05-28
|
* 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
* prep releaseGravatar Joey Hess2015-05-22
|
* allow building without ascii-progress, since it is not ready yetGravatar Joey Hess2015-05-12
| | | | No progress bars with -J unless built with ascii-progress.
* Merge branch 'master' into concurrentprogressGravatar Joey Hess2015-05-12
|\ | | | | | | | | | | | | | | | | | | | | | | Conflicts: Command/Fsck.hs Messages.hs Remote/Directory.hs Remote/Git.hs Remote/Helper/Special.hs Types/Remote.hs debian/changelog git-annex.cabal
| * cutting a point release, will be a cabal-only updateGravatar Joey Hess2015-05-11
| |
| * reorder dependency listGravatar Joey Hess2015-05-10
| |
| * avoid unncessary dep on old-locale when building with new version of timeGravatar Joey Hess2015-05-10
| |
| * disable ghc 7.10's obnoxious warnings about every line using tab to indentGravatar Joey Hess2015-05-10
| |
| * 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
| |
* | scale progress bar to terminal sizeGravatar Joey Hess2015-04-14
| |
* | Merge branch 'master' into concurrentprogressGravatar Joey Hess2015-04-14
|\| | | | | | | | | Conflicts: debian/changelog
| * 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.
* | pin ascii-progress version for now; big changes comingGravatar Joey Hess2015-04-10
| |
* | Merge branch 'master' into concurrentprogressGravatar Joey Hess2015-04-10
|\|
| * prep releaseGravatar Joey Hess2015-04-09
| |
* | Merge branch 'master' into concurrentprogressGravatar Joey Hess2015-04-07
|\|
| * emergency releaseGravatar Joey Hess2015-04-06
| |
| * prep releaseGravatar Joey Hess2015-04-06
| |
* | WIP use ascii-progressGravatar Joey Hess2015-04-04
|/ | | | | | | | A bit flickery due to https://github.com/yamadapc/haskell-ascii-progress/issues/12 And, won't handle large files until ascii-progress is changed to use Integers.
* 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
|