diff options
author | Ross Burton <ross.burton@intel.com> | 2019-10-23 16:33:46 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-28 05:31:42 +0000 |
commit | 37388b6899b1e9b410c1e7b041455cbc36a160a5 (patch) | |
tree | aa27c397122aefaeec5f457bee98a5b4a217d87f /meta/lib/oe | |
parent | deb2aea4eb8e3ffc9e72b09789d053b29d0cdf9e (diff) | |
download | poky-37388b6899b1e9b410c1e7b041455cbc36a160a5.tar.gz |
buildhistory-analysis: filter out -src changes by default
Like the -dbg package, this package is automatically generated and contains
source filenames. We expect this to change on every upgrade, so don't show the
differences unless the user wants to see all changes.
(From OE-Core rev: 30acbf6f89ba76d6fab8987ed20f72d1fa3d70fa)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/buildhistory_analysis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py index 708e1b388e..5b28774c98 100644 --- a/meta/lib/oe/buildhistory_analysis.py +++ b/meta/lib/oe/buildhistory_analysis.py | |||
@@ -413,7 +413,7 @@ def compare_dict_blobs(path, ablob, bblob, report_all, report_ver): | |||
413 | if abs(percentchg) < monitor_numeric_threshold: | 413 | if abs(percentchg) < monitor_numeric_threshold: |
414 | continue | 414 | continue |
415 | elif (not report_all) and key in list_fields: | 415 | elif (not report_all) and key in list_fields: |
416 | if key == "FILELIST" and path.endswith("-dbg") and bstr.strip() != '': | 416 | if key == "FILELIST" and (path.endswith("-dbg") or path.endswith("-src")) and bstr.strip() != '': |
417 | continue | 417 | continue |
418 | if key in ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS']: | 418 | if key in ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS']: |
419 | (depvera, depverb) = compare_pkg_lists(astr, bstr) | 419 | (depvera, depverb) = compare_pkg_lists(astr, bstr) |