From: Otavio Salvador Date: Tue, 7 Jan 2014 15:58:33 +0000 (-0200) Subject: bitbake: gitannex.py: Add Git Annex support X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a61fc4db598e9d13c966712a6a0e4783e19448be;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: gitannex.py: Add Git Annex support This add a Git Annex backend which reuses the Git fetcher code; it allows managing files with git, without checking the file contents into git, being useful when dealing with files larger than git can currently easily handle, whether due to limitations in memory, time, or disk space. Signed-off-by: Otavio Salvador Signed-off-by: Richard Purdie --- diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py index c584f48ad24..9499a911b52 100644 --- a/lib/bb/fetch2/__init__.py +++ b/lib/bb/fetch2/__init__.py @@ -1513,6 +1513,7 @@ class Fetch(object): from . import cvs from . import git from . import gitsm +from . import gitannex from . import local from . import svn from . import wget @@ -1530,6 +1531,7 @@ methods.append(wget.Wget()) methods.append(svn.Svn()) methods.append(git.Git()) methods.append(gitsm.GitSM()) +methods.append(gitannex.GitANNEX()) methods.append(cvs.Cvs()) methods.append(svk.Svk()) methods.append(ssh.SSH())