diff options
author | Joey Hess <joey@kitenet.net> | 2011-06-30 14:55:36 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-06-30 15:01:08 -0400 |
commit | ee3a0551a78534ede078f8340a6f075245815914 (patch) | |
tree | 6fb64ea837927c70b6cf4109104dea4cfe110d7d /git-annex.cabal | |
parent | 896726cde425f6c74273b35cde30c1909551ff66 (diff) | |
parent | 56aeeb4565dd419c315d370f6e648abfe009a7d3 (diff) |
Merge branch 'master' into v3
Conflicts:
debian/changelog
Diffstat (limited to 'git-annex.cabal')
-rw-r--r-- | git-annex.cabal | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/git-annex.cabal b/git-annex.cabal new file mode 100644 index 000000000..f602143b5 --- /dev/null +++ b/git-annex.cabal @@ -0,0 +1,49 @@ +Name: git-annex +Version: 3.20110625 +Cabal-Version: >= 1.2 +License: GPL +Maintainer: Joey Hess <joey@kitenet.net> +Author: Joey Hess +Stability: Stable +Copyright: 2010-2011 Joey Hess +License-File: GPL +Extra-Source-Files: +Homepage: http://git-annex.branchable.com/ +Build-type: Custom +Category: Utility +Synopsis: manage files with git, without checking their contents into git +Description: + git-annex allows managing files with git, without checking the file + contents into git. While that may seem paradoxical, it is useful when + dealing with files larger than git can currently easily handle, whether due + to limitations in memory, checksumming time, or disk space. + . + Even without file content tracking, being able to manage files with git, + move files around and delete files with versioned directory trees, and use + branches and distributed clones, are all very handy reasons to use git. And + annexed files can co-exist in the same git repository with regularly + versioned files, which is convenient for maintaining documents, Makefiles, + etc that are associated with annexed files but that benefit from full + revision control. + +Executable git-annex + Main-Is: git-annex.hs + GHC-Options: -O2 + Build-Depends: haskell98, base, MissingH, hslogger, directory, filepath, + unix, containers, utf8-string, network, mtl, bytestring, old-locale, time, + pcre-light, extensible-exceptions, dataenc, SHA, process, hS3 + +Executable git-annex-shell + Main-Is: git-annex-shell.hs + GHC-Options: -O2 + Build-Depends: haskell98, base, MissingH, hslogger, directory, filepath, + unix, containers, utf8-string, network, mtl, bytestring, old-locale, time, + pcre-light, extensible-exceptions, dataenc, SHA, process, hS3 + +Executable git-union-merge + Main-Is: git-union-merge.hs + GHC-Options: -O2 + +source-repository head + type: git + location: git://git-annex.branchable.com/ |