- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
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 = "5554572f02537b8646139d59ab520e59e1d5f7b3"
|
|
|
|
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 ${WORKDIR}/git/repo ${D}${bindir}/repo
|
|
}
|
|
|
|
RDEPENDS:${PN} = "python3 git"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|