Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] buildhistory fix
@ 2011-12-05 18:28 Paul Eggleton
  0 siblings, 0 replies; 16+ messages in thread
From: Paul Eggleton @ 2011-12-05 18:28 UTC (permalink / raw)
  To: openembedded-core

Because of a screw-up by me when I fixed the copyright date in the
buildhistory branch, a previous version of the tree got pushed and the
default to not create package history files for every version got lost.
This patch restores the functionality.

(To be clear, this change *was* in the original RFC pull request.)

The following changes since commit d512a41ed8843a66ed9c5c5978c5f33248083464:

  libx11-trim: Fix keysymdir configure option mismatch (2011-12-05 16:47:50 +0000)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib paule/buildhistory-fixes
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/buildhistory-fixes

Paul Eggleton (1):
  classes/buildhistory: do not save old packagehistory files by default

 meta/classes/buildhistory.bbclass |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

-- 
1.7.5.4




^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH 0/1] Buildhistory fix
@ 2012-05-04 13:36 Paul Eggleton
  2012-05-04 13:36 ` [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time Paul Eggleton
  2012-05-04 17:23 ` [PATCH 0/1] Buildhistory fix Saul Wold
  0 siblings, 2 replies; 16+ messages in thread
From: Paul Eggleton @ 2012-05-04 13:36 UTC (permalink / raw)
  To: openembedded-core, Scott Garman

This fix should also go into 1.2.1.


The following change since commit 0be64cda0a20ca3aab75ee0cc360236d2dc40c95:

  gcc-package-target: add libexec for plugin (2012-05-03 15:38:07 +0100)

is available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib paule/buildhistory-commit
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/buildhistory-commit

Paul Eggleton (1):
  buildhistory: fix multiple commit of images and packages at the same
    time

 meta/classes/buildhistory.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

-- 
1.7.5.4




^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-04 13:36 [PATCH 0/1] Buildhistory fix Paul Eggleton
@ 2012-05-04 13:36 ` Paul Eggleton
  2012-05-04 13:50   ` Koen Kooi
  2012-05-04 17:23 ` [PATCH 0/1] Buildhistory fix Saul Wold
  1 sibling, 1 reply; 16+ messages in thread
From: Paul Eggleton @ 2012-05-04 13:36 UTC (permalink / raw)
  To: openembedded-core, Scott Garman

The echo line here was merging multiple lines into one, and the result
was that if both image and package changes had to be comitted then only
the image changes were being committed and the package changes could
potentially be merged into the next package change. Quoting the variable
reference fixes this.

Fixes [YOCTO #2411]

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/classes/buildhistory.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index 8d5b096..d2d19ff 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -402,7 +402,7 @@ buildhistory_commit() {
 			git add ${BUILDHISTORY_DIR}/*
 			HOSTNAME=`hostname 2>/dev/null || echo unknown`
 			# porcelain output looks like "?? packages/foo/bar"
-			for entry in `echo $repostatus | awk '{print $2}' | awk -F/ '{print $1}' | sort | uniq` ; do
+			for entry in `echo "$repostatus" | awk '{print $2}' | awk -F/ '{print $1}' | sort | uniq` ; do
 				git commit ${BUILDHISTORY_DIR}/$entry -m "$entry: Build ${BUILDNAME} of ${DISTRO} ${DISTRO_VERSION} for machine ${MACHINE} on $HOSTNAME" --author "${BUILDHISTORY_COMMIT_AUTHOR}" > /dev/null
 			done
 			if [ "${BUILDHISTORY_PUSH_REPO}" != "" ] ; then
-- 
1.7.5.4




^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-04 13:36 ` [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time Paul Eggleton
@ 2012-05-04 13:50   ` Koen Kooi
  2012-05-04 14:30     ` Paul Eggleton
  0 siblings, 1 reply; 16+ messages in thread
From: Koen Kooi @ 2012-05-04 13:50 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Scott Garman


Op 4 mei 2012, om 15:36 heeft Paul Eggleton het volgende geschreven:

> The echo line here was merging multiple lines into one, and the result
> was that if both image and package changes had to be comitted then only
> the image changes were being committed and the package changes could
> potentially be merged into the next package change. Quoting the variable
> reference fixes this.
> 
> Fixes [YOCTO #2411]
> 
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>

Looks good to me. If this goes in, can it go on the denzil shortlist as well?

regards,

Koen



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-04 13:50   ` Koen Kooi
@ 2012-05-04 14:30     ` Paul Eggleton
  2012-05-04 15:06       ` Koen Kooi
  0 siblings, 1 reply; 16+ messages in thread
From: Paul Eggleton @ 2012-05-04 14:30 UTC (permalink / raw)
  To: Koen Kooi; +Cc: Patches and discussions about the oe-core layer

On Friday 04 May 2012 15:50:16 Koen Kooi wrote:
> Looks good to me. If this goes in, can it go on the denzil shortlist as
> well?

I hope so, hence I've CC'd Scott Garman who is pulling together a branch for 
1.2.1.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-04 14:30     ` Paul Eggleton
@ 2012-05-04 15:06       ` Koen Kooi
  2012-05-04 15:09         ` Paul Eggleton
  2012-05-04 15:13         ` Richard Purdie
  0 siblings, 2 replies; 16+ messages in thread
From: Koen Kooi @ 2012-05-04 15:06 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: Patches and discussions about the oe-core layer


Op 4 mei 2012, om 16:30 heeft Paul Eggleton het volgende geschreven:

> On Friday 04 May 2012 15:50:16 Koen Kooi wrote:
>> Looks good to me. If this goes in, can it go on the denzil shortlist as
>> well?
> 
> I hope so, hence I've CC'd Scott Garman who is pulling together a branch for 
> 1.2.1.

oe-core or poky? I only care about oe-core.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-04 15:06       ` Koen Kooi
@ 2012-05-04 15:09         ` Paul Eggleton
  2012-05-04 15:13         ` Richard Purdie
  1 sibling, 0 replies; 16+ messages in thread
From: Paul Eggleton @ 2012-05-04 15:09 UTC (permalink / raw)
  To: Koen Kooi; +Cc: Patches and discussions about the oe-core layer

On Friday 04 May 2012 17:06:51 Koen Kooi wrote:
> > I hope so, hence I've CC'd Scott Garman who is pulling together a branch
> > for 1.2.1.
> 
> oe-core or poky? I only care about oe-core.

That's a question for Scott. I only came up with the patch.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-04 15:06       ` Koen Kooi
  2012-05-04 15:09         ` Paul Eggleton
@ 2012-05-04 15:13         ` Richard Purdie
  2012-05-04 15:16           ` Koen Kooi
  1 sibling, 1 reply; 16+ messages in thread
From: Richard Purdie @ 2012-05-04 15:13 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Paul Eggleton

On Fri, 2012-05-04 at 17:06 +0200, Koen Kooi wrote:
> Op 4 mei 2012, om 16:30 heeft Paul Eggleton het volgende geschreven:
> 
> > On Friday 04 May 2012 15:50:16 Koen Kooi wrote:
> >> Looks good to me. If this goes in, can it go on the denzil shortlist as
> >> well?
> > 
> > I hope so, hence I've CC'd Scott Garman who is pulling together a branch for 
> > 1.2.1.
> 
> oe-core or poky? I only care about oe-core.

Both. Nothing goes into poky these days unless it comes from one of the
appropriate trees.

Cheers,

Richard






^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-04 15:13         ` Richard Purdie
@ 2012-05-04 15:16           ` Koen Kooi
  2012-05-04 21:25             ` Scott Garman
  0 siblings, 1 reply; 16+ messages in thread
From: Koen Kooi @ 2012-05-04 15:16 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Paul Eggleton


Op 4 mei 2012, om 17:13 heeft Richard Purdie het volgende geschreven:

> On Fri, 2012-05-04 at 17:06 +0200, Koen Kooi wrote:
>> Op 4 mei 2012, om 16:30 heeft Paul Eggleton het volgende geschreven:
>> 
>>> On Friday 04 May 2012 15:50:16 Koen Kooi wrote:
>>>> Looks good to me. If this goes in, can it go on the denzil shortlist as
>>>> well?
>>> 
>>> I hope so, hence I've CC'd Scott Garman who is pulling together a branch for 
>>> 1.2.1.
>> 
>> oe-core or poky? I only care about oe-core.
> 
> Both. Nothing goes into poky these days unless it comes from one of the
> appropriate trees.

That's not what I was asking. I was asking it scott is doing a poky or oe-core effort. From Scotts emails it seems like a poky effort.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 0/1] Buildhistory fix
  2012-05-04 13:36 [PATCH 0/1] Buildhistory fix Paul Eggleton
  2012-05-04 13:36 ` [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time Paul Eggleton
@ 2012-05-04 17:23 ` Saul Wold
  1 sibling, 0 replies; 16+ messages in thread
From: Saul Wold @ 2012-05-04 17:23 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer
  Cc: Paul Eggleton, Scott Garman

On 05/04/2012 06:36 AM, Paul Eggleton wrote:
> This fix should also go into 1.2.1.
>
>
> The following change since commit 0be64cda0a20ca3aab75ee0cc360236d2dc40c95:
>
>    gcc-package-target: add libexec for plugin (2012-05-03 15:38:07 +0100)
>
> is available in the git repository at:
>    git://git.openembedded.org/openembedded-core-contrib paule/buildhistory-commit
>    http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/buildhistory-commit
>
> Paul Eggleton (1):
>    buildhistory: fix multiple commit of images and packages at the same
>      time
>
>   meta/classes/buildhistory.bbclass |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
Merged into OE-Core

Thanks
	Sau!



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-04 15:16           ` Koen Kooi
@ 2012-05-04 21:25             ` Scott Garman
  2012-05-05  6:55               ` Koen Kooi
  0 siblings, 1 reply; 16+ messages in thread
From: Scott Garman @ 2012-05-04 21:25 UTC (permalink / raw)
  To: openembedded-core

On 05/04/2012 08:16 AM, Koen Kooi wrote:
>>>> On Friday 04 May 2012 15:50:16 Koen Kooi wrote:
>>>>> Looks good to me. If this goes in, can it go on the denzil
>>>>> shortlist as well?
>>>>
>>>> I hope so, hence I've CC'd Scott Garman who is pulling together
>>>> a branch for 1.2.1.
>>>
>>> oe-core or poky? I only care about oe-core.
>>
>> Both. Nothing goes into poky these days unless it comes from one of
>> the appropriate trees.
>
> That's not what I was asking. I was asking it scott is doing a poky
> or oe-core effort. From Scotts emails it seems like a poky effort.

Hi Koen,

I apologize for having made some confusing comments earlier about 
rebasing a denzil-next branch on my poky-contrib repo from being based 
on oe-core to poky. Since then, Richard has given me access to the 
oe-core-contrib repo, and I am now maintaining two denzil-next branches.

This one is based on oe-core:

http://git.openembedded.org/openembedded-core-contrib/log/?h=sgarman/denzil-next

and this one is based on poky:

http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=sgarman/denzil-next

My workflow will continue to be based on how Richard pulls commits into 
Poky master - which only happens after they have been merged into 
oe-core first.

Scott

-- 
Scott Garman
Embedded Linux Engineer - Yocto Project
Intel Open Source Technology Center



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-04 21:25             ` Scott Garman
@ 2012-05-05  6:55               ` Koen Kooi
  2012-05-07 15:47                 ` Scott Garman
  0 siblings, 1 reply; 16+ messages in thread
From: Koen Kooi @ 2012-05-05  6:55 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 4 mei 2012, om 23:25 heeft Scott Garman het volgende geschreven:

> On 05/04/2012 08:16 AM, Koen Kooi wrote:
>>>>> On Friday 04 May 2012 15:50:16 Koen Kooi wrote:
>>>>>> Looks good to me. If this goes in, can it go on the denzil
>>>>>> shortlist as well?
>>>>> 
>>>>> I hope so, hence I've CC'd Scott Garman who is pulling together
>>>>> a branch for 1.2.1.
>>>> 
>>>> oe-core or poky? I only care about oe-core.
>>> 
>>> Both. Nothing goes into poky these days unless it comes from one of
>>> the appropriate trees.
>> 
>> That's not what I was asking. I was asking it scott is doing a poky
>> or oe-core effort. From Scotts emails it seems like a poky effort.
> 
> Hi Koen,
> 
> I apologize for having made some confusing comments earlier about rebasing a denzil-next branch on my poky-contrib repo from being based on oe-core to poky. Since then, Richard has given me access to the oe-core-contrib repo, and I am now maintaining two denzil-next branches.
> 
> This one is based on oe-core:
> 
> http://git.openembedded.org/openembedded-core-contrib/log/?h=sgarman/denzil-next

When is that going to get merged into denzil? I'm in serious need of that connman tests fix, so I have been using http://cgit.openembedded.org/openembedded-core/log/?h=denzil-next locally. 

regards,

Koen


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-05  6:55               ` Koen Kooi
@ 2012-05-07 15:47                 ` Scott Garman
  2012-05-07 16:03                   ` Koen Kooi
  0 siblings, 1 reply; 16+ messages in thread
From: Scott Garman @ 2012-05-07 15:47 UTC (permalink / raw)
  To: openembedded-core

On 05/04/2012 11:55 PM, Koen Kooi wrote:
>
> Op 4 mei 2012, om 23:25 heeft Scott Garman het volgende geschreven:
>
>> On 05/04/2012 08:16 AM, Koen Kooi wrote:
>>>>>> On Friday 04 May 2012 15:50:16 Koen Kooi wrote:
>>>>>>> Looks good to me. If this goes in, can it go on the
>>>>>>> denzil shortlist as well?
>>>>>>
>>>>>> I hope so, hence I've CC'd Scott Garman who is pulling
>>>>>> together a branch for 1.2.1.
>>>>>
>>>>> oe-core or poky? I only care about oe-core.
>>>>
>>>> Both. Nothing goes into poky these days unless it comes from
>>>> one of the appropriate trees.
>>>
>>> That's not what I was asking. I was asking it scott is doing a
>>> poky or oe-core effort. From Scotts emails it seems like a poky
>>> effort.
>>
>> Hi Koen,
>>
>> I apologize for having made some confusing comments earlier about
>> rebasing a denzil-next branch on my poky-contrib repo from being
>> based on oe-core to poky. Since then, Richard has given me access
>> to the oe-core-contrib repo, and I am now maintaining two
>> denzil-next branches.
>>
>> This one is based on oe-core:
>>
>> http://git.openembedded.org/openembedded-core-contrib/log/?h=sgarman/denzil-next
>
>>
> When is that going to get merged into denzil? I'm in serious need of
> that connman tests fix, so I have been using
> http://cgit.openembedded.org/openembedded-core/log/?h=denzil-next
> locally.

The commit just got into master, so I'm hoping to pull it into my 
denzil-next-testing branch and run some build tests overnight tonight, 
then merge it if all goes well tomorrow.

As for the denzil-next branch on the main oe-core repository: I asked 
Richard about this and I believe he may end up deleting it, as I don't 
have the ability to push to that branch. The authoritative oe-core 
branch for denzil-next will be

http://git.openembedded.org/openembedded-core-contrib/log/?h=sgarman/denzil-next

until we're ready to do the release.

Scott

-- 
Scott Garman
Embedded Linux Engineer - Yocto Project
Intel Open Source Technology Center



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-07 15:47                 ` Scott Garman
@ 2012-05-07 16:03                   ` Koen Kooi
  2012-05-07 17:00                     ` Scott Garman
  0 siblings, 1 reply; 16+ messages in thread
From: Koen Kooi @ 2012-05-07 16:03 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 7 mei 2012, om 17:47 heeft Scott Garman het volgende geschreven:

> On 05/04/2012 11:55 PM, Koen Kooi wrote:
>> 
>> Op 4 mei 2012, om 23:25 heeft Scott Garman het volgende geschreven:
>> 
>>> On 05/04/2012 08:16 AM, Koen Kooi wrote:
>>>>>>> On Friday 04 May 2012 15:50:16 Koen Kooi wrote:
>>>>>>>> Looks good to me. If this goes in, can it go on the
>>>>>>>> denzil shortlist as well?
>>>>>>> 
>>>>>>> I hope so, hence I've CC'd Scott Garman who is pulling
>>>>>>> together a branch for 1.2.1.
>>>>>> 
>>>>>> oe-core or poky? I only care about oe-core.
>>>>> 
>>>>> Both. Nothing goes into poky these days unless it comes from
>>>>> one of the appropriate trees.
>>>> 
>>>> That's not what I was asking. I was asking it scott is doing a
>>>> poky or oe-core effort. From Scotts emails it seems like a poky
>>>> effort.
>>> 
>>> Hi Koen,
>>> 
>>> I apologize for having made some confusing comments earlier about
>>> rebasing a denzil-next branch on my poky-contrib repo from being
>>> based on oe-core to poky. Since then, Richard has given me access
>>> to the oe-core-contrib repo, and I am now maintaining two
>>> denzil-next branches.
>>> 
>>> This one is based on oe-core:
>>> 
>>> http://git.openembedded.org/openembedded-core-contrib/log/?h=sgarman/denzil-next
>> 
>>> 
>> When is that going to get merged into denzil? I'm in serious need of
>> that connman tests fix, so I have been using
>> http://cgit.openembedded.org/openembedded-core/log/?h=denzil-next
>> locally.
> 
> The commit just got into master, so I'm hoping to pull it into my denzil-next-testing branch and run some build tests overnight tonight, then merge it if all goes well tomorrow.

Merge it into the oe-core 'denzil' branch, right?


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time
  2012-05-07 16:03                   ` Koen Kooi
@ 2012-05-07 17:00                     ` Scott Garman
  0 siblings, 0 replies; 16+ messages in thread
From: Scott Garman @ 2012-05-07 17:00 UTC (permalink / raw)
  To: openembedded-core

On 05/07/2012 09:03 AM, Koen Kooi wrote:
>
> Op 7 mei 2012, om 17:47 heeft Scott Garman het volgende geschreven:
>
>> On 05/04/2012 11:55 PM, Koen Kooi wrote:
>>>
>>> Op 4 mei 2012, om 23:25 heeft Scott Garman het volgende geschreven:
>>>
>>>> On 05/04/2012 08:16 AM, Koen Kooi wrote:
>>>>>>>> On Friday 04 May 2012 15:50:16 Koen Kooi wrote:
>>>>>>>>> Looks good to me. If this goes in, can it go on the
>>>>>>>>> denzil shortlist as well?
>>>>>>>>
>>>>>>>> I hope so, hence I've CC'd Scott Garman who is pulling
>>>>>>>> together a branch for 1.2.1.
>>>>>>>
>>>>>>> oe-core or poky? I only care about oe-core.
>>>>>>
>>>>>> Both. Nothing goes into poky these days unless it comes from
>>>>>> one of the appropriate trees.
>>>>>
>>>>> That's not what I was asking. I was asking it scott is doing a
>>>>> poky or oe-core effort. From Scotts emails it seems like a poky
>>>>> effort.
>>>>
>>>> Hi Koen,
>>>>
>>>> I apologize for having made some confusing comments earlier about
>>>> rebasing a denzil-next branch on my poky-contrib repo from being
>>>> based on oe-core to poky. Since then, Richard has given me access
>>>> to the oe-core-contrib repo, and I am now maintaining two
>>>> denzil-next branches.
>>>>
>>>> This one is based on oe-core:
>>>>
>>>> http://git.openembedded.org/openembedded-core-contrib/log/?h=sgarman/denzil-next
>>>
>>>>
>>> When is that going to get merged into denzil? I'm in serious need of
>>> that connman tests fix, so I have been using
>>> http://cgit.openembedded.org/openembedded-core/log/?h=denzil-next
>>> locally.
>>
>> The commit just got into master, so I'm hoping to pull it into my denzil-next-testing branch and run some build tests overnight tonight, then merge it if all goes well tomorrow.
>
> Merge it into the oe-core 'denzil' branch, right?

No. I do not have commit access to the oe-core repository, just the 
oe-core-contrib repo, where my sgarman/denzil-next branch lives.

Richard is on holiday until tomorrow, can you hold on until then and 
maybe he can help clear up the remaining confusion?

Scott

-- 
Scott Garman
Embedded Linux Engineer - Yocto Project
Intel Open Source Technology Center



^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH 0/1] Buildhistory fix
@ 2017-05-09  0:38 Paul Eggleton
  0 siblings, 0 replies; 16+ messages in thread
From: Paul Eggleton @ 2017-05-09  0:38 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 123962018251dfb1d6ca5aa5c0d02534007de3ab:

  build-appliance-image: Update to master head revision (2017-05-01 08:56:43 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib paule/buildhistory-fix1
  http://cgit.openembedded.org/openembedded-core-contrib/log/?h=paule/buildhistory-fix1

Paul Eggleton (1):
  classes/buildhistory: fix failures collecting output signatures

 meta/classes/buildhistory.bbclass | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

-- 
2.9.3



^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2017-05-09  0:39 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-04 13:36 [PATCH 0/1] Buildhistory fix Paul Eggleton
2012-05-04 13:36 ` [PATCH 1/1] buildhistory: fix multiple commit of images and packages at the same time Paul Eggleton
2012-05-04 13:50   ` Koen Kooi
2012-05-04 14:30     ` Paul Eggleton
2012-05-04 15:06       ` Koen Kooi
2012-05-04 15:09         ` Paul Eggleton
2012-05-04 15:13         ` Richard Purdie
2012-05-04 15:16           ` Koen Kooi
2012-05-04 21:25             ` Scott Garman
2012-05-05  6:55               ` Koen Kooi
2012-05-07 15:47                 ` Scott Garman
2012-05-07 16:03                   ` Koen Kooi
2012-05-07 17:00                     ` Scott Garman
2012-05-04 17:23 ` [PATCH 0/1] Buildhistory fix Saul Wold
  -- strict thread matches above, loose matches on Subject: below --
2017-05-09  0:38 Paul Eggleton
2011-12-05 18:28 [PATCH 0/1] buildhistory fix Paul Eggleton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox