2011-06-30 14:55:03 -04:00
|
|
|
Name: git-annex
|
2012-07-28 23:55:41 -04:00
|
|
|
Version: 3.20120722
|
2012-04-05 16:39:50 -04:00
|
|
|
Cabal-Version: >= 1.8
|
2011-06-30 14:55:03 -04:00
|
|
|
License: GPL
|
|
|
|
Maintainer: Joey Hess <joey@kitenet.net>
|
|
|
|
Author: Joey Hess
|
|
|
|
Stability: Stable
|
2012-01-15 14:57:52 -04:00
|
|
|
Copyright: 2010-2012 Joey Hess
|
2011-06-30 14:55:03 -04:00
|
|
|
License-File: GPL
|
|
|
|
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
|
2012-02-15 19:43:15 -04:00
|
|
|
to limitations in memory, time, or disk space.
|
2011-06-30 14:55:03 -04:00
|
|
|
.
|
|
|
|
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.
|
|
|
|
|
2012-04-14 14:22:33 -04:00
|
|
|
Flag S3
|
|
|
|
Description: Enable S3 support
|
|
|
|
|
2012-06-17 17:15:56 -04:00
|
|
|
Flag Inotify
|
|
|
|
Description: Enable inotify support
|
|
|
|
|
2012-07-19 13:01:41 -04:00
|
|
|
Flag Dbus
|
|
|
|
Description: Enable dbus support
|
|
|
|
|
2012-06-26 09:15:47 -04:00
|
|
|
Flag Assistant
|
|
|
|
Description: Enable git-annex assistant and watch command
|
|
|
|
|
2012-07-25 21:26:13 -04:00
|
|
|
Flag Webapp
|
|
|
|
Description: Enable git-annex webapp
|
|
|
|
|
2011-06-30 14:55:03 -04:00
|
|
|
Executable git-annex
|
|
|
|
Main-Is: git-annex.hs
|
2011-11-26 23:39:47 +11:00
|
|
|
Build-Depends: MissingH, hslogger, directory, filepath,
|
2011-06-30 14:55:03 -04:00
|
|
|
unix, containers, utf8-string, network, mtl, bytestring, old-locale, time,
|
2012-04-14 14:22:33 -04:00
|
|
|
pcre-light, extensible-exceptions, dataenc, SHA, process, json, HTTP,
|
2012-04-22 11:24:39 -04:00
|
|
|
base == 4.5.*, monad-control, transformers-base, lifted-base,
|
2012-07-26 05:13:27 -04:00
|
|
|
IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process
|
2012-07-19 13:01:41 -04:00
|
|
|
-- Need to list these because they're generated from .hsc files.
|
|
|
|
Other-Modules: Utility.Touch Utility.Mounts
|
2012-07-25 22:04:10 -04:00
|
|
|
Include-Dirs: Utility
|
2012-07-19 20:38:58 -04:00
|
|
|
C-Sources: Utility/libdiskfree.c Utility/libmounts.c
|
2012-04-14 14:22:33 -04:00
|
|
|
Extensions: CPP
|
2012-07-18 15:30:26 -04:00
|
|
|
GHC-Options: -threaded
|
2012-04-14 14:22:33 -04:00
|
|
|
|
|
|
|
if flag(S3)
|
|
|
|
Build-Depends: hS3
|
|
|
|
CPP-Options: -DWITH_S3
|
2011-06-30 14:55:03 -04:00
|
|
|
|
2012-06-26 09:15:47 -04:00
|
|
|
if flag(Assistant)
|
|
|
|
Build-Depends: stm >= 2.3
|
|
|
|
CPP-Options: -DWITH_ASSISTANT
|
|
|
|
|
2012-06-25 11:38:42 -04:00
|
|
|
if os(linux) && flag(Inotify)
|
2012-06-17 17:15:56 -04:00
|
|
|
Build-Depends: hinotify
|
|
|
|
CPP-Options: -DWITH_INOTIFY
|
2012-07-25 21:26:13 -04:00
|
|
|
else
|
|
|
|
if (! os(windows))
|
|
|
|
CPP-Options: -DWITH_KQUEUE
|
2012-06-17 17:15:56 -04:00
|
|
|
|
2012-07-26 13:05:52 -04:00
|
|
|
if os(linux) && flag(Dbus)
|
2012-07-19 13:01:41 -04:00
|
|
|
Build-Depends: dbus
|
|
|
|
CPP-Options: -DWITH_DBUS
|
|
|
|
|
2012-07-25 21:26:13 -04:00
|
|
|
if flag(Webapp)
|
2012-07-27 12:09:34 -04:00
|
|
|
Build-Depends: yesod, yesod-static, yesod-default, case-insensitive,
|
|
|
|
http-types, transformers, wai, wai-logger, warp, blaze-builder,
|
2012-08-01 21:26:36 -04:00
|
|
|
blaze-html, crypto-api, hamlet, clientsession,
|
2012-08-01 21:04:15 -04:00
|
|
|
template-haskell
|
2012-07-25 21:26:13 -04:00
|
|
|
CPP-Options: -DWITH_WEBAPP
|
|
|
|
|
2012-07-26 13:05:52 -04:00
|
|
|
if os(darwin)
|
2012-07-25 21:26:13 -04:00
|
|
|
CPP-Options: -DOSX
|
|
|
|
|
2012-03-23 12:42:22 -04:00
|
|
|
Test-Suite test
|
|
|
|
Type: exitcode-stdio-1.0
|
|
|
|
Main-Is: test.hs
|
2012-04-14 15:23:13 -04:00
|
|
|
Build-Depends: testpack, HUnit, MissingH, hslogger, directory, filepath,
|
|
|
|
unix, containers, utf8-string, network, mtl, bytestring, old-locale, time,
|
|
|
|
pcre-light, extensible-exceptions, dataenc, SHA, process, json, HTTP,
|
2012-04-22 01:49:15 -04:00
|
|
|
base == 4.5.*, monad-control, transformers-base, lifted-base,
|
2012-07-18 15:30:26 -04:00
|
|
|
IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process
|
2012-06-12 02:36:05 -07:00
|
|
|
Other-Modules: Utility.Touch
|
2012-07-25 22:04:10 -04:00
|
|
|
Include-Dirs: Utility
|
2012-04-13 11:26:39 -04:00
|
|
|
C-Sources: Utility/libdiskfree.c
|
2012-04-14 15:23:13 -04:00
|
|
|
Extensions: CPP
|
2012-07-18 15:30:26 -04:00
|
|
|
GHC-Options: -threaded
|
2011-06-30 14:55:03 -04:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: git://git-annex.branchable.com/
|