* [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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ messages in thread
end of thread, other threads:[~2012-05-07 17:10 UTC | newest]
Thread overview: 14+ 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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox