All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] jailhouse_git: update to inherit python3 classes
@ 2020-01-29 23:15 Peter Griffin
  2020-01-29 23:19 ` Denys Dmytriyenko
       [not found] ` <15EE7ED3E5F24894.17230@lists.yoctoproject.org>
  0 siblings, 2 replies; 5+ messages in thread
From: Peter Griffin @ 2020-01-29 23:15 UTC (permalink / raw)
  To: meta-ti, denys; +Cc: andrey.konovalov, Peter Griffin

This avoids the parsing errors, now that python2
has been removed.

Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
---
 recipes-kernel/jailhouse/jailhouse_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-kernel/jailhouse/jailhouse_git.bb b/recipes-kernel/jailhouse/jailhouse_git.bb
index 4186dc3..89833e6 100644
--- a/recipes-kernel/jailhouse/jailhouse_git.bb
+++ b/recipes-kernel/jailhouse/jailhouse_git.bb
@@ -29,7 +29,7 @@ RDEPENDS_${PN} += "\
 S = "${WORKDIR}/git"
 
 require jailhouse-arch.inc
-inherit module pythonnative bash-completion deploy setuptools
+inherit module python3native bash-completion deploy setuptools3
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 COMPATIBLE_MACHINE = "(ti-soc)"
-- 
2.7.4


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

* Re: [PATCH] jailhouse_git: update to inherit python3 classes
  2020-01-29 23:15 [PATCH] jailhouse_git: update to inherit python3 classes Peter Griffin
@ 2020-01-29 23:19 ` Denys Dmytriyenko
       [not found] ` <15EE7ED3E5F24894.17230@lists.yoctoproject.org>
  1 sibling, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2020-01-29 23:19 UTC (permalink / raw)
  To: Peter Griffin; +Cc: meta-ti, andrey.konovalov

NAK

On Wed, Jan 29, 2020 at 11:15:55PM +0000, Peter Griffin wrote:
> This avoids the parsing errors, now that python2
> has been removed.
> 
> Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
> ---
>  recipes-kernel/jailhouse/jailhouse_git.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/recipes-kernel/jailhouse/jailhouse_git.bb b/recipes-kernel/jailhouse/jailhouse_git.bb
> index 4186dc3..89833e6 100644
> --- a/recipes-kernel/jailhouse/jailhouse_git.bb
> +++ b/recipes-kernel/jailhouse/jailhouse_git.bb
> @@ -29,7 +29,7 @@ RDEPENDS_${PN} += "\
>  S = "${WORKDIR}/git"
>  
>  require jailhouse-arch.inc
> -inherit module pythonnative bash-completion deploy setuptools
> +inherit module python3native bash-completion deploy setuptools3
>  
>  PACKAGE_ARCH = "${MACHINE_ARCH}"
>  COMPATIBLE_MACHINE = "(ti-soc)"
> -- 
> 2.7.4
> 

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

* Re: [meta-ti] [PATCH] jailhouse_git: update to inherit python3 classes
       [not found] ` <15EE7ED3E5F24894.17230@lists.yoctoproject.org>
@ 2020-01-30  3:34   ` Denys Dmytriyenko
  2020-01-30  9:14     ` Peter Griffin
  0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2020-01-30  3:34 UTC (permalink / raw)
  To: Peter Griffin, meta-ti

Let me elaborate:

1. Your patch is incomplete - it fixes parsing issues, but not build issues
2. There was a more complete patch submitted earlier in the day to address that:
https://lists.yoctoproject.org/g/meta-ti/message/12625

-- 
Denys


On Wed, Jan 29, 2020 at 06:19:23PM -0500, Denys Dmytriyenko via Lists.Yoctoproject.Org wrote:
> NAK
> 
> On Wed, Jan 29, 2020 at 11:15:55PM +0000, Peter Griffin wrote:
> > This avoids the parsing errors, now that python2
> > has been removed.
> > 
> > Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
> > ---
> >  recipes-kernel/jailhouse/jailhouse_git.bb | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/recipes-kernel/jailhouse/jailhouse_git.bb b/recipes-kernel/jailhouse/jailhouse_git.bb
> > index 4186dc3..89833e6 100644
> > --- a/recipes-kernel/jailhouse/jailhouse_git.bb
> > +++ b/recipes-kernel/jailhouse/jailhouse_git.bb
> > @@ -29,7 +29,7 @@ RDEPENDS_${PN} += "\
> >  S = "${WORKDIR}/git"
> >  
> >  require jailhouse-arch.inc
> > -inherit module pythonnative bash-completion deploy setuptools
> > +inherit module python3native bash-completion deploy setuptools3
> >  
> >  PACKAGE_ARCH = "${MACHINE_ARCH}"
> >  COMPATIBLE_MACHINE = "(ti-soc)"
> > -- 
> > 2.7.4
> > 

> 


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

* Re: [meta-ti] [PATCH] jailhouse_git: update to inherit python3 classes
  2020-01-30  3:34   ` [meta-ti] " Denys Dmytriyenko
@ 2020-01-30  9:14     ` Peter Griffin
  2020-01-31  0:57       ` Denys Dmytriyenko
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Griffin @ 2020-01-30  9:14 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti

[-- Attachment #1: Type: text/plain, Size: 1906 bytes --]

Hi Denys,

On Thu, 30 Jan 2020 at 03:34, Denys Dmytriyenko <denys@ti.com> wrote:

> Let me elaborate:
>
> 1. Your patch is incomplete - it fixes parsing issues, but not build issues
>

Thanks for the extra info, yes that is correct I didn't build any TI
platform,
but I needed to fix the parse issues to build the non meta-ti based platform
I was working on (or disable your layer). I should have made that clearer
in the commit message.

2. There was a more complete patch submitted earlier in the day to address
> that:
> https://lists.yoctoproject.org/g/meta-ti/message/12625


Ok great. I was trying to check your mailing list but seems I was using a
old link from the README here
https://www.yoctoproject.org/pipermail/meta-ti/.

Peter.

>
>
> --
> Denys
>
>
> On Wed, Jan 29, 2020 at 06:19:23PM -0500, Denys Dmytriyenko via
> Lists.Yoctoproject.Org wrote:
> > NAK
> >
> > On Wed, Jan 29, 2020 at 11:15:55PM +0000, Peter Griffin wrote:
> > > This avoids the parsing errors, now that python2
> > > has been removed.
> > >
> > > Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
> > > ---
> > >  recipes-kernel/jailhouse/jailhouse_git.bb | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/recipes-kernel/jailhouse/jailhouse_git.bb
> b/recipes-kernel/jailhouse/jailhouse_git.bb
> > > index 4186dc3..89833e6 100644
> > > --- a/recipes-kernel/jailhouse/jailhouse_git.bb
> > > +++ b/recipes-kernel/jailhouse/jailhouse_git.bb
> > > @@ -29,7 +29,7 @@ RDEPENDS_${PN} += "\
> > >  S = "${WORKDIR}/git"
> > >
> > >  require jailhouse-arch.inc
> > > -inherit module pythonnative bash-completion deploy setuptools
> > > +inherit module python3native bash-completion deploy setuptools3
> > >
> > >  PACKAGE_ARCH = "${MACHINE_ARCH}"
> > >  COMPATIBLE_MACHINE = "(ti-soc)"
> > > --
> > > 2.7.4
> > >
>
> > 
>
>

[-- Attachment #2: Type: text/html, Size: 3535 bytes --]

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

* Re: [meta-ti] [PATCH] jailhouse_git: update to inherit python3 classes
  2020-01-30  9:14     ` Peter Griffin
@ 2020-01-31  0:57       ` Denys Dmytriyenko
  0 siblings, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2020-01-31  0:57 UTC (permalink / raw)
  To: Peter Griffin; +Cc: meta-ti

On Thu, Jan 30, 2020 at 09:14:47AM +0000, Peter Griffin wrote:
> Hi Denys,
> 
> On Thu, 30 Jan 2020 at 03:34, Denys Dmytriyenko <denys@ti.com> wrote:
> 
> > Let me elaborate:
> >
> > 1. Your patch is incomplete - it fixes parsing issues, but not build issues
> >
> 
> Thanks for the extra info, yes that is correct I didn't build any TI
> platform,
> but I needed to fix the parse issues to build the non meta-ti based platform
> I was working on (or disable your layer). I should have made that clearer
> in the commit message.
> 
> 2. There was a more complete patch submitted earlier in the day to address
> > that:
> > https://lists.yoctoproject.org/g/meta-ti/message/12625
> 
> 
> Ok great. I was trying to check your mailing list but seems I was using a
> old link from the README here
> https://www.yoctoproject.org/pipermail/meta-ti/.

Ah, good point! I need to update that. Thanks.


> Peter.
> 
> >
> >
> > --
> > Denys
> >
> >
> > On Wed, Jan 29, 2020 at 06:19:23PM -0500, Denys Dmytriyenko via
> > Lists.Yoctoproject.Org wrote:
> > > NAK
> > >
> > > On Wed, Jan 29, 2020 at 11:15:55PM +0000, Peter Griffin wrote:
> > > > This avoids the parsing errors, now that python2
> > > > has been removed.
> > > >
> > > > Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
> > > > ---
> > > >  recipes-kernel/jailhouse/jailhouse_git.bb | 2 +-
> > > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > >
> > > > diff --git a/recipes-kernel/jailhouse/jailhouse_git.bb
> > b/recipes-kernel/jailhouse/jailhouse_git.bb
> > > > index 4186dc3..89833e6 100644
> > > > --- a/recipes-kernel/jailhouse/jailhouse_git.bb
> > > > +++ b/recipes-kernel/jailhouse/jailhouse_git.bb
> > > > @@ -29,7 +29,7 @@ RDEPENDS_${PN} += "\
> > > >  S = "${WORKDIR}/git"
> > > >
> > > >  require jailhouse-arch.inc
> > > > -inherit module pythonnative bash-completion deploy setuptools
> > > > +inherit module python3native bash-completion deploy setuptools3
> > > >
> > > >  PACKAGE_ARCH = "${MACHINE_ARCH}"
> > > >  COMPATIBLE_MACHINE = "(ti-soc)"
> > > > --
> > > > 2.7.4
> > > >
> >
> > > 
> >
> >

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

end of thread, other threads:[~2020-01-31  0:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-29 23:15 [PATCH] jailhouse_git: update to inherit python3 classes Peter Griffin
2020-01-29 23:19 ` Denys Dmytriyenko
     [not found] ` <15EE7ED3E5F24894.17230@lists.yoctoproject.org>
2020-01-30  3:34   ` [meta-ti] " Denys Dmytriyenko
2020-01-30  9:14     ` Peter Griffin
2020-01-31  0:57       ` Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.