summaryrefslogtreecommitdiffstats
path: root/bitbake-dev/lib/bb/fetch/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake-dev/lib/bb/fetch/git.py')
-rw-r--r--bitbake-dev/lib/bb/fetch/git.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/bitbake-dev/lib/bb/fetch/git.py b/bitbake-dev/lib/bb/fetch/git.py
index 6456403e14..c97ffde1c3 100644
--- a/bitbake-dev/lib/bb/fetch/git.py
+++ b/bitbake-dev/lib/bb/fetch/git.py
@@ -145,3 +145,44 @@ class Git(Fetch):
145 def _build_revision(self, url, ud, d): 145 def _build_revision(self, url, ud, d):
146 return ud.tag 146 return ud.tag
147 147
148 def _want_sortable_revision(self, url, ud, d):
149 return bb.data.getVar("BB_GIT_CLONE_FOR_SRCREV", d, True) or False
150
151 def _sortable_revision(self, url, ud, d):
152 """
153 This is only called when _want_sortable_revision called true
154
155 We will have to get the updated revision.
156 """
157 gitsrcname = '%s%s' % (ud.host, ud.path.replace('/', '.'))
158 repodir = os.path.join(data.expand('${GITDIR}', d), gitsrcname)
159
160 key = "GIT_CACHED_REVISION-%s-%s" % (gitsrcname, ud.tag)
161 if bb.data.getVar(key, d):
162 return bb.data.getVar(key, d)
163
164
165 # Runtime warning on wrongly configured sources
166 if ud.tag == "1":
167 bb.msg.error(1, bb.msg.domain.Fetcher, "SRCREV is '1'. This indicates a configuration error of %s" % url)
168 return "0+1"
169
170 cwd = os.getcwd()
171
172 # Check if we have the rev already
173 if not os.path.exists(repodir):
174 print "no repo"
175 self.go(None, ud, d)
176
177 os.chdir(repodir)
178 if not self._contains_ref(ud.tag, d):
179 self.go(None, ud, d)
180
181 output = runfetchcmd("git rev-list %s -- 2> /dev/null | wc -l" % ud.tag, d, quiet=True)
182 os.chdir(cwd)
183
184 sortable_revision = "%s+%s" % (output.split()[0], ud.tag)
185 bb.data.setVar(key, sortable_revision, d)
186 return sortable_revision
187
188