From 0682697987873ab395360035b70630acfe66cd3a Mon Sep 17 00:00:00 2001 From: Daniel Wagenknecht Date: Thu, 2 Sep 2021 08:31:17 +0200 Subject: mirrors.bbclass: provide additional rule for git repo fallbacks Git hosting servers that require a slightly different URL when accessing repositories via https protocol instead of the git native protocol are not uncommon (servers using cgit as web UI). Provide a general rule to try HOST/git/PATH via https as git repo fallback. Signed-off-by: Daniel Wagenknecht Signed-off-by: Richard Purdie --- meta/classes/mirrors.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/mirrors.bbclass b/meta/classes/mirrors.bbclass index 87bba41472..ab75ca1bb6 100644 --- a/meta/classes/mirrors.bbclass +++ b/meta/classes/mirrors.bbclass @@ -73,4 +73,5 @@ git://git.gnome.org/.* git://gitlab.gnome.org/GNOME/PATH;protocol=https \ git://git.savannah.gnu.org/.* git://git.savannah.gnu.org/git/PATH;protocol=https \n \ git://git.yoctoproject.org/.* git://git.yoctoproject.org/git/PATH;protocol=https \n \ git://.*/.* git://HOST/PATH;protocol=https \n \ +git://.*/.* git://HOST/git/PATH;protocol=https \n \ " -- cgit 1.2.3-korg