summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/repo/repo-2.17.3/0001-Set-REPO_REV-to-v2.17.3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/repo/repo-2.17.3/0001-Set-REPO_REV-to-v2.17.3.patch')
-rw-r--r--meta/recipes-devtools/repo/repo-2.17.3/0001-Set-REPO_REV-to-v2.17.3.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/repo/repo-2.17.3/0001-Set-REPO_REV-to-v2.17.3.patch b/meta/recipes-devtools/repo/repo-2.17.3/0001-Set-REPO_REV-to-v2.17.3.patch
new file mode 100644
index 0000000000..60f1086b32
--- /dev/null
+++ b/meta/recipes-devtools/repo/repo-2.17.3/0001-Set-REPO_REV-to-v2.17.3.patch
@@ -0,0 +1,35 @@
1From bdd2a528da59c28db8ae2986834926de7cebf3ab Mon Sep 17 00:00:00 2001
2From: Jasper Orschulko <Jasper.Orschulko@iris-sensing.com>
3Date: Thu, 4 Nov 2021 16:55:12 +0100
4Subject: [PATCH] Set REPO_REV to v2.17.3
5
6repo is an unusual tool because it downloads all of its own Python modules
7using GPG-signed git tags, and stores those files as part of the project
8that it is working with.
9
10So in order to have a reproducible repo installation within the project
11folders, we hardcode the default REPO_REV to a SHA1 that corresponds to
12the version of the recipe. REPO_REV can still be overwriten by the user,
13by specifying the REPO_REV environment variable.
14
15Upstream-Status: Inappropriate [configuration]
16Signed-off-by: Jasper Orschulko <Jasper.Orschulko@iris-sensing.com>
17---
18 repo | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/repo b/repo
22index 4cddbf1..5c3551f 100755
23--- a/repo
24+++ b/repo
25@@ -144,7 +144,7 @@ if not REPO_URL:
26 REPO_URL = 'https://gerrit.googlesource.com/git-repo'
27 REPO_REV = os.environ.get('REPO_REV')
28 if not REPO_REV:
29- REPO_REV = 'stable'
30+ REPO_REV = '11b30b91df1f0e03b53da970ec2588e85817bacc'
31 # URL to file bug reports for repo tool issues.
32 BUG_URL = 'https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue'
33
34--
352.34.0