mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 21:23:04 +01:00
This update was made with the convert-scruri.py script in scripts/contrib
This script handles two emerging issues:
1. There is uncertainty about the default branch name in git going forward.
To try and cover the different possible outcomes, add branch names to all
git:// and gitsm:// SRC_URI entries.
2. Github are dropping support for git:// protocol fetching, so remap github
urls as needed. For more details see:
https://github.blog/2021-09-01-improving-git-protocol-security-github/
(From OE-Core rev: 827a805349f9732b2a5fa9184dc7922af36de327)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
970 B
BlitzBasic
32 lines
970 B
BlitzBasic
SUMMARY = "Build Result Compare Script"
|
|
DESCRIPTION = "This package contains scripts to find out if the build result\
|
|
differs to a former build."
|
|
HOMEPAGE = "https://github.com/openSUSE/build-compare"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
SRC_URI = "git://github.com/openSUSE/build-compare.git;branch=master;protocol=https \
|
|
file://Ignore-DWARF-sections.patch;striplevel=1 \
|
|
"
|
|
|
|
# Date matches entry in build-compare.changes and date of SRCREV.
|
|
#
|
|
SRCREV = "4dfa207660776cae120afa4353aec7f1f2a998d2"
|
|
PE = "1"
|
|
PV = "2019.08.14+git${SRCPV}"
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
do_install() {
|
|
install -d ${D}/${bindir}
|
|
install -m 755 functions.sh ${D}/${bindir}
|
|
install -m 755 pkg-diff.sh ${D}/${bindir}
|
|
install -m 755 same-build-result.sh ${D}/${bindir}
|
|
install -m 755 srpm-check.sh ${D}/${bindir}
|
|
}
|
|
|
|
RDEPENDS_${PN} += "bash"
|