* [PATCH] staging: add missing import errno to staging_populate_sysroot_dir
@ 2017-08-23 12:16 Marko, Peter
2017-08-23 13:04 ` ✗ patchtest: failure for " Patchwork
2017-08-24 10:50 ` [PATCH] " Marko, Peter
0 siblings, 2 replies; 6+ messages in thread
From: Marko, Peter @ 2017-08-23 12:16 UTC (permalink / raw)
To: openembedded-core
Fixes error "Exception: NameError: name 'errno' is not defined"
during build-sysroots.bb:do_build_target_sysroot
Signed-off-by: Marko, Peter <peter.marko@siemens.com>
---
meta/classes/staging.bbclass | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 162c8e9..9d3d2ad 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -177,6 +177,7 @@ def staging_processfixme(fixme, target, recipesysroot, recipesysrootnative, d):
def staging_populate_sysroot_dir(targetsysroot, nativesysroot, native, d):
import glob
import subprocess
+ import errno
fixme = []
postinsts = []
--
2.1.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✗ patchtest: failure for staging: add missing import errno to staging_populate_sysroot_dir
2017-08-23 12:16 [PATCH] staging: add missing import errno to staging_populate_sysroot_dir Marko, Peter
@ 2017-08-23 13:04 ` Patchwork
2017-08-23 14:03 ` Marko, Peter
2017-08-24 10:50 ` [PATCH] " Marko, Peter
1 sibling, 1 reply; 6+ messages in thread
From: Patchwork @ 2017-08-23 13:04 UTC (permalink / raw)
To: Peter Marko; +Cc: openembedded-core
== Series Details ==
Series: staging: add missing import errno to staging_populate_sysroot_dir
Revision: 1
URL : https://patchwork.openembedded.org/series/8447/
State : failure
== Summary ==
Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:
* Issue Series does not apply on top of target branch [test_series_merge_on_head]
Suggested fix Rebase your series on top of targeted branch
Targeted branch master (currently at b1e482ae20)
If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).
---
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ✗ patchtest: failure for staging: add missing import errno to staging_populate_sysroot_dir
2017-08-23 13:04 ` ✗ patchtest: failure for " Patchwork
@ 2017-08-23 14:03 ` Marko, Peter
2017-08-23 14:56 ` Leonardo Sandoval
0 siblings, 1 reply; 6+ messages in thread
From: Marko, Peter @ 2017-08-23 14:03 UTC (permalink / raw)
To: openembedded-core@lists.openembedded.org
>* Issue Series does not apply on top of target branch [test_series_merge_on_head]
> Suggested fix Rebase your series on top of targeted branch
> Targeted branch master (currently at b1e482ae20)
Richie is faster than patchwork :-)
Master head commit b1e482ae20 is actually patch submitted in this email (which naturally conflicts with itself)...
Peter
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ✗ patchtest: failure for staging: add missing import errno to staging_populate_sysroot_dir
2017-08-23 14:03 ` Marko, Peter
@ 2017-08-23 14:56 ` Leonardo Sandoval
0 siblings, 0 replies; 6+ messages in thread
From: Leonardo Sandoval @ 2017-08-23 14:56 UTC (permalink / raw)
To: Marko, Peter; +Cc: openembedded-core@lists.openembedded.org
On Wed, 2017-08-23 at 14:03 +0000, Marko, Peter wrote:
> >* Issue Series does not apply on top of target branch [test_series_merge_on_head]
> > Suggested fix Rebase your series on top of targeted branch
> > Targeted branch master (currently at b1e482ae20)
>
> Richie is faster than patchwork :-)
He is. So, in less that half hour (which is where the patchtest cron
does it job) RP merged your patch!
> Master head commit b1e482ae20 is actually patch submitted in this email (which naturally conflicts with itself)...
>
> Peter
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] staging: add missing import errno to staging_populate_sysroot_dir
2017-08-23 12:16 [PATCH] staging: add missing import errno to staging_populate_sysroot_dir Marko, Peter
2017-08-23 13:04 ` ✗ patchtest: failure for " Patchwork
@ 2017-08-24 10:50 ` Marko, Peter
2017-08-24 15:08 ` Sandoval Gonzalez, Leonardo
1 sibling, 1 reply; 6+ messages in thread
From: Marko, Peter @ 2017-08-24 10:50 UTC (permalink / raw)
To: openembedded-core@lists.openembedded.org
Could this be queued also to pyro branch?
It's commit ID b1e482ae20b9c714f4089d4da6470d041242e441
Thanks,
Peter
> Fixes error "Exception: NameError: name 'errno' is not defined"
> during build-sysroots.bb:do_build_target_sysroot
>
> Signed-off-by: Marko, Peter <peter.marko@siemens.com>
> ---
> meta/classes/staging.bbclass | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 162c8e9..9d3d2ad 100644
> --- a/meta/classes/staging.bbclass
> +++ b/meta/classes/staging.bbclass
> @@ -177,6 +177,7 @@ def staging_processfixme(fixme, target, recipesysroot, recipesysrootnative, d):
> def staging_populate_sysroot_dir(targetsysroot, nativesysroot, native, d):
> import glob
> import subprocess
> + import errno
>
> fixme = []
> postinsts = []
> --
> 2.1.4
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] staging: add missing import errno to staging_populate_sysroot_dir
2017-08-24 10:50 ` [PATCH] " Marko, Peter
@ 2017-08-24 15:08 ` Sandoval Gonzalez, Leonardo
0 siblings, 0 replies; 6+ messages in thread
From: Sandoval Gonzalez, Leonardo @ 2017-08-24 15:08 UTC (permalink / raw)
To: Marko, Peter, openembedded-core@lists.openembedded.org
El 8/24/2017 a las 5:50 AM, Marko, Peter escribió:
> Could this be queued also to pyro branch?
> It's commit ID b1e482ae20b9c714f4089d4da6470d041242e441
better to send another patch tagged with 'pyro' at the subject.
> Thanks,
> Peter
>
>> Fixes error "Exception: NameError: name 'errno' is not defined"
>> during build-sysroots.bb:do_build_target_sysroot
>>
>> Signed-off-by: Marko, Peter <peter.marko@siemens.com>
>> ---
>> meta/classes/staging.bbclass | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 162c8e9..9d3d2ad 100644
>> --- a/meta/classes/staging.bbclass
>> +++ b/meta/classes/staging.bbclass
>> @@ -177,6 +177,7 @@ def staging_processfixme(fixme, target, recipesysroot, recipesysrootnative, d):
>> def staging_populate_sysroot_dir(targetsysroot, nativesysroot, native, d):
>> import glob
>> import subprocess
>> + import errno
>>
>> fixme = []
>> postinsts = []
>> --
>> 2.1.4
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-08-24 15:08 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-23 12:16 [PATCH] staging: add missing import errno to staging_populate_sysroot_dir Marko, Peter
2017-08-23 13:04 ` ✗ patchtest: failure for " Patchwork
2017-08-23 14:03 ` Marko, Peter
2017-08-23 14:56 ` Leonardo Sandoval
2017-08-24 10:50 ` [PATCH] " Marko, Peter
2017-08-24 15:08 ` Sandoval Gonzalez, Leonardo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox