mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
buildhistory: call a dependency parser only on actual dependency lists
Previously it was also called on filelists and possibly other items which broke the parser. (From OE-Core rev: cf525cbbc4277ba08415963cfa7dca384ad501dd) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
cae42b5ac8
commit
8da99b16bc
@@ -127,7 +127,7 @@ class ChangeRecord:
|
|||||||
removed = list(set(aitems) - set(bitems))
|
removed = list(set(aitems) - set(bitems))
|
||||||
added = list(set(bitems) - set(aitems))
|
added = list(set(bitems) - set(aitems))
|
||||||
|
|
||||||
if not removed and not added:
|
if not removed and not added and self.fieldname in ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS']:
|
||||||
depvera = bb.utils.explode_dep_versions2(self.oldvalue, sort=False)
|
depvera = bb.utils.explode_dep_versions2(self.oldvalue, sort=False)
|
||||||
depverb = bb.utils.explode_dep_versions2(self.newvalue, sort=False)
|
depverb = bb.utils.explode_dep_versions2(self.newvalue, sort=False)
|
||||||
for i, j in zip(depvera.items(), depverb.items()):
|
for i, j in zip(depvera.items(), depverb.items()):
|
||||||
|
|||||||
Reference in New Issue
Block a user