diff options
| -rw-r--r-- | meta/lib/oe/buildhistory_analysis.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py index 7b5ee4551a..2306bcb4bf 100644 --- a/meta/lib/oe/buildhistory_analysis.py +++ b/meta/lib/oe/buildhistory_analysis.py | |||
| @@ -17,12 +17,12 @@ import bb.utils | |||
| 17 | 17 | ||
| 18 | 18 | ||
| 19 | # How to display fields | 19 | # How to display fields |
| 20 | list_fields = ['DEPENDS', 'RDEPENDS', 'RRECOMMENDS', 'FILES', 'FILELIST', 'USER_CLASSES', 'IMAGE_CLASSES', 'IMAGE_FEATURES', 'IMAGE_LINGUAS', 'IMAGE_INSTALL', 'BAD_RECOMMENDATIONS'] | 20 | list_fields = ['DEPENDS', 'RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS', 'FILES', 'FILELIST', 'USER_CLASSES', 'IMAGE_CLASSES', 'IMAGE_FEATURES', 'IMAGE_LINGUAS', 'IMAGE_INSTALL', 'BAD_RECOMMENDATIONS'] |
| 21 | list_order_fields = ['PACKAGES'] | 21 | list_order_fields = ['PACKAGES'] |
| 22 | defaultval_fields = ['PKG', 'PKGE', 'PKGV', 'PKGR'] | 22 | defaultval_fields = ['PKG', 'PKGE', 'PKGV', 'PKGR'] |
| 23 | numeric_fields = ['PKGSIZE', 'IMAGESIZE'] | 23 | numeric_fields = ['PKGSIZE', 'IMAGESIZE'] |
| 24 | # Fields to monitor | 24 | # Fields to monitor |
| 25 | monitor_fields = ['RDEPENDS', 'RRECOMMENDS', 'PACKAGES', 'FILELIST', 'PKGSIZE', 'IMAGESIZE', 'PKG', 'PKGE', 'PKGV', 'PKGR'] | 25 | monitor_fields = ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RREPLACES', 'RCONFLICTS', 'PACKAGES', 'FILELIST', 'PKGSIZE', 'IMAGESIZE', 'PKG', 'PKGE', 'PKGV', 'PKGR'] |
| 26 | # Percentage change to alert for numeric fields | 26 | # Percentage change to alert for numeric fields |
| 27 | monitor_numeric_threshold = 10 | 27 | monitor_numeric_threshold = 10 |
| 28 | # Image files to monitor (note that image-info.txt is handled separately) | 28 | # Image files to monitor (note that image-info.txt is handled separately) |
| @@ -66,7 +66,7 @@ class ChangeRecord: | |||
| 66 | return pkglist | 66 | return pkglist |
| 67 | 67 | ||
| 68 | if self.fieldname in list_fields or self.fieldname in list_order_fields: | 68 | if self.fieldname in list_fields or self.fieldname in list_order_fields: |
| 69 | if self.fieldname in ['RDEPENDS', 'RRECOMMENDS']: | 69 | if self.fieldname in ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS']: |
| 70 | (depvera, depverb) = compare_pkg_lists(self.oldvalue, self.newvalue) | 70 | (depvera, depverb) = compare_pkg_lists(self.oldvalue, self.newvalue) |
| 71 | aitems = pkglist_combine(depvera) | 71 | aitems = pkglist_combine(depvera) |
| 72 | bitems = pkglist_combine(depverb) | 72 | bitems = pkglist_combine(depverb) |
| @@ -328,7 +328,7 @@ def compare_dict_blobs(path, ablob, bblob, report_all): | |||
| 328 | elif (not report_all) and key in list_fields: | 328 | elif (not report_all) and key in list_fields: |
| 329 | if key == "FILELIST" and path.endswith("-dbg") and bstr.strip() != '': | 329 | if key == "FILELIST" and path.endswith("-dbg") and bstr.strip() != '': |
| 330 | continue | 330 | continue |
| 331 | if key in ['RDEPENDS', 'RRECOMMENDS']: | 331 | if key in ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS']: |
| 332 | (depvera, depverb) = compare_pkg_lists(astr, bstr) | 332 | (depvera, depverb) = compare_pkg_lists(astr, bstr) |
| 333 | if depvera == depverb: | 333 | if depvera == depverb: |
| 334 | continue | 334 | continue |
