diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-02 12:40:59 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-03 10:12:42 +0000 |
commit | 489fe8ff39fe0e68d8aeaa319a1e5ffaa65d7c84 (patch) | |
tree | e136164b515eeddf04290fec566bbf6016db67b7 /bitbake | |
parent | 2cf162f5fe1561f6e09bd17bb85f91b62cb2004f (diff) | |
download | poky-489fe8ff39fe0e68d8aeaa319a1e5ffaa65d7c84.tar.gz |
bitbake: fetch/git: Handle github dropping git:// support
github is dropping support for git protocol in Git urls. Add code to remap
this to https in a way that could be used in older bitbake versions.
(Bitbake rev: f05e19135b3ddee509c0cb427b3b9376bb4738d1)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 4186295cdd..462c4d0820 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -142,6 +142,10 @@ class Git(FetchMethod): | |||
142 | ud.proto = 'file' | 142 | ud.proto = 'file' |
143 | else: | 143 | else: |
144 | ud.proto = "git" | 144 | ud.proto = "git" |
145 | if ud.host == "github.com" and ud.proto == "git": | ||
146 | # github stopped supporting git protocol | ||
147 | # https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git | ||
148 | ud.proto = "https" | ||
145 | 149 | ||
146 | if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'): | 150 | if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'): |
147 | raise bb.fetch2.ParameterError("Invalid protocol type", ud.url) | 151 | raise bb.fetch2.ParameterError("Invalid protocol type", ud.url) |