mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01: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: 90bbe1bbc1667bf836d93df1e1ecca0c43315d06) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e567c3761b
commit
ac5b7cef59
@@ -127,7 +127,7 @@ class ChangeRecord:
|
||||
removed = list(set(aitems) - set(bitems))
|
||||
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)
|
||||
depverb = bb.utils.explode_dep_versions2(self.newvalue, sort=False)
|
||||
for i, j in zip(depvera.items(), depverb.items()):
|
||||
|
||||
Reference in New Issue
Block a user