Re: [U-Boot] [PATCH] patman: fix series-notes handling for buildman

2016-02-02 Thread Albert ARIBAUD
Hello Simon, > >> Hmm, actually I've had to drop this as it breaks 'Series-version'. > >> That currently does not expect a list. > > > > Hmm, I can't reproduce this here. How do you trigger the Series-version > > break? > > I created a commit with a Series-version: in it. Then, running patman > g

Re: [U-Boot] [PATCH] patman: fix series-notes handling for buildman

2016-02-01 Thread Simon Glass
Hi Albert, On 31 January 2016 at 09:51, Albert ARIBAUD wrote: > Hello Simon, > > On Thu, 19 Nov 2015 20:29:11 -0700, Simon Glass > wrote: >> Hi Albert, >> >> On 13 November 2015 at 19:35, Simon Glass wrote: >> > On 9 November 2015 at 14:36, Albert ARIBAUD >> > wrote: >> >> Hello Simon, >> >>

Re: [U-Boot] [PATCH] patman: fix series-notes handling for buildman

2016-01-31 Thread Albert ARIBAUD
Hello Simon, On Thu, 19 Nov 2015 20:29:11 -0700, Simon Glass wrote: > Hi Albert, > > On 13 November 2015 at 19:35, Simon Glass wrote: > > On 9 November 2015 at 14:36, Albert ARIBAUD > > wrote: > >> Hello Simon, > >> > >> On Mon, 9 Nov 2015 12:24:55 -0800, Simon Glass wrote: > >>> On 9 Novemb

Re: [U-Boot] [PATCH] patman: fix series-notes handling for buildman

2015-11-19 Thread Simon Glass
Hi Albert, On 13 November 2015 at 19:35, Simon Glass wrote: > On 9 November 2015 at 14:36, Albert ARIBAUD wrote: >> Hello Simon, >> >> On Mon, 9 Nov 2015 12:24:55 -0800, Simon Glass wrote: >>> On 9 November 2015 at 06:19, Albert ARIBAUD >>> wrote: >>> > A patman series with a 'Series-notes' s

Re: [U-Boot] [PATCH] patman: fix series-notes handling for buildman

2015-11-13 Thread Simon Glass
On 9 November 2015 at 14:36, Albert ARIBAUD wrote: > Hello Simon, > > On Mon, 9 Nov 2015 12:24:55 -0800, Simon Glass wrote: >> On 9 November 2015 at 06:19, Albert ARIBAUD >> wrote: >> > A patman series with a 'Series-notes' section causes >> > buildman to crash with: >> > >> > self.series.n

Re: [U-Boot] [PATCH] patman: fix series-notes handling for buildman

2015-11-09 Thread Albert ARIBAUD
Hello Simon, On Mon, 9 Nov 2015 12:24:55 -0800, Simon Glass wrote: > On 9 November 2015 at 06:19, Albert ARIBAUD wrote: > > A patman series with a 'Series-notes' section causes > > buildman to crash with: > > > > self.series.notes += self.section > > TypeError: cannot concatenate 'str' a

Re: [U-Boot] [PATCH] patman: fix series-notes handling for buildman

2015-11-09 Thread Simon Glass
On 9 November 2015 at 06:19, Albert ARIBAUD wrote: > A patman series with a 'Series-notes' section causes > buildman to crash with: > > self.series.notes += self.section > TypeError: cannot concatenate 'str' and 'list' objects > > Fix by initializing series.notes as a one-element array > r

[U-Boot] [PATCH] patman: fix series-notes handling for buildman

2015-11-09 Thread Albert ARIBAUD
A patman series with a 'Series-notes' section causes buildman to crash with: self.series.notes += self.section TypeError: cannot concatenate 'str' and 'list' objects Fix by initializing series.notes as a one-element array rathen than a scalar. Signed-off-by: Albert ARIBAUD --- tools/p