mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
b138d9dde3
Changelog: ========== - project: ignore more curl failure modes - logging: Fix log formatting with colored output - upload: add a --topic option for setting topic explicitly - sync: Abort rebase in progress if force-checkout is set - ssh: Set git protocol version 2 on SSH ControlMaster - upload: drop check for uncommitted local changes - git: raise hard version to 1.9.1 - release: update-hooks: helper for automatically syncing hooks - gitc: delete a few more dead references - man: regenerate man pages - Remove platform_utils.realpath - Fix drive mounted directory on Windows - git_command: unify soft/hard versions with requirements.json (From OE-Core rev: 62457b7e3039780fbf6c7822baad96a37c1d224a) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
1.0 KiB
BlitzBasic
31 lines
1.0 KiB
BlitzBasic
# SPDX-License-Identifier: MIT
|
|
# Copyright (C) 2021 iris-GmbH infrared & intelligent sensors
|
|
|
|
SUMMARY = "Tool for managing many Git repositories"
|
|
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."
|
|
HOMEPAGE = "https://android.googlesource.com/tools/repo"
|
|
SECTION = "console/utils"
|
|
|
|
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 = "0444ddf78e3026056ee3786119e595909c039ff2"
|
|
|
|
MIRRORS += "git://gerrit.googlesource.com/git-repo.git git://github.com/GerritCodeReview/git-repo.git"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_configure:prepend() {
|
|
sed -Ei "s/REPO_REV\s*=\s*('|\")stable('|\")/REPO_REV = '${SRCREV}'/g" ${S}/repo
|
|
}
|
|
|
|
do_install() {
|
|
install -D ${S}/repo ${D}${bindir}/repo
|
|
}
|
|
|
|
RDEPENDS:${PN} = "python3 git"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|