summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/git.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-03 20:16:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-03 20:18:52 +0000
commitdfc5faf717ac1f917af398097d5295128548a55d (patch)
tree5d89fe8c1f0c05236b1c3f709c7d0a91a71f7f86 /bitbake/lib/bb/fetch2/git.py
parent3a70078c369def85aca1086ac8ca83d082bb27ec (diff)
downloadpoky-dfc5faf717ac1f917af398097d5295128548a55d.tar.gz
bitbake/fetch2/git: Ensure deleted branches upstream are removed, all branch tags are forced to the upstream revisions and all revisions and tags are always fetched
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/git.py')
-rw-r--r--bitbake/lib/bb/fetch2/git.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index d396d2458a..9f79d47762 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -121,15 +121,18 @@ class Git(Fetch):
121 121
122 os.chdir(ud.clonedir) 122 os.chdir(ud.clonedir)
123 # Update the checkout if needed 123 # Update the checkout if needed
124 needupdate = False
124 for name in ud.names: 125 for name in ud.names:
125 if not self._contains_ref(ud.revisions[name], d): 126 if not self._contains_ref(ud.revisions[name], d):
126 # Remove all but the .git directory 127 needupdate = True
127 bb.fetch2.check_network_access(d, "git fetch %s%s" %(ud.host, ud.path)) 128 if needupdate:
128 runfetchcmd("%s fetch %s://%s%s%s %s" % (ud.basecmd, ud.proto, username, ud.host, ud.path, ud.branches[name]), d) 129 bb.fetch2.check_network_access(d, "git fetch %s%s" % (ud.host, ud.path))
129 runfetchcmd("%s fetch --tags %s://%s%s%s" % (ud.basecmd, ud.proto, username, ud.host, ud.path), d) 130 runfetchcmd("%s remote rm origin" % ud.basecmd, d)
130 runfetchcmd("%s prune-packed" % ud.basecmd, d) 131 runfetchcmd("%s remote add origin %s://%s%s%s" % (ud.basecmd, ud.proto, username, ud.host, ud.path), d)
131 runfetchcmd("%s pack-redundant --all | xargs -r rm" % ud.basecmd, d) 132 runfetchcmd("%s fetch --all -t" % ud.basecmd, d)
132 ud.repochanged = True 133 runfetchcmd("%s prune-packed" % ud.basecmd, d)
134 runfetchcmd("%s pack-redundant --all | xargs -r rm" % ud.basecmd, d)
135 ud.repochanged = True
133 136
134 def build_mirror_data(self, url, ud, d): 137 def build_mirror_data(self, url, ud, d):
135 # Generate a mirror tarball if needed 138 # Generate a mirror tarball if needed