* [Dora][PATCH] buildhistory-diff: add ability to report version changes
@ 2014-04-04 9:15 Koen Kooi
2014-04-04 10:51 ` Robert Yang
2014-04-04 11:00 ` Paul Eggleton
0 siblings, 2 replies; 8+ messages in thread
From: Koen Kooi @ 2014-04-04 9:15 UTC (permalink / raw)
To: openembedded-core; +Cc: Paul Eggleton, Koen Kooi
From: Paul Eggleton <paul.eggleton@linux.intel.com>
Add a -v/--report-ver option to report changes in PKGE/PKGV/PKGR even
if the value is the same as the default from PE/PV/PR.
Also add a -a/--report-all option to report all changes instead of just
the default significant ones.
Addresses [YOCTO #5263].
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
(From OE-Core master rev: b7de1eaac9eed559b2d68058f5de67de74a6cb58)
Dora backport a51d96c44e6feac8322284c54bfc01ef598f8821 broke buildhistory-diff:
koen@beast:/build/v2013.12$ buildhistory-diff
Traceback (most recent call last):
File "/build/v2013.12/sources/openembedded-core/scripts/buildhistory-diff", line 98, in <module>
main()
File "/build/v2013.12/sources/openembedded-core/scripts/buildhistory-diff", line 82, in main
changes = oe.buildhistory_analysis.process_changes(options.buildhistory_dir, fromrev, torev)
File "/build/v2013.12/sources/openembedded-core/meta/lib/oe/buildhistory_analysis.py", line 403, in process_changes
changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all, report_ver))
Cherry-pick the commit that the backport needs. And since it's a cherry-pick:
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
meta/lib/oe/buildhistory_analysis.py | 41 +++++++++++++++++++-----------------
scripts/buildhistory-diff | 8 ++++++-
2 files changed, 29 insertions(+), 20 deletions(-)
diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py
index ffe12d0..ed3a1ec 100644
--- a/meta/lib/oe/buildhistory_analysis.py
+++ b/meta/lib/oe/buildhistory_analysis.py
@@ -19,10 +19,11 @@ import bb.utils
# How to display fields
list_fields = ['DEPENDS', 'RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS', 'FILES', 'FILELIST', 'USER_CLASSES', 'IMAGE_CLASSES', 'IMAGE_FEATURES', 'IMAGE_LINGUAS', 'IMAGE_INSTALL', 'BAD_RECOMMENDATIONS']
list_order_fields = ['PACKAGES']
-defaultval_fields = ['PKG', 'PKGE', 'PKGV', 'PKGR']
+defaultval_map = {'PKG': 'PKG', 'PKGE': 'PE', 'PKGV': 'PV', 'PKGR': 'PR'}
numeric_fields = ['PKGSIZE', 'IMAGESIZE']
# Fields to monitor
-monitor_fields = ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RREPLACES', 'RCONFLICTS', 'PACKAGES', 'FILELIST', 'PKGSIZE', 'IMAGESIZE', 'PKG', 'PKGE', 'PKGV', 'PKGR']
+monitor_fields = ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RREPLACES', 'RCONFLICTS', 'PACKAGES', 'FILELIST', 'PKGSIZE', 'IMAGESIZE', 'PKG']
+ver_monitor_fields = ['PKGE', 'PKGV', 'PKGR']
# Percentage change to alert for numeric fields
monitor_numeric_threshold = 10
# Image files to monitor (note that image-info.txt is handled separately)
@@ -94,7 +95,7 @@ class ChangeRecord:
else:
percentchg = 100
out = '%s changed from %s to %s (%s%d%%)' % (self.fieldname, self.oldvalue or "''", self.newvalue or "''", '+' if percentchg > 0 else '', percentchg)
- elif self.fieldname in defaultval_fields:
+ elif self.fieldname in defaultval_map:
out = '%s changed from %s to %s' % (self.fieldname, self.oldvalue, self.newvalue)
if self.fieldname == 'PKG' and '[default]' in self.newvalue:
out += ' - may indicate debian renaming failure'
@@ -305,24 +306,32 @@ def compare_pkg_lists(astr, bstr):
return (depvera, depverb)
-def compare_dict_blobs(path, ablob, bblob, report_all):
+def compare_dict_blobs(path, ablob, bblob, report_all, report_ver):
adict = blob_to_dict(ablob)
bdict = blob_to_dict(bblob)
pkgname = os.path.basename(path)
+
defaultvals = {}
defaultvals['PKG'] = pkgname
- defaultvals['PKGE'] = adict.get('PE', '0')
- defaultvals['PKGV'] = adict.get('PV', '')
- defaultvals['PKGR'] = adict.get('PR', '')
- for key in defaultvals:
- defaultvals[key] = '%s [default]' % defaultvals[key]
+ defaultvals['PKGE'] = '0'
changes = []
- keys = list(set(adict.keys()) | set(bdict.keys()))
+ keys = list(set(adict.keys()) | set(bdict.keys()) | set(defaultval_map.keys()))
for key in keys:
astr = adict.get(key, '')
bstr = bdict.get(key, '')
+ if key in ver_monitor_fields:
+ monitored = report_ver or astr or bstr
+ else:
+ monitored = key in monitor_fields
+ mapped_key = defaultval_map.get(key, '')
+ if mapped_key:
+ if not astr:
+ astr = '%s [default]' % adict.get(mapped_key, defaultvals.get(key, ''))
+ if not bstr:
+ bstr = '%s [default]' % bdict.get(mapped_key, defaultvals.get(key, ''))
+
if astr != bstr:
if (not report_all) and key in numeric_fields:
aval = int(astr or 0)
@@ -350,18 +359,12 @@ def compare_dict_blobs(path, ablob, bblob, report_all):
if ' '.join(alist) == ' '.join(blist):
continue
- if key in defaultval_fields:
- if not astr:
- astr = defaultvals[key]
- elif not bstr:
- bstr = defaultvals[key]
-
- chg = ChangeRecord(path, key, astr, bstr, key in monitor_fields)
+ chg = ChangeRecord(path, key, astr, bstr, monitored)
changes.append(chg)
return changes
-def process_changes(repopath, revision1, revision2 = 'HEAD', report_all = False):
+def process_changes(repopath, revision1, revision2='HEAD', report_all=False, report_ver=False):
repo = git.Repo(repopath)
assert repo.bare == False
commit = repo.commit(revision1)
@@ -373,7 +376,7 @@ def process_changes(repopath, revision1, revision2 = 'HEAD', report_all = False)
if path.startswith('packages/'):
filename = os.path.basename(d.a_blob.path)
if filename == 'latest':
- changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all))
+ changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all, report_ver))
elif filename.startswith('latest.'):
chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True)
changes.append(chg)
diff --git a/scripts/buildhistory-diff b/scripts/buildhistory-diff
index b82240d..ad50414 100755
--- a/scripts/buildhistory-diff
+++ b/scripts/buildhistory-diff
@@ -27,6 +27,12 @@ def main():
parser.add_option("-p", "--buildhistory-dir",
help = "Specify path to buildhistory directory (defaults to buildhistory/ under cwd)",
action="store", dest="buildhistory_dir", default='buildhistory/')
+ parser.add_option("-v", "--report-version",
+ help = "Report changes in PKGE/PKGV/PKGR even when the values are still the default (PE/PV/PR)",
+ action="store_true", dest="report_ver", default=False)
+ parser.add_option("-a", "--report-all",
+ help = "Report all changes, not just the default significant ones",
+ action="store_true", dest="report_all", default=False)
options, args = parser.parse_args(sys.argv)
@@ -79,7 +85,7 @@ def main():
import gitdb
try:
- changes = oe.buildhistory_analysis.process_changes(options.buildhistory_dir, fromrev, torev)
+ changes = oe.buildhistory_analysis.process_changes(options.buildhistory_dir, fromrev, torev, options.report_all, options.report_ver)
except gitdb.exc.BadObject as e:
if len(args) == 1:
sys.stderr.write("Unable to find previous build revision in buildhistory repository\n\n")
--
1.9.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [Dora][PATCH] buildhistory-diff: add ability to report version changes
2014-04-04 9:15 [Dora][PATCH] buildhistory-diff: add ability to report version changes Koen Kooi
@ 2014-04-04 10:51 ` Robert Yang
2014-04-04 11:00 ` Paul Eggleton
1 sibling, 0 replies; 8+ messages in thread
From: Robert Yang @ 2014-04-04 10:51 UTC (permalink / raw)
To: Koen Kooi, openembedded-core; +Cc: Paul Eggleton, Koen Kooi
Hi Koen,
Thanks, have you tried to add BUILDHISTORY_COMMIT = "1" to the local.conf,
please ? I have to go to have supper now, will do more investigations sooner.
// Robert
On 04/04/2014 05:15 PM, Koen Kooi wrote:
> From: Paul Eggleton <paul.eggleton@linux.intel.com>
>
> Add a -v/--report-ver option to report changes in PKGE/PKGV/PKGR even
> if the value is the same as the default from PE/PV/PR.
>
> Also add a -a/--report-all option to report all changes instead of just
> the default significant ones.
>
> Addresses [YOCTO #5263].
>
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
>
>
> (From OE-Core master rev: b7de1eaac9eed559b2d68058f5de67de74a6cb58)
>
> Dora backport a51d96c44e6feac8322284c54bfc01ef598f8821 broke buildhistory-diff:
>
> koen@beast:/build/v2013.12$ buildhistory-diff
> Traceback (most recent call last):
> File "/build/v2013.12/sources/openembedded-core/scripts/buildhistory-diff", line 98, in <module>
> main()
> File "/build/v2013.12/sources/openembedded-core/scripts/buildhistory-diff", line 82, in main
> changes = oe.buildhistory_analysis.process_changes(options.buildhistory_dir, fromrev, torev)
> File "/build/v2013.12/sources/openembedded-core/meta/lib/oe/buildhistory_analysis.py", line 403, in process_changes
> changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all, report_ver))
>
> Cherry-pick the commit that the backport needs. And since it's a cherry-pick:
>
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>
> ---
> meta/lib/oe/buildhistory_analysis.py | 41 +++++++++++++++++++-----------------
> scripts/buildhistory-diff | 8 ++++++-
> 2 files changed, 29 insertions(+), 20 deletions(-)
>
> diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py
> index ffe12d0..ed3a1ec 100644
> --- a/meta/lib/oe/buildhistory_analysis.py
> +++ b/meta/lib/oe/buildhistory_analysis.py
> @@ -19,10 +19,11 @@ import bb.utils
> # How to display fields
> list_fields = ['DEPENDS', 'RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS', 'FILES', 'FILELIST', 'USER_CLASSES', 'IMAGE_CLASSES', 'IMAGE_FEATURES', 'IMAGE_LINGUAS', 'IMAGE_INSTALL', 'BAD_RECOMMENDATIONS']
> list_order_fields = ['PACKAGES']
> -defaultval_fields = ['PKG', 'PKGE', 'PKGV', 'PKGR']
> +defaultval_map = {'PKG': 'PKG', 'PKGE': 'PE', 'PKGV': 'PV', 'PKGR': 'PR'}
> numeric_fields = ['PKGSIZE', 'IMAGESIZE']
> # Fields to monitor
> -monitor_fields = ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RREPLACES', 'RCONFLICTS', 'PACKAGES', 'FILELIST', 'PKGSIZE', 'IMAGESIZE', 'PKG', 'PKGE', 'PKGV', 'PKGR']
> +monitor_fields = ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RREPLACES', 'RCONFLICTS', 'PACKAGES', 'FILELIST', 'PKGSIZE', 'IMAGESIZE', 'PKG']
> +ver_monitor_fields = ['PKGE', 'PKGV', 'PKGR']
> # Percentage change to alert for numeric fields
> monitor_numeric_threshold = 10
> # Image files to monitor (note that image-info.txt is handled separately)
> @@ -94,7 +95,7 @@ class ChangeRecord:
> else:
> percentchg = 100
> out = '%s changed from %s to %s (%s%d%%)' % (self.fieldname, self.oldvalue or "''", self.newvalue or "''", '+' if percentchg > 0 else '', percentchg)
> - elif self.fieldname in defaultval_fields:
> + elif self.fieldname in defaultval_map:
> out = '%s changed from %s to %s' % (self.fieldname, self.oldvalue, self.newvalue)
> if self.fieldname == 'PKG' and '[default]' in self.newvalue:
> out += ' - may indicate debian renaming failure'
> @@ -305,24 +306,32 @@ def compare_pkg_lists(astr, bstr):
> return (depvera, depverb)
>
>
> -def compare_dict_blobs(path, ablob, bblob, report_all):
> +def compare_dict_blobs(path, ablob, bblob, report_all, report_ver):
> adict = blob_to_dict(ablob)
> bdict = blob_to_dict(bblob)
>
> pkgname = os.path.basename(path)
> +
> defaultvals = {}
> defaultvals['PKG'] = pkgname
> - defaultvals['PKGE'] = adict.get('PE', '0')
> - defaultvals['PKGV'] = adict.get('PV', '')
> - defaultvals['PKGR'] = adict.get('PR', '')
> - for key in defaultvals:
> - defaultvals[key] = '%s [default]' % defaultvals[key]
> + defaultvals['PKGE'] = '0'
>
> changes = []
> - keys = list(set(adict.keys()) | set(bdict.keys()))
> + keys = list(set(adict.keys()) | set(bdict.keys()) | set(defaultval_map.keys()))
> for key in keys:
> astr = adict.get(key, '')
> bstr = bdict.get(key, '')
> + if key in ver_monitor_fields:
> + monitored = report_ver or astr or bstr
> + else:
> + monitored = key in monitor_fields
> + mapped_key = defaultval_map.get(key, '')
> + if mapped_key:
> + if not astr:
> + astr = '%s [default]' % adict.get(mapped_key, defaultvals.get(key, ''))
> + if not bstr:
> + bstr = '%s [default]' % bdict.get(mapped_key, defaultvals.get(key, ''))
> +
> if astr != bstr:
> if (not report_all) and key in numeric_fields:
> aval = int(astr or 0)
> @@ -350,18 +359,12 @@ def compare_dict_blobs(path, ablob, bblob, report_all):
> if ' '.join(alist) == ' '.join(blist):
> continue
>
> - if key in defaultval_fields:
> - if not astr:
> - astr = defaultvals[key]
> - elif not bstr:
> - bstr = defaultvals[key]
> -
> - chg = ChangeRecord(path, key, astr, bstr, key in monitor_fields)
> + chg = ChangeRecord(path, key, astr, bstr, monitored)
> changes.append(chg)
> return changes
>
>
> -def process_changes(repopath, revision1, revision2 = 'HEAD', report_all = False):
> +def process_changes(repopath, revision1, revision2='HEAD', report_all=False, report_ver=False):
> repo = git.Repo(repopath)
> assert repo.bare == False
> commit = repo.commit(revision1)
> @@ -373,7 +376,7 @@ def process_changes(repopath, revision1, revision2 = 'HEAD', report_all = False)
> if path.startswith('packages/'):
> filename = os.path.basename(d.a_blob.path)
> if filename == 'latest':
> - changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all))
> + changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all, report_ver))
> elif filename.startswith('latest.'):
> chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True)
> changes.append(chg)
> diff --git a/scripts/buildhistory-diff b/scripts/buildhistory-diff
> index b82240d..ad50414 100755
> --- a/scripts/buildhistory-diff
> +++ b/scripts/buildhistory-diff
> @@ -27,6 +27,12 @@ def main():
> parser.add_option("-p", "--buildhistory-dir",
> help = "Specify path to buildhistory directory (defaults to buildhistory/ under cwd)",
> action="store", dest="buildhistory_dir", default='buildhistory/')
> + parser.add_option("-v", "--report-version",
> + help = "Report changes in PKGE/PKGV/PKGR even when the values are still the default (PE/PV/PR)",
> + action="store_true", dest="report_ver", default=False)
> + parser.add_option("-a", "--report-all",
> + help = "Report all changes, not just the default significant ones",
> + action="store_true", dest="report_all", default=False)
>
> options, args = parser.parse_args(sys.argv)
>
> @@ -79,7 +85,7 @@ def main():
>
> import gitdb
> try:
> - changes = oe.buildhistory_analysis.process_changes(options.buildhistory_dir, fromrev, torev)
> + changes = oe.buildhistory_analysis.process_changes(options.buildhistory_dir, fromrev, torev, options.report_all, options.report_ver)
> except gitdb.exc.BadObject as e:
> if len(args) == 1:
> sys.stderr.write("Unable to find previous build revision in buildhistory repository\n\n")
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Dora][PATCH] buildhistory-diff: add ability to report version changes
2014-04-04 9:15 [Dora][PATCH] buildhistory-diff: add ability to report version changes Koen Kooi
2014-04-04 10:51 ` Robert Yang
@ 2014-04-04 11:00 ` Paul Eggleton
2014-04-04 11:04 ` Koen Kooi
1 sibling, 1 reply; 8+ messages in thread
From: Paul Eggleton @ 2014-04-04 11:00 UTC (permalink / raw)
To: Koen Kooi; +Cc: Koen Kooi, openembedded-core
On Friday 04 April 2014 11:15:04 Koen Kooi wrote:
> From: Paul Eggleton <paul.eggleton@linux.intel.com>
>
> Add a -v/--report-ver option to report changes in PKGE/PKGV/PKGR even
> if the value is the same as the default from PE/PV/PR.
>
> Also add a -a/--report-all option to report all changes instead of just
> the default significant ones.
Hmm, looking at this I'm not sure that this is the right fix for a stable
branch - ideally we should just fix the error rather than backporting the
feature IMO.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Dora][PATCH] buildhistory-diff: add ability to report version changes
2014-04-04 11:00 ` Paul Eggleton
@ 2014-04-04 11:04 ` Koen Kooi
2014-04-04 15:13 ` Robert Yang
0 siblings, 1 reply; 8+ messages in thread
From: Koen Kooi @ 2014-04-04 11:04 UTC (permalink / raw)
To: Paul Eggleton; +Cc: Koen Kooi, openembedded-core
On 04/04/2014 01:00 PM, Paul Eggleton wrote:
> On Friday 04 April 2014 11:15:04 Koen Kooi wrote:
>> From: Paul Eggleton <paul.eggleton@linux.intel.com>
>>
>> Add a -v/--report-ver option to report changes in PKGE/PKGV/PKGR even
>> if the value is the same as the default from PE/PV/PR.
>>
>> Also add a -a/--report-all option to report all changes instead of just
>> the default significant ones.
>
> Hmm, looking at this I'm not sure that this is the right fix for a stable
> branch - ideally we should just fix the error rather than backporting the
> feature IMO.
I'm fine with either, this was the easiest for me, a single cherrypick.
--
Koen Kooi
Builds and Baselines | Release Manager
Linaro.org | Open source software for ARM SoCs
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Dora][PATCH] buildhistory-diff: add ability to report version changes
2014-04-04 11:04 ` Koen Kooi
@ 2014-04-04 15:13 ` Robert Yang
2014-04-04 15:16 ` Paul Eggleton
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Robert Yang @ 2014-04-04 15:13 UTC (permalink / raw)
To: Koen Kooi, Paul Eggleton, Purdie, Richard; +Cc: Koen Kooi, openembedded-core
On 04/04/2014 07:04 PM, Koen Kooi wrote:
> On 04/04/2014 01:00 PM, Paul Eggleton wrote:
>> On Friday 04 April 2014 11:15:04 Koen Kooi wrote:
>>> From: Paul Eggleton <paul.eggleton@linux.intel.com>
>>>
>>> Add a -v/--report-ver option to report changes in PKGE/PKGV/PKGR even
>>> if the value is the same as the default from PE/PV/PR.
>>>
>>> Also add a -a/--report-all option to report all changes instead of just
>>> the default significant ones.
>>
>> Hmm, looking at this I'm not sure that this is the right fix for a stable
>> branch - ideally we should just fix the error rather than backporting the
>> feature IMO.
>
> I'm fine with either, this was the easiest for me, a single cherrypick.
>
I'm very sorry to say that we need to revert the following commit from
dora, we don't need it on dora, it's my fault, I need to be more careful
when backport the patches:
commit 5b616aa7b618f6ed221d6fa9738220a2c2349f7d
Author: Paul Eggleton <paul.eggleton@linux.intel.com>
Date: Sun Nov 17 12:28:19 2013 +0000
buildhistory_analysis: fix error when comparing image contents
RP, would you please help to revert it from dora ?
// Robert
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Dora][PATCH] buildhistory-diff: add ability to report version changes
2014-04-04 15:13 ` Robert Yang
@ 2014-04-04 15:16 ` Paul Eggleton
2014-04-04 15:17 ` Richard Purdie
2014-04-04 15:19 ` Robert Yang
2 siblings, 0 replies; 8+ messages in thread
From: Paul Eggleton @ 2014-04-04 15:16 UTC (permalink / raw)
To: Robert Yang; +Cc: Purdie, Richard, Koen Kooi, Koen Kooi, openembedded-core
On Friday 04 April 2014 23:13:27 Robert Yang wrote:
> On 04/04/2014 07:04 PM, Koen Kooi wrote:
> > On 04/04/2014 01:00 PM, Paul Eggleton wrote:
> >> On Friday 04 April 2014 11:15:04 Koen Kooi wrote:
> >>> From: Paul Eggleton <paul.eggleton@linux.intel.com>
> >>>
> >>> Add a -v/--report-ver option to report changes in PKGE/PKGV/PKGR even
> >>> if the value is the same as the default from PE/PV/PR.
> >>>
> >>> Also add a -a/--report-all option to report all changes instead of just
> >>> the default significant ones.
> >>
> >> Hmm, looking at this I'm not sure that this is the right fix for a stable
> >> branch - ideally we should just fix the error rather than backporting the
> >> feature IMO.
> >
> > I'm fine with either, this was the easiest for me, a single cherrypick.
>
> I'm very sorry to say that we need to revert the following commit from
> dora, we don't need it on dora, it's my fault, I need to be more careful
> when backport the patches:
>
> commit 5b616aa7b618f6ed221d6fa9738220a2c2349f7d
> Author: Paul Eggleton <paul.eggleton@linux.intel.com>
> Date: Sun Nov 17 12:28:19 2013 +0000
>
> buildhistory_analysis: fix error when comparing image contents
>
> RP, would you please help to revert it from dora ?
FWIW I was going to send a revert in a series of other dora backports that I
have.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Dora][PATCH] buildhistory-diff: add ability to report version changes
2014-04-04 15:13 ` Robert Yang
2014-04-04 15:16 ` Paul Eggleton
@ 2014-04-04 15:17 ` Richard Purdie
2014-04-04 15:19 ` Robert Yang
2 siblings, 0 replies; 8+ messages in thread
From: Richard Purdie @ 2014-04-04 15:17 UTC (permalink / raw)
To: Robert Yang; +Cc: Paul Eggleton, Koen Kooi, Koen Kooi, openembedded-core
On Fri, 2014-04-04 at 23:13 +0800, Robert Yang wrote:
>
> On 04/04/2014 07:04 PM, Koen Kooi wrote:
> > On 04/04/2014 01:00 PM, Paul Eggleton wrote:
> >> On Friday 04 April 2014 11:15:04 Koen Kooi wrote:
> >>> From: Paul Eggleton <paul.eggleton@linux.intel.com>
> >>>
> >>> Add a -v/--report-ver option to report changes in PKGE/PKGV/PKGR even
> >>> if the value is the same as the default from PE/PV/PR.
> >>>
> >>> Also add a -a/--report-all option to report all changes instead of just
> >>> the default significant ones.
> >>
> >> Hmm, looking at this I'm not sure that this is the right fix for a stable
> >> branch - ideally we should just fix the error rather than backporting the
> >> feature IMO.
> >
> > I'm fine with either, this was the easiest for me, a single cherrypick.
> >
>
> I'm very sorry to say that we need to revert the following commit from
> dora, we don't need it on dora, it's my fault, I need to be more careful
> when backport the patches:
>
> commit 5b616aa7b618f6ed221d6fa9738220a2c2349f7d
> Author: Paul Eggleton <paul.eggleton@linux.intel.com>
> Date: Sun Nov 17 12:28:19 2013 +0000
>
> buildhistory_analysis: fix error when comparing image contents
>
> RP, would you please help to revert it from dora ?
Done.
Cheers,
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Dora][PATCH] buildhistory-diff: add ability to report version changes
2014-04-04 15:13 ` Robert Yang
2014-04-04 15:16 ` Paul Eggleton
2014-04-04 15:17 ` Richard Purdie
@ 2014-04-04 15:19 ` Robert Yang
2 siblings, 0 replies; 8+ messages in thread
From: Robert Yang @ 2014-04-04 15:19 UTC (permalink / raw)
To: Koen Kooi, Paul Eggleton, Purdie, Richard; +Cc: Koen Kooi, openembedded-core
On 04/04/2014 11:13 PM, Robert Yang wrote:
>
>
> On 04/04/2014 07:04 PM, Koen Kooi wrote:
>> On 04/04/2014 01:00 PM, Paul Eggleton wrote:
>>> On Friday 04 April 2014 11:15:04 Koen Kooi wrote:
>>>> From: Paul Eggleton <paul.eggleton@linux.intel.com>
>>>>
>>>> Add a -v/--report-ver option to report changes in PKGE/PKGV/PKGR even
>>>> if the value is the same as the default from PE/PV/PR.
>>>>
>>>> Also add a -a/--report-all option to report all changes instead of just
>>>> the default significant ones.
>>>
>>> Hmm, looking at this I'm not sure that this is the right fix for a stable
>>> branch - ideally we should just fix the error rather than backporting the
>>> feature IMO.
>>
>> I'm fine with either, this was the easiest for me, a single cherrypick.
>>
>
> I'm very sorry to say that we need to revert the following commit from
> dora, we don't need it on dora, it's my fault, I need to be more careful
> when backport the patches:
>
> commit 5b616aa7b618f6ed221d6fa9738220a2c2349f7d
sorry, the oe-core commit id is:
commit a51d96c44e6feac8322284c54bfc01ef598f8821
The previous commit id is from poky.
// Robert
> Author: Paul Eggleton <paul.eggleton@linux.intel.com>
> Date: Sun Nov 17 12:28:19 2013 +0000
>
> buildhistory_analysis: fix error when comparing image contents
>
> RP, would you please help to revert it from dora ?
>
> // Robert
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-04-04 15:19 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-04 9:15 [Dora][PATCH] buildhistory-diff: add ability to report version changes Koen Kooi
2014-04-04 10:51 ` Robert Yang
2014-04-04 11:00 ` Paul Eggleton
2014-04-04 11:04 ` Koen Kooi
2014-04-04 15:13 ` Robert Yang
2014-04-04 15:16 ` Paul Eggleton
2014-04-04 15:17 ` Richard Purdie
2014-04-04 15:19 ` Robert Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox