mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 00:32:14 +02:00
Recipes with multiple repositories in SRC_URI use SRCREV with repo postfix. Set them to AUTOREV too. (From meta-yocto rev: e495ebd7039ff7b0dd9452343f8153698b5f6575) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
#
|
|
# AUTOREV and PV containing '+git' needs to be set early, before any anonymous python
|
|
# expands anything containing PV, else the parse process won't trigger the fetcher to
|
|
# cache the needed version data
|
|
#
|
|
python pokybleeding_version_handler () {
|
|
bpn = d.getVar("BPN")
|
|
# We're running before the class extension code at PreFinalise so manually fix BPN
|
|
bpn = bpn.replace("-nativesdk", "").replace("nativesdk-", "")
|
|
|
|
if bpn in d.getVar("POKY_AUTOREV_RECIPES").split():
|
|
if "pseudo" in bpn:
|
|
bb.warn("Here 5 %s %s" % (d.getVar("PN"), bpn))
|
|
d.setVar("SRCREV", "${AUTOREV}")
|
|
srcrev_format = d.getVar("SRCREV_FORMAT")
|
|
if srcrev_format:
|
|
for multi_scm in d.getVar("SRCREV_FORMAT").split("_"):
|
|
if multi_scm != "":
|
|
d.setVar("SRCREV_%s" % multi_scm, "${AUTOREV}")
|
|
if "+git" not in d.getVar("PV"):
|
|
d.appendVar("PV", "+git")
|
|
}
|
|
|
|
addhandler pokybleeding_version_handler
|
|
pokybleeding_version_handler[eventmask] = "bb.event.RecipePreFinalise"
|