bitbake: fetch2/gitannex: Fix function arguments to match bitbake master

This code clearly uses an earlier fetcher API. Update it to match master.

(Bitbake rev: e13acb4113ce75226664c3006a9776cc885e860d)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2014-01-08 15:26:29 +00:00
parent 854daab404
commit 6ee5d95317
1 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@ from bb.fetch2 import runfetchcmd
from bb.fetch2 import logger
class GitANNEX(Git):
def supports(self, url, ud, d):
def supports(self, ud, d):
"""
Check to see if a given url can be fetched with git.
"""
@ -44,7 +44,7 @@ class GitANNEX(Git):
return False
def update_annex(self, u, ud, d):
def update_annex(self, ud, d):
try:
runfetchcmd("%s annex get --all" % (ud.basecmd), d, quiet=True)
except bb.fetch.FetchError:
@ -53,13 +53,13 @@ class GitANNEX(Git):
return True
def download(self, loc, ud, d):
Git.download(self, loc, ud, d)
def download(self, ud, d):
Git.download(self, ud, d)
os.chdir(ud.clonedir)
annex = self.uses_annex(ud, d)
if annex:
self.update_annex(loc, ud, d)
self.update_annex(ud, d)
def unpack(self, ud, destdir, d):
Git.unpack(self, ud, destdir, d)