]> code.ossystems Code Review - openembedded-core.git/commit
recipetool: Fix circular reference in SRC_URI
authorSaul Wold <Saul.Wold@windriver.com>
Thu, 3 Feb 2022 19:43:48 +0000 (11:43 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 5 Feb 2022 17:22:14 +0000 (17:22 +0000)
commit3b8d43fc53ee13d39abc3b2a1f706a97fcf752aa
treed8f7c6959de02fa63aad465fe9b1c5cb18a0f25e
parent5dcf6e8e3e6d0c66561fef35f5211641ca83e769
recipetool: Fix circular reference in SRC_URI

When creating a new recipe.bb file for a binary, don't use BP which
includes the version information, instead use BPN which is just the
name base Package Name.

Since PB is not specified, it takes the default:
PV = "1.0+git${SRCPV}"

But SRCPV is defined in terms of the SRC_URI, which leads to infinite
recursion (traceback below). Here are the pertinent variables which
cause the recursion:

SRC_URI = "git://github.com/lvc/abi-dumper;protocol=https;subdir=${BP}"
BP = "${BPN}-${PV}"
PV = "1.0+git${SRCPV}"
SRCPV = "${@bb.fetch2.get_srcrev(d)}"

def get_srcrev(d, method_name='sortable_revision'):
    # ... trimmed
    scms = []
    fetcher = Fetch(d.getVar('SRC_URI').split(), d)
    # ... trimmed

[YOCTO #14040]

Signed-off-by: Saul Wold <saul.wold@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/recipetool/create.py