mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
Changelog: ========== - sync: fix connection error on macOS - upload: Return correct tuple values in _ProcessResults - worktree: Do not try to fix relative paths - forall: Fix returning results early - Use full name of the revision when checking dest-branch - Add REPO_SKIP_SELF_UPDATE check in sync - manifest: add optional base check on remove and extend - [event_log] Stop leaking semaphore resources - progress: always show done message - subcmds: reduce multiprocessing serialization overhead - sync: reduce multiprocessing serialization overhead - Fix incremental syncs for prjs with submodules (From OE-Core rev: 92e274a819ab6d1202519fd6b0b0cd9bf2b2e727) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@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 = "ab2d3211043e2cb42a55f56e5abf69d23103c105"
|
|
|
|
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"
|