Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | """ |
| 2 | BitBake 'Fetch' git implementation |
| 3 | |
| 4 | git fetcher support the SRC_URI with format of: |
| 5 | SRC_URI = "git://some.host/somepath;OptionA=xxx;OptionB=xxx;..." |
| 6 | |
| 7 | Supported SRC_URI options are: |
| 8 | |
| 9 | - branch |
| 10 | The git branch to retrieve from. The default is "master" |
| 11 | |
| 12 | This option also supports multiple branch fetching, with branches |
| 13 | separated by commas. In multiple branches case, the name option |
| 14 | must have the same number of names to match the branches, which is |
| 15 | used to specify the SRC_REV for the branch |
| 16 | e.g: |
| 17 | SRC_URI="git://some.host/somepath;branch=branchX,branchY;name=nameX,nameY" |
| 18 | SRCREV_nameX = "xxxxxxxxxxxxxxxxxxxx" |
| 19 | SRCREV_nameY = "YYYYYYYYYYYYYYYYYYYY" |
| 20 | |
| 21 | - tag |
| 22 | The git tag to retrieve. The default is "master" |
| 23 | |
| 24 | - protocol |
| 25 | The method to use to access the repository. Common options are "git", |
| 26 | "http", "https", "file", "ssh" and "rsync". The default is "git". |
| 27 | |
| 28 | - rebaseable |
| 29 | rebaseable indicates that the upstream git repo may rebase in the future, |
| 30 | and current revision may disappear from upstream repo. This option will |
| 31 | remind fetcher to preserve local cache carefully for future use. |
| 32 | The default value is "0", set rebaseable=1 for rebaseable git repo. |
| 33 | |
| 34 | - nocheckout |
| 35 | Don't checkout source code when unpacking. set this option for the recipe |
| 36 | who has its own routine to checkout code. |
| 37 | The default is "0", set nocheckout=1 if needed. |
| 38 | |
| 39 | - bareclone |
| 40 | Create a bare clone of the source code and don't checkout the source code |
| 41 | when unpacking. Set this option for the recipe who has its own routine to |
| 42 | checkout code and tracking branch requirements. |
| 43 | The default is "0", set bareclone=1 if needed. |
| 44 | |
| 45 | - nobranch |
| 46 | Don't check the SHA validation for branch. set this option for the recipe |
| 47 | referring to commit which is valid in tag instead of branch. |
| 48 | The default is "0", set nobranch=1 if needed. |
| 49 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 50 | - usehead |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 51 | For local git:// urls to use the current branch HEAD as the revision for use with |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 52 | AUTOREV. Implies nobranch. |
| 53 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 54 | """ |
| 55 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 56 | # Copyright (C) 2005 Richard Purdie |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 57 | # |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 58 | # SPDX-License-Identifier: GPL-2.0-only |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 59 | # |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 60 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 61 | import collections |
Patrick Williams | d7e9631 | 2015-09-22 08:09:05 -0500 | [diff] [blame] | 62 | import errno |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 63 | import fnmatch |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 64 | import os |
| 65 | import re |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 66 | import shlex |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 67 | import subprocess |
| 68 | import tempfile |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 69 | import bb |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 70 | import bb.progress |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 71 | from bb.fetch2 import FetchMethod |
| 72 | from bb.fetch2 import runfetchcmd |
| 73 | from bb.fetch2 import logger |
| 74 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 75 | |
| 76 | class GitProgressHandler(bb.progress.LineFilterProgressHandler): |
| 77 | """Extract progress information from git output""" |
| 78 | def __init__(self, d): |
| 79 | self._buffer = '' |
| 80 | self._count = 0 |
| 81 | super(GitProgressHandler, self).__init__(d) |
| 82 | # Send an initial progress event so the bar gets shown |
| 83 | self._fire_progress(-1) |
| 84 | |
| 85 | def write(self, string): |
| 86 | self._buffer += string |
| 87 | stages = ['Counting objects', 'Compressing objects', 'Receiving objects', 'Resolving deltas'] |
| 88 | stage_weights = [0.2, 0.05, 0.5, 0.25] |
| 89 | stagenum = 0 |
| 90 | for i, stage in reversed(list(enumerate(stages))): |
| 91 | if stage in self._buffer: |
| 92 | stagenum = i |
| 93 | self._buffer = '' |
| 94 | break |
| 95 | self._status = stages[stagenum] |
| 96 | percs = re.findall(r'(\d+)%', string) |
| 97 | if percs: |
| 98 | progress = int(round((int(percs[-1]) * stage_weights[stagenum]) + (sum(stage_weights[:stagenum]) * 100))) |
| 99 | rates = re.findall(r'([\d.]+ [a-zA-Z]*/s+)', string) |
| 100 | if rates: |
| 101 | rate = rates[-1] |
| 102 | else: |
| 103 | rate = None |
| 104 | self.update(progress, rate) |
| 105 | else: |
| 106 | if stagenum == 0: |
| 107 | percs = re.findall(r': (\d+)', string) |
| 108 | if percs: |
| 109 | count = int(percs[-1]) |
| 110 | if count > self._count: |
| 111 | self._count = count |
| 112 | self._fire_progress(-count) |
| 113 | super(GitProgressHandler, self).write(string) |
| 114 | |
| 115 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 116 | class Git(FetchMethod): |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 117 | bitbake_dir = os.path.abspath(os.path.join(os.path.dirname(os.path.join(os.path.abspath(__file__))), '..', '..', '..')) |
| 118 | make_shallow_path = os.path.join(bitbake_dir, 'bin', 'git-make-shallow') |
| 119 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 120 | """Class to fetch a module or modules from git repositories""" |
| 121 | def init(self, d): |
| 122 | pass |
| 123 | |
| 124 | def supports(self, ud, d): |
| 125 | """ |
| 126 | Check to see if a given url can be fetched with git. |
| 127 | """ |
| 128 | return ud.type in ['git'] |
| 129 | |
| 130 | def supports_checksum(self, urldata): |
| 131 | return False |
| 132 | |
| 133 | def urldata_init(self, ud, d): |
| 134 | """ |
| 135 | init git specific variable within url data |
| 136 | so that the git method like latest_revision() can work |
| 137 | """ |
| 138 | if 'protocol' in ud.parm: |
| 139 | ud.proto = ud.parm['protocol'] |
| 140 | elif not ud.host: |
| 141 | ud.proto = 'file' |
| 142 | else: |
| 143 | ud.proto = "git" |
| 144 | |
| 145 | if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'): |
| 146 | raise bb.fetch2.ParameterError("Invalid protocol type", ud.url) |
| 147 | |
| 148 | ud.nocheckout = ud.parm.get("nocheckout","0") == "1" |
| 149 | |
| 150 | ud.rebaseable = ud.parm.get("rebaseable","0") == "1" |
| 151 | |
| 152 | ud.nobranch = ud.parm.get("nobranch","0") == "1" |
| 153 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 154 | # usehead implies nobranch |
| 155 | ud.usehead = ud.parm.get("usehead","0") == "1" |
| 156 | if ud.usehead: |
| 157 | if ud.proto != "file": |
| 158 | raise bb.fetch2.ParameterError("The usehead option is only for use with local ('protocol=file') git repositories", ud.url) |
| 159 | ud.nobranch = 1 |
| 160 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 161 | # bareclone implies nocheckout |
| 162 | ud.bareclone = ud.parm.get("bareclone","0") == "1" |
| 163 | if ud.bareclone: |
| 164 | ud.nocheckout = 1 |
| 165 | |
| 166 | ud.unresolvedrev = {} |
| 167 | branches = ud.parm.get("branch", "master").split(',') |
| 168 | if len(branches) != len(ud.names): |
| 169 | raise bb.fetch2.ParameterError("The number of name and branch parameters is not balanced", ud.url) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 170 | |
| 171 | ud.cloneflags = "-s -n" |
| 172 | if ud.bareclone: |
| 173 | ud.cloneflags += " --mirror" |
| 174 | |
| 175 | ud.shallow = d.getVar("BB_GIT_SHALLOW") == "1" |
| 176 | ud.shallow_extra_refs = (d.getVar("BB_GIT_SHALLOW_EXTRA_REFS") or "").split() |
| 177 | |
| 178 | depth_default = d.getVar("BB_GIT_SHALLOW_DEPTH") |
| 179 | if depth_default is not None: |
| 180 | try: |
| 181 | depth_default = int(depth_default or 0) |
| 182 | except ValueError: |
| 183 | raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH: %s" % depth_default) |
| 184 | else: |
| 185 | if depth_default < 0: |
| 186 | raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH: %s" % depth_default) |
| 187 | else: |
| 188 | depth_default = 1 |
| 189 | ud.shallow_depths = collections.defaultdict(lambda: depth_default) |
| 190 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 191 | revs_default = d.getVar("BB_GIT_SHALLOW_REVS") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 192 | ud.shallow_revs = [] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 193 | ud.branches = {} |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 194 | for pos, name in enumerate(ud.names): |
| 195 | branch = branches[pos] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 196 | ud.branches[name] = branch |
| 197 | ud.unresolvedrev[name] = branch |
| 198 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 199 | shallow_depth = d.getVar("BB_GIT_SHALLOW_DEPTH_%s" % name) |
| 200 | if shallow_depth is not None: |
| 201 | try: |
| 202 | shallow_depth = int(shallow_depth or 0) |
| 203 | except ValueError: |
| 204 | raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH_%s: %s" % (name, shallow_depth)) |
| 205 | else: |
| 206 | if shallow_depth < 0: |
| 207 | raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH_%s: %s" % (name, shallow_depth)) |
| 208 | ud.shallow_depths[name] = shallow_depth |
| 209 | |
| 210 | revs = d.getVar("BB_GIT_SHALLOW_REVS_%s" % name) |
| 211 | if revs is not None: |
| 212 | ud.shallow_revs.extend(revs.split()) |
| 213 | elif revs_default is not None: |
| 214 | ud.shallow_revs.extend(revs_default.split()) |
| 215 | |
| 216 | if (ud.shallow and |
| 217 | not ud.shallow_revs and |
| 218 | all(ud.shallow_depths[n] == 0 for n in ud.names)): |
| 219 | # Shallow disabled for this URL |
| 220 | ud.shallow = False |
| 221 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 222 | if ud.usehead: |
Andrew Geissler | c723b72 | 2021-01-08 16:14:09 -0600 | [diff] [blame] | 223 | # When usehead is set let's associate 'HEAD' with the unresolved |
| 224 | # rev of this repository. This will get resolved into a revision |
| 225 | # later. If an actual revision happens to have also been provided |
| 226 | # then this setting will be overridden. |
| 227 | for name in ud.names: |
| 228 | ud.unresolvedrev[name] = 'HEAD' |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 229 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 230 | ud.basecmd = d.getVar("FETCHCMD_git") or "git -c core.fsyncobjectfiles=0" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 231 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 232 | write_tarballs = d.getVar("BB_GENERATE_MIRROR_TARBALLS") or "0" |
| 233 | ud.write_tarballs = write_tarballs != "0" or ud.rebaseable |
| 234 | ud.write_shallow_tarballs = (d.getVar("BB_GENERATE_SHALLOW_TARBALLS") or write_tarballs) != "0" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 235 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 236 | ud.setup_revisions(d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 237 | |
| 238 | for name in ud.names: |
| 239 | # Ensure anything that doesn't look like a sha256 checksum/revision is translated into one |
| 240 | if not ud.revisions[name] or len(ud.revisions[name]) != 40 or (False in [c in "abcdef0123456789" for c in ud.revisions[name]]): |
| 241 | if ud.revisions[name]: |
| 242 | ud.unresolvedrev[name] = ud.revisions[name] |
| 243 | ud.revisions[name] = self.latest_revision(ud, d, name) |
| 244 | |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 245 | gitsrcname = '%s%s' % (ud.host.replace(':', '.'), ud.path.replace('/', '.').replace('*', '.').replace(' ','_')) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 246 | if gitsrcname.startswith('.'): |
| 247 | gitsrcname = gitsrcname[1:] |
| 248 | |
| 249 | # for rebaseable git repo, it is necessary to keep mirror tar ball |
| 250 | # per revision, so that even the revision disappears from the |
| 251 | # upstream repo in the future, the mirror will remain intact and still |
| 252 | # contains the revision |
| 253 | if ud.rebaseable: |
| 254 | for name in ud.names: |
| 255 | gitsrcname = gitsrcname + '_' + ud.revisions[name] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 256 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 257 | dl_dir = d.getVar("DL_DIR") |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 258 | gitdir = d.getVar("GITDIR") or (dl_dir + "/git2") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 259 | ud.clonedir = os.path.join(gitdir, gitsrcname) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 260 | ud.localfile = ud.clonedir |
| 261 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 262 | mirrortarball = 'git2_%s.tar.gz' % gitsrcname |
| 263 | ud.fullmirror = os.path.join(dl_dir, mirrortarball) |
| 264 | ud.mirrortarballs = [mirrortarball] |
| 265 | if ud.shallow: |
| 266 | tarballname = gitsrcname |
| 267 | if ud.bareclone: |
| 268 | tarballname = "%s_bare" % tarballname |
| 269 | |
| 270 | if ud.shallow_revs: |
| 271 | tarballname = "%s_%s" % (tarballname, "_".join(sorted(ud.shallow_revs))) |
| 272 | |
| 273 | for name, revision in sorted(ud.revisions.items()): |
| 274 | tarballname = "%s_%s" % (tarballname, ud.revisions[name][:7]) |
| 275 | depth = ud.shallow_depths[name] |
| 276 | if depth: |
| 277 | tarballname = "%s-%s" % (tarballname, depth) |
| 278 | |
| 279 | shallow_refs = [] |
| 280 | if not ud.nobranch: |
| 281 | shallow_refs.extend(ud.branches.values()) |
| 282 | if ud.shallow_extra_refs: |
| 283 | shallow_refs.extend(r.replace('refs/heads/', '').replace('*', 'ALL') for r in ud.shallow_extra_refs) |
| 284 | if shallow_refs: |
| 285 | tarballname = "%s_%s" % (tarballname, "_".join(sorted(shallow_refs)).replace('/', '.')) |
| 286 | |
| 287 | fetcher = self.__class__.__name__.lower() |
| 288 | ud.shallowtarball = '%sshallow_%s.tar.gz' % (fetcher, tarballname) |
| 289 | ud.fullshallow = os.path.join(dl_dir, ud.shallowtarball) |
| 290 | ud.mirrortarballs.insert(0, ud.shallowtarball) |
| 291 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 292 | def localpath(self, ud, d): |
| 293 | return ud.clonedir |
| 294 | |
| 295 | def need_update(self, ud, d): |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 296 | return self.clonedir_need_update(ud, d) or self.shallow_tarball_need_update(ud) or self.tarball_need_update(ud) |
| 297 | |
| 298 | def clonedir_need_update(self, ud, d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 299 | if not os.path.exists(ud.clonedir): |
| 300 | return True |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 301 | if ud.shallow and ud.write_shallow_tarballs and self.clonedir_need_shallow_revs(ud, d): |
| 302 | return True |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 303 | for name in ud.names: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 304 | if not self._contains_ref(ud, d, name, ud.clonedir): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 305 | return True |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 306 | return False |
| 307 | |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 308 | def clonedir_need_shallow_revs(self, ud, d): |
| 309 | for rev in ud.shallow_revs: |
| 310 | try: |
| 311 | runfetchcmd('%s rev-parse -q --verify %s' % (ud.basecmd, rev), d, quiet=True, workdir=ud.clonedir) |
| 312 | except bb.fetch2.FetchError: |
| 313 | return rev |
| 314 | return None |
| 315 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 316 | def shallow_tarball_need_update(self, ud): |
| 317 | return ud.shallow and ud.write_shallow_tarballs and not os.path.exists(ud.fullshallow) |
| 318 | |
| 319 | def tarball_need_update(self, ud): |
| 320 | return ud.write_tarballs and not os.path.exists(ud.fullmirror) |
| 321 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 322 | def try_premirror(self, ud, d): |
| 323 | # If we don't do this, updating an existing checkout with only premirrors |
| 324 | # is not possible |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 325 | if bb.utils.to_boolean(d.getVar("BB_FETCH_PREMIRRORONLY")): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 326 | return True |
| 327 | if os.path.exists(ud.clonedir): |
| 328 | return False |
| 329 | return True |
| 330 | |
| 331 | def download(self, ud, d): |
| 332 | """Fetch url""" |
| 333 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 334 | # A current clone is preferred to either tarball, a shallow tarball is |
| 335 | # preferred to an out of date clone, and a missing clone will use |
| 336 | # either tarball. |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 337 | if ud.shallow and os.path.exists(ud.fullshallow) and self.need_update(ud, d): |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 338 | ud.localpath = ud.fullshallow |
| 339 | return |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 340 | elif os.path.exists(ud.fullmirror) and not os.path.exists(ud.clonedir): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 341 | bb.utils.mkdirhier(ud.clonedir) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 342 | runfetchcmd("tar -xzf %s" % ud.fullmirror, d, workdir=ud.clonedir) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 343 | |
| 344 | repourl = self._get_repo_url(ud) |
| 345 | |
| 346 | # If the repo still doesn't exist, fallback to cloning it |
| 347 | if not os.path.exists(ud.clonedir): |
| 348 | # We do this since git will use a "-l" option automatically for local urls where possible |
| 349 | if repourl.startswith("file://"): |
| 350 | repourl = repourl[7:] |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 351 | clone_cmd = "LANG=C %s clone --bare --mirror %s %s --progress" % (ud.basecmd, shlex.quote(repourl), ud.clonedir) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 352 | if ud.proto.lower() != 'file': |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 353 | bb.fetch2.check_network_access(d, clone_cmd, ud.url) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 354 | progresshandler = GitProgressHandler(d) |
| 355 | runfetchcmd(clone_cmd, d, log=progresshandler) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 356 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 357 | # Update the checkout if needed |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 358 | if self.clonedir_need_update(ud, d): |
Brad Bishop | 6ef3265 | 2018-10-09 18:59:25 +0100 | [diff] [blame] | 359 | output = runfetchcmd("%s remote" % ud.basecmd, d, quiet=True, workdir=ud.clonedir) |
| 360 | if "origin" in output: |
| 361 | runfetchcmd("%s remote rm origin" % ud.basecmd, d, workdir=ud.clonedir) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 362 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 363 | runfetchcmd("%s remote add --mirror=fetch origin %s" % (ud.basecmd, shlex.quote(repourl)), d, workdir=ud.clonedir) |
| 364 | fetch_cmd = "LANG=C %s fetch -f --progress %s refs/*:refs/*" % (ud.basecmd, shlex.quote(repourl)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 365 | if ud.proto.lower() != 'file': |
| 366 | bb.fetch2.check_network_access(d, fetch_cmd, ud.url) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 367 | progresshandler = GitProgressHandler(d) |
| 368 | runfetchcmd(fetch_cmd, d, log=progresshandler, workdir=ud.clonedir) |
| 369 | runfetchcmd("%s prune-packed" % ud.basecmd, d, workdir=ud.clonedir) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 370 | runfetchcmd("%s pack-refs --all" % ud.basecmd, d, workdir=ud.clonedir) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 371 | runfetchcmd("%s pack-redundant --all | xargs -r rm" % ud.basecmd, d, workdir=ud.clonedir) |
Patrick Williams | d7e9631 | 2015-09-22 08:09:05 -0500 | [diff] [blame] | 372 | try: |
| 373 | os.unlink(ud.fullmirror) |
| 374 | except OSError as exc: |
| 375 | if exc.errno != errno.ENOENT: |
| 376 | raise |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 377 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 378 | for name in ud.names: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 379 | if not self._contains_ref(ud, d, name, ud.clonedir): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 380 | raise bb.fetch2.FetchError("Unable to find revision %s in branch %s even from upstream" % (ud.revisions[name], ud.branches[name])) |
| 381 | |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 382 | if ud.shallow and ud.write_shallow_tarballs: |
| 383 | missing_rev = self.clonedir_need_shallow_revs(ud, d) |
| 384 | if missing_rev: |
| 385 | raise bb.fetch2.FetchError("Unable to find revision %s even from upstream" % missing_rev) |
| 386 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 387 | def build_mirror_data(self, ud, d): |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 388 | if ud.shallow and ud.write_shallow_tarballs: |
| 389 | if not os.path.exists(ud.fullshallow): |
| 390 | if os.path.islink(ud.fullshallow): |
| 391 | os.unlink(ud.fullshallow) |
| 392 | tempdir = tempfile.mkdtemp(dir=d.getVar('DL_DIR')) |
| 393 | shallowclone = os.path.join(tempdir, 'git') |
| 394 | try: |
| 395 | self.clone_shallow_local(ud, shallowclone, d) |
| 396 | |
| 397 | logger.info("Creating tarball of git repository") |
| 398 | runfetchcmd("tar -czf %s ." % ud.fullshallow, d, workdir=shallowclone) |
| 399 | runfetchcmd("touch %s.done" % ud.fullshallow, d) |
| 400 | finally: |
| 401 | bb.utils.remove(tempdir, recurse=True) |
| 402 | elif ud.write_tarballs and not os.path.exists(ud.fullmirror): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 403 | if os.path.islink(ud.fullmirror): |
| 404 | os.unlink(ud.fullmirror) |
| 405 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 406 | logger.info("Creating tarball of git repository") |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 407 | runfetchcmd("tar -czf %s ." % ud.fullmirror, d, workdir=ud.clonedir) |
| 408 | runfetchcmd("touch %s.done" % ud.fullmirror, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 409 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 410 | def clone_shallow_local(self, ud, dest, d): |
| 411 | """Clone the repo and make it shallow. |
| 412 | |
| 413 | The upstream url of the new clone isn't set at this time, as it'll be |
| 414 | set correctly when unpacked.""" |
| 415 | runfetchcmd("%s clone %s %s %s" % (ud.basecmd, ud.cloneflags, ud.clonedir, dest), d) |
| 416 | |
| 417 | to_parse, shallow_branches = [], [] |
| 418 | for name in ud.names: |
| 419 | revision = ud.revisions[name] |
| 420 | depth = ud.shallow_depths[name] |
| 421 | if depth: |
| 422 | to_parse.append('%s~%d^{}' % (revision, depth - 1)) |
| 423 | |
| 424 | # For nobranch, we need a ref, otherwise the commits will be |
| 425 | # removed, and for non-nobranch, we truncate the branch to our |
| 426 | # srcrev, to avoid keeping unnecessary history beyond that. |
| 427 | branch = ud.branches[name] |
| 428 | if ud.nobranch: |
| 429 | ref = "refs/shallow/%s" % name |
| 430 | elif ud.bareclone: |
| 431 | ref = "refs/heads/%s" % branch |
| 432 | else: |
| 433 | ref = "refs/remotes/origin/%s" % branch |
| 434 | |
| 435 | shallow_branches.append(ref) |
| 436 | runfetchcmd("%s update-ref %s %s" % (ud.basecmd, ref, revision), d, workdir=dest) |
| 437 | |
| 438 | # Map srcrev+depths to revisions |
| 439 | parsed_depths = runfetchcmd("%s rev-parse %s" % (ud.basecmd, " ".join(to_parse)), d, workdir=dest) |
| 440 | |
| 441 | # Resolve specified revisions |
| 442 | parsed_revs = runfetchcmd("%s rev-parse %s" % (ud.basecmd, " ".join('"%s^{}"' % r for r in ud.shallow_revs)), d, workdir=dest) |
| 443 | shallow_revisions = parsed_depths.splitlines() + parsed_revs.splitlines() |
| 444 | |
| 445 | # Apply extra ref wildcards |
| 446 | all_refs = runfetchcmd('%s for-each-ref "--format=%%(refname)"' % ud.basecmd, |
| 447 | d, workdir=dest).splitlines() |
| 448 | for r in ud.shallow_extra_refs: |
| 449 | if not ud.bareclone: |
| 450 | r = r.replace('refs/heads/', 'refs/remotes/origin/') |
| 451 | |
| 452 | if '*' in r: |
| 453 | matches = filter(lambda a: fnmatch.fnmatchcase(a, r), all_refs) |
| 454 | shallow_branches.extend(matches) |
| 455 | else: |
| 456 | shallow_branches.append(r) |
| 457 | |
| 458 | # Make the repository shallow |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 459 | shallow_cmd = [self.make_shallow_path, '-s'] |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 460 | for b in shallow_branches: |
| 461 | shallow_cmd.append('-r') |
| 462 | shallow_cmd.append(b) |
| 463 | shallow_cmd.extend(shallow_revisions) |
| 464 | runfetchcmd(subprocess.list2cmdline(shallow_cmd), d, workdir=dest) |
| 465 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 466 | def unpack(self, ud, destdir, d): |
| 467 | """ unpack the downloaded src to destdir""" |
| 468 | |
| 469 | subdir = ud.parm.get("subpath", "") |
| 470 | if subdir != "": |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 471 | readpathspec = ":%s" % subdir |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 472 | def_destsuffix = "%s/" % os.path.basename(subdir.rstrip('/')) |
| 473 | else: |
| 474 | readpathspec = "" |
| 475 | def_destsuffix = "git/" |
| 476 | |
| 477 | destsuffix = ud.parm.get("destsuffix", def_destsuffix) |
| 478 | destdir = ud.destdir = os.path.join(destdir, destsuffix) |
| 479 | if os.path.exists(destdir): |
| 480 | bb.utils.prunedir(destdir) |
| 481 | |
Brad Bishop | a34c030 | 2019-09-23 22:34:48 -0400 | [diff] [blame] | 482 | need_lfs = ud.parm.get("lfs", "1") == "1" |
| 483 | |
Andrew Geissler | 4ed12e1 | 2020-06-05 18:00:41 -0500 | [diff] [blame] | 484 | if not need_lfs: |
| 485 | ud.basecmd = "GIT_LFS_SKIP_SMUDGE=1 " + ud.basecmd |
| 486 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 487 | source_found = False |
| 488 | source_error = [] |
| 489 | |
| 490 | if not source_found: |
| 491 | clonedir_is_up_to_date = not self.clonedir_need_update(ud, d) |
| 492 | if clonedir_is_up_to_date: |
| 493 | runfetchcmd("%s clone %s %s/ %s" % (ud.basecmd, ud.cloneflags, ud.clonedir, destdir), d) |
| 494 | source_found = True |
| 495 | else: |
| 496 | source_error.append("clone directory not available or not up to date: " + ud.clonedir) |
| 497 | |
| 498 | if not source_found: |
| 499 | if ud.shallow: |
| 500 | if os.path.exists(ud.fullshallow): |
| 501 | bb.utils.mkdirhier(destdir) |
| 502 | runfetchcmd("tar -xzf %s" % ud.fullshallow, d, workdir=destdir) |
| 503 | source_found = True |
| 504 | else: |
| 505 | source_error.append("shallow clone not available: " + ud.fullshallow) |
| 506 | else: |
| 507 | source_error.append("shallow clone not enabled") |
| 508 | |
| 509 | if not source_found: |
| 510 | raise bb.fetch2.UnpackError("No up to date source found: " + "; ".join(source_error), ud.url) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 511 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 512 | repourl = self._get_repo_url(ud) |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 513 | runfetchcmd("%s remote set-url origin %s" % (ud.basecmd, shlex.quote(repourl)), d, workdir=destdir) |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 514 | |
| 515 | if self._contains_lfs(ud, d, destdir): |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 516 | if need_lfs and not self._find_git_lfs(d): |
| 517 | raise bb.fetch2.FetchError("Repository %s has LFS content, install git-lfs on host to download (or set lfs=0 to ignore it)" % (repourl)) |
Andrew Geissler | 4ed12e1 | 2020-06-05 18:00:41 -0500 | [diff] [blame] | 518 | elif not need_lfs: |
Brad Bishop | a34c030 | 2019-09-23 22:34:48 -0400 | [diff] [blame] | 519 | bb.note("Repository %s has LFS content but it is not being fetched" % (repourl)) |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 520 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 521 | if not ud.nocheckout: |
| 522 | if subdir != "": |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 523 | runfetchcmd("%s read-tree %s%s" % (ud.basecmd, ud.revisions[ud.names[0]], readpathspec), d, |
| 524 | workdir=destdir) |
| 525 | runfetchcmd("%s checkout-index -q -f -a" % ud.basecmd, d, workdir=destdir) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 526 | elif not ud.nobranch: |
| 527 | branchname = ud.branches[ud.names[0]] |
| 528 | runfetchcmd("%s checkout -B %s %s" % (ud.basecmd, branchname, \ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 529 | ud.revisions[ud.names[0]]), d, workdir=destdir) |
Andre Rosa | 49271d4 | 2017-09-07 11:15:55 +0200 | [diff] [blame] | 530 | runfetchcmd("%s branch %s --set-upstream-to origin/%s" % (ud.basecmd, branchname, \ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 531 | branchname), d, workdir=destdir) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 532 | else: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 533 | runfetchcmd("%s checkout %s" % (ud.basecmd, ud.revisions[ud.names[0]]), d, workdir=destdir) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 534 | |
| 535 | return True |
| 536 | |
| 537 | def clean(self, ud, d): |
| 538 | """ clean the git directory """ |
| 539 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 540 | to_remove = [ud.localpath, ud.fullmirror, ud.fullmirror + ".done"] |
| 541 | # The localpath is a symlink to clonedir when it is cloned from a |
| 542 | # mirror, so remove both of them. |
| 543 | if os.path.islink(ud.localpath): |
| 544 | clonedir = os.path.realpath(ud.localpath) |
| 545 | to_remove.append(clonedir) |
| 546 | |
| 547 | for r in to_remove: |
| 548 | if os.path.exists(r): |
| 549 | bb.note('Removing %s' % r) |
| 550 | bb.utils.remove(r, True) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 551 | |
| 552 | def supports_srcrev(self): |
| 553 | return True |
| 554 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 555 | def _contains_ref(self, ud, d, name, wd): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 556 | cmd = "" |
| 557 | if ud.nobranch: |
| 558 | cmd = "%s log --pretty=oneline -n 1 %s -- 2> /dev/null | wc -l" % ( |
| 559 | ud.basecmd, ud.revisions[name]) |
| 560 | else: |
| 561 | cmd = "%s branch --contains %s --list %s 2> /dev/null | wc -l" % ( |
| 562 | ud.basecmd, ud.revisions[name], ud.branches[name]) |
| 563 | try: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 564 | output = runfetchcmd(cmd, d, quiet=True, workdir=wd) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 565 | except bb.fetch2.FetchError: |
| 566 | return False |
| 567 | if len(output.split()) > 1: |
| 568 | raise bb.fetch2.FetchError("The command '%s' gave output with more then 1 line unexpectedly, output: '%s'" % (cmd, output)) |
| 569 | return output.split()[0] != "0" |
| 570 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 571 | def _contains_lfs(self, ud, d, wd): |
| 572 | """ |
| 573 | Check if the repository has 'lfs' (large file) content |
| 574 | """ |
Andrew Geissler | 4ed12e1 | 2020-06-05 18:00:41 -0500 | [diff] [blame] | 575 | |
| 576 | if not ud.nobranch: |
| 577 | branchname = ud.branches[ud.names[0]] |
| 578 | else: |
| 579 | branchname = "master" |
| 580 | |
| 581 | cmd = "%s grep lfs origin/%s:.gitattributes | wc -l" % ( |
| 582 | ud.basecmd, ud.branches[ud.names[0]]) |
| 583 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 584 | try: |
| 585 | output = runfetchcmd(cmd, d, quiet=True, workdir=wd) |
| 586 | if int(output) > 0: |
| 587 | return True |
| 588 | except (bb.fetch2.FetchError,ValueError): |
| 589 | pass |
| 590 | return False |
| 591 | |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 592 | def _find_git_lfs(self, d): |
| 593 | """ |
| 594 | Return True if git-lfs can be found, False otherwise. |
| 595 | """ |
| 596 | import shutil |
| 597 | return shutil.which("git-lfs", path=d.getVar('PATH')) is not None |
| 598 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 599 | def _get_repo_url(self, ud): |
| 600 | """ |
| 601 | Return the repository URL |
| 602 | """ |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 603 | # Note that we do not support passwords directly in the git urls. There are several |
| 604 | # reasons. SRC_URI can be written out to things like buildhistory and people don't |
| 605 | # want to leak passwords like that. Its also all too easy to share metadata without |
| 606 | # removing the password. ssh keys, ~/.netrc and ~/.ssh/config files can be used as |
| 607 | # alternatives so we will not take patches adding password support here. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 608 | if ud.user: |
| 609 | username = ud.user + '@' |
| 610 | else: |
| 611 | username = "" |
| 612 | return "%s://%s%s%s" % (ud.proto, username, ud.host, ud.path) |
| 613 | |
| 614 | def _revision_key(self, ud, d, name): |
| 615 | """ |
| 616 | Return a unique key for the url |
| 617 | """ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 618 | # Collapse adjacent slashes |
| 619 | slash_re = re.compile(r"/+") |
| 620 | return "git:" + ud.host + slash_re.sub(".", ud.path) + ud.unresolvedrev[name] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 621 | |
| 622 | def _lsremote(self, ud, d, search): |
| 623 | """ |
| 624 | Run git ls-remote with the specified search string |
| 625 | """ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 626 | # Prevent recursion e.g. in OE if SRCPV is in PV, PV is in WORKDIR, |
| 627 | # and WORKDIR is in PATH (as a result of RSS), our call to |
| 628 | # runfetchcmd() exports PATH so this function will get called again (!) |
| 629 | # In this scenario the return call of the function isn't actually |
| 630 | # important - WORKDIR isn't needed in PATH to call git ls-remote |
| 631 | # anyway. |
| 632 | if d.getVar('_BB_GIT_IN_LSREMOTE', False): |
| 633 | return '' |
| 634 | d.setVar('_BB_GIT_IN_LSREMOTE', '1') |
| 635 | try: |
| 636 | repourl = self._get_repo_url(ud) |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 637 | cmd = "%s ls-remote %s %s" % \ |
| 638 | (ud.basecmd, shlex.quote(repourl), search) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 639 | if ud.proto.lower() != 'file': |
| 640 | bb.fetch2.check_network_access(d, cmd, repourl) |
| 641 | output = runfetchcmd(cmd, d, True) |
| 642 | if not output: |
| 643 | raise bb.fetch2.FetchError("The command %s gave empty output unexpectedly" % cmd, ud.url) |
| 644 | finally: |
| 645 | d.delVar('_BB_GIT_IN_LSREMOTE') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 646 | return output |
| 647 | |
| 648 | def _latest_revision(self, ud, d, name): |
| 649 | """ |
| 650 | Compute the HEAD revision for the url |
| 651 | """ |
| 652 | output = self._lsremote(ud, d, "") |
| 653 | # Tags of the form ^{} may not work, need to fallback to other form |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 654 | if ud.unresolvedrev[name][:5] == "refs/" or ud.usehead: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 655 | head = ud.unresolvedrev[name] |
| 656 | tag = ud.unresolvedrev[name] |
| 657 | else: |
| 658 | head = "refs/heads/%s" % ud.unresolvedrev[name] |
| 659 | tag = "refs/tags/%s" % ud.unresolvedrev[name] |
| 660 | for s in [head, tag + "^{}", tag]: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 661 | for l in output.strip().split('\n'): |
| 662 | sha1, ref = l.split() |
| 663 | if s == ref: |
| 664 | return sha1 |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 665 | raise bb.fetch2.FetchError("Unable to resolve '%s' in upstream git repository in git ls-remote output for %s" % \ |
| 666 | (ud.unresolvedrev[name], ud.host+ud.path)) |
| 667 | |
| 668 | def latest_versionstring(self, ud, d): |
| 669 | """ |
| 670 | Compute the latest release name like "x.y.x" in "x.y.x+gitHASH" |
| 671 | by searching through the tags output of ls-remote, comparing |
| 672 | versions and returning the highest match. |
| 673 | """ |
| 674 | pupver = ('', '') |
| 675 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 676 | tagregex = re.compile(d.getVar('UPSTREAM_CHECK_GITTAGREGEX') or r"(?P<pver>([0-9][\.|_]?)+)") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 677 | try: |
| 678 | output = self._lsremote(ud, d, "refs/tags/*") |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 679 | except (bb.fetch2.FetchError, bb.fetch2.NetworkAccess) as e: |
| 680 | bb.note("Could not list remote: %s" % str(e)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 681 | return pupver |
| 682 | |
| 683 | verstring = "" |
| 684 | revision = "" |
| 685 | for line in output.split("\n"): |
| 686 | if not line: |
| 687 | break |
| 688 | |
| 689 | tag_head = line.split("/")[-1] |
| 690 | # Ignore non-released branches |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 691 | m = re.search(r"(alpha|beta|rc|final)+", tag_head) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 692 | if m: |
| 693 | continue |
| 694 | |
| 695 | # search for version in the line |
| 696 | tag = tagregex.search(tag_head) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 697 | if tag is None: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 698 | continue |
| 699 | |
| 700 | tag = tag.group('pver') |
| 701 | tag = tag.replace("_", ".") |
| 702 | |
| 703 | if verstring and bb.utils.vercmp(("0", tag, ""), ("0", verstring, "")) < 0: |
| 704 | continue |
| 705 | |
| 706 | verstring = tag |
| 707 | revision = line.split()[0] |
| 708 | pupver = (verstring, revision) |
| 709 | |
| 710 | return pupver |
| 711 | |
| 712 | def _build_revision(self, ud, d, name): |
| 713 | return ud.revisions[name] |
| 714 | |
| 715 | def gitpkgv_revision(self, ud, d, name): |
| 716 | """ |
| 717 | Return a sortable revision number by counting commits in the history |
| 718 | Based on gitpkgv.bblass in meta-openembedded |
| 719 | """ |
| 720 | rev = self._build_revision(ud, d, name) |
| 721 | localpath = ud.localpath |
| 722 | rev_file = os.path.join(localpath, "oe-gitpkgv_" + rev) |
| 723 | if not os.path.exists(localpath): |
| 724 | commits = None |
| 725 | else: |
| 726 | if not os.path.exists(rev_file) or not os.path.getsize(rev_file): |
| 727 | from pipes import quote |
| 728 | commits = bb.fetch2.runfetchcmd( |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 729 | "git rev-list %s -- | wc -l" % quote(rev), |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 730 | d, quiet=True).strip().lstrip('0') |
| 731 | if commits: |
| 732 | open(rev_file, "w").write("%d\n" % int(commits)) |
| 733 | else: |
| 734 | commits = open(rev_file, "r").readline(128).strip() |
| 735 | if commits: |
| 736 | return False, "%s+%s" % (commits, rev[:7]) |
| 737 | else: |
| 738 | return True, str(rev) |
| 739 | |
| 740 | def checkstatus(self, fetch, ud, d): |
| 741 | try: |
| 742 | self._lsremote(ud, d, "") |
| 743 | return True |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 744 | except bb.fetch2.FetchError: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 745 | return False |