Re: [OE-core] [morty][PATCH] buildhistory: fix latest_srcrev in the common case

2018-04-04 Thread Andre McCurdy
On Wed, Apr 4, 2018 at 6:21 PM, akuster808 wrote: > On 04/04/2018 05:54 PM, Andre McCurdy wrote: >> On Wed, Mar 14, 2018 at 4:52 PM, Andre McCurdy wrote: >>> On Tue, Feb 27, 2018 at 5:06 PM, Andre McCurdy wrote: From:

Re: [OE-core] [morty][PATCH] buildhistory: fix latest_srcrev in the common case

2018-04-04 Thread akuster808
On 04/04/2018 05:54 PM, Andre McCurdy wrote: > On Wed, Mar 14, 2018 at 4:52 PM, Andre McCurdy wrote: >> On Tue, Feb 27, 2018 at 5:06 PM, Andre McCurdy wrote: >>> From: Christopher Larson >>> >>> buildhistory was writing

Re: [OE-core] [morty][PATCH] buildhistory: fix latest_srcrev in the common case

2018-04-04 Thread Andre McCurdy
On Wed, Mar 14, 2018 at 4:52 PM, Andre McCurdy wrote: > On Tue, Feb 27, 2018 at 5:06 PM, Andre McCurdy wrote: >> From: Christopher Larson >> >> buildhistory was writing srcrevs.values() as SRCREV when only one >> srcrev/branch

Re: [OE-core] [morty][PATCH] buildhistory: fix latest_srcrev in the common case

2018-03-14 Thread Andre McCurdy
On Tue, Feb 27, 2018 at 5:06 PM, Andre McCurdy wrote: > From: Christopher Larson > > buildhistory was writing srcrevs.values() as SRCREV when only one > srcrev/branch exists. This returns a view of the dictionary values in python > 3, and used to

[OE-core] [morty][PATCH] buildhistory: fix latest_srcrev in the common case

2018-02-27 Thread Andre McCurdy
From: Christopher Larson buildhistory was writing srcrevs.values() as SRCREV when only one srcrev/branch exists. This returns a view of the dictionary values in python 3, and used to return a list in python 2, neither of which is an appropriate value for SRCREV. It was