diff options
Diffstat (limited to 'meta/recipes-devtools/repo/repo_2.44.bb')
| -rw-r--r-- | meta/recipes-devtools/repo/repo_2.44.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/repo/repo_2.44.bb b/meta/recipes-devtools/repo/repo_2.44.bb new file mode 100644 index 0000000000..875897851a --- /dev/null +++ b/meta/recipes-devtools/repo/repo_2.44.bb | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | # SPDX-License-Identifier: MIT | ||
| 2 | # Copyright (C) 2021 iris-GmbH infrared & intelligent sensors | ||
| 3 | |||
| 4 | SUMMARY = "Tool for managing many Git repositories" | ||
| 5 | DESCRIPTION = "Repo is a tool built on top of Git. Repo helps manage many Git repositories, does the uploads to revision control systems, and automates parts of the development workflow." | ||
| 6 | HOMEPAGE = "https://android.googlesource.com/tools/repo" | ||
| 7 | SECTION = "console/utils" | ||
| 8 | |||
| 9 | LICENSE = "Apache-2.0" | ||
| 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | ||
| 11 | |||
| 12 | SRC_URI = "git://gerrit.googlesource.com/git-repo.git;protocol=https;branch=main \ | ||
| 13 | " | ||
| 14 | SRCREV = "fff1d2d74c2078b62cc9c2561330e41a842dc197" | ||
| 15 | |||
| 16 | MIRRORS += "git://gerrit.googlesource.com/git-repo.git git://github.com/GerritCodeReview/git-repo.git" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/git" | ||
| 19 | |||
| 20 | do_configure:prepend() { | ||
| 21 | sed -Ei "s/REPO_REV\s*=\s*('|\")stable('|\")/REPO_REV = '${SRCREV}'/g" ${S}/repo | ||
| 22 | } | ||
| 23 | |||
| 24 | do_install() { | ||
| 25 | install -D ${WORKDIR}/git/repo ${D}${bindir}/repo | ||
| 26 | } | ||
| 27 | |||
| 28 | RDEPENDS:${PN} = "python3 git" | ||
| 29 | |||
| 30 | BBCLASSEXTEND = "native nativesdk" | ||
