Replace a patch with a sed search-replace: this allows automated version updates, as the patch hardcoded the repo source revision.
Signed-off-by: Alexander Kanavin <a...@linutronix.de> --- .../0001-Set-REPO_REV-to-v2.17.3.patch | 35 ------------------- .../repo/{repo_2.17.3.bb => repo_2.18.bb} | 9 +++-- 2 files changed, 6 insertions(+), 38 deletions(-) delete mode 100644 meta/recipes-devtools/repo/repo-2.17.3/0001-Set-REPO_REV-to-v2.17.3.patch rename meta/recipes-devtools/repo/{repo_2.17.3.bb => repo_2.18.bb} (81%) 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 deleted file mode 100644 index 60f1086b32..0000000000 --- a/meta/recipes-devtools/repo/repo-2.17.3/0001-Set-REPO_REV-to-v2.17.3.patch +++ /dev/null @@ -1,35 +0,0 @@ -From bdd2a528da59c28db8ae2986834926de7cebf3ab Mon Sep 17 00:00:00 2001 -From: Jasper Orschulko <jasper.orschu...@iris-sensing.com> -Date: Thu, 4 Nov 2021 16:55:12 +0100 -Subject: [PATCH] Set REPO_REV to v2.17.3 - -repo is an unusual tool because it downloads all of its own Python modules -using GPG-signed git tags, and stores those files as part of the project -that it is working with. - -So in order to have a reproducible repo installation within the project -folders, we hardcode the default REPO_REV to a SHA1 that corresponds to -the version of the recipe. REPO_REV can still be overwriten by the user, -by specifying the REPO_REV environment variable. - -Upstream-Status: Inappropriate [configuration] -Signed-off-by: Jasper Orschulko <jasper.orschu...@iris-sensing.com> ---- - repo | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/repo b/repo -index 4cddbf1..5c3551f 100755 ---- a/repo -+++ b/repo -@@ -144,7 +144,7 @@ if not REPO_URL: - REPO_URL = 'https://gerrit.googlesource.com/git-repo' - REPO_REV = os.environ.get('REPO_REV') - if not REPO_REV: -- REPO_REV = 'stable' -+ REPO_REV = '11b30b91df1f0e03b53da970ec2588e85817bacc' - # URL to file bug reports for repo tool issues. - BUG_URL = 'https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue' - --- -2.34.0 diff --git a/meta/recipes-devtools/repo/repo_2.17.3.bb b/meta/recipes-devtools/repo/repo_2.18.bb similarity index 81% rename from meta/recipes-devtools/repo/repo_2.17.3.bb rename to meta/recipes-devtools/repo/repo_2.18.bb index f7bbb22964..b8b73c41f3 100644 --- a/meta/recipes-devtools/repo/repo_2.17.3.bb +++ b/meta/recipes-devtools/repo/repo_2.18.bb @@ -10,15 +10,18 @@ LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" SRC_URI = "git://gerrit.googlesource.com/git-repo.git;protocol=https;branch=main" -SRCREV = "11b30b91df1f0e03b53da970ec2588e85817bacc" +SRCREV = "4a478edb443864561089b2699c9e65c85fc5e036" -SRC_URI += "file://0001-python3-shebang.patch \ - file://0001-Set-REPO_REV-to-v2.17.3.patch" +SRC_URI += "file://0001-python3-shebang.patch" MIRRORS += "git://gerrit.googlesource.com/git-repo.git git://github.com/GerritCodeReview/git-repo.git" S = "${WORKDIR}/git" +do_configure:prepend() { + sed -i -e "s/REPO_REV = '.*'/REPO_REV = '${SRCREV}'/" ${S}/repo +} + do_install() { install -D ${WORKDIR}/git/repo ${D}${bindir}/repo } -- 2.20.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#159293): https://lists.openembedded.org/g/openembedded-core/message/159293 Mute This Topic: https://lists.openembedded.org/mt/87564004/21656 Group Owner: openembedded-core+ow...@lists.openembedded.org Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-