]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
fetch2/gitannex: Fix function arguments to match bitbake master
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 8 Jan 2014 15:26:29 +0000 (15:26 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 8 Jan 2014 15:26:34 +0000 (15:26 +0000)
This code clearly uses an earlier fetcher API. Update it to match master.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lib/bb/fetch2/gitannex.py

index 02711b0be6ea45e1e3d5019b66e9ca2df9ee5ce0..0f37897450918531118b069c7d01270b8744d9a4 100644 (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)