mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 11:13:04 +01:00
oe/recipeutils.py: get_recipe_upstream_version returns 1.0 when not SRC_URI
Recipes that don't have SRC_URI means that don't use upstream sources so returns 1.0. (From OE-Core rev: 92f2481cf88e7b626cfe604134c9d020d06bd32c) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
5d0f8a6db9
commit
75c877b3cc
@@ -667,8 +667,17 @@ def get_recipe_upstream_version(rd):
|
||||
ru['type'] = 'U'
|
||||
ru['datetime'] = ''
|
||||
|
||||
# XXX: If don't have SRC_URI means that don't have upstream sources so
|
||||
# returns 1.0.
|
||||
src_uris = rd.getVar('SRC_URI', True)
|
||||
if not src_uris:
|
||||
ru['version'] = '1.0'
|
||||
ru['type'] = 'M'
|
||||
ru['datetime'] = datetime.now()
|
||||
return ru
|
||||
|
||||
# XXX: we suppose that the first entry points to the upstream sources
|
||||
src_uri = rd.getVar('SRC_URI', True).split()[0]
|
||||
src_uri = src_uris.split()[0]
|
||||
uri_type, _, _, _, _, _ = decodeurl(src_uri)
|
||||
|
||||
pv = rd.getVar('PV', True)
|
||||
|
||||
Reference in New Issue
Block a user