Lines Matching full:url
29 url = urllib.parse.urlunparse(parts)
33 return url + f";protocol={protocol};nobranch=1;destsuffix={destination};rev={sha}"
57 url = f"{p.url};subdir={dest};sha256sum={p.checksum}"
58 lines.append(f" {url} \\")
61 url = transform_git(p.httpsUrl, p.revision, dest)
62 lines.append(f" {url} \\")
84 # Switch the URL to use git: and save the original protocol
85 parts = urllib.parse.urlparse(repo.url)
88 url = urllib.parse.urlunparse(parts)
90 sha = resolve_commit(repo.url, repo.commit)
94 url += f";protocol={protocol};nobranch=1;destsuffix={destsuffix};rev={sha}"
95 lines.append(f" {url} \\")