Re: [OE-core] broken dunfell

2021-11-08 Thread Steve Sakoman
On Mon, Nov 8, 2021 at 1:44 AM Marek Belisko  wrote:
>
> On Mon, Nov 8, 2021 at 12:30 PM Richard Purdie
>  wrote:
> >
> > On Mon, 2021-11-08 at 12:23 +0100, Belisko Marek wrote:
> > > On Mon, Nov 8, 2021 at 12:08 PM Richard Purdie
> > >  wrote:
> > > >
> > > > On Mon, 2021-11-08 at 11:53 +0100, Marek Belisko wrote:
> > > > > Hello, latest commit in meta-openembedded on dunfell branch raise an 
> > > > > error:
> > > > >
> > > > > meta-openembedded/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb:14:
> > > > > unparsed line: 'RDEPENDS:${PN} += "${PYTHON_PN}-logging
> > > > > ${PYTHON_PN}-fcntl "'
> > > > >
> > > > > Seems new syntax is used in this commit, fix is simple:
> > > > >
> > > > > diff --git 
> > > > > a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > > > b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > > > index 1ba2c6f..7ebaa45 100644
> > > > > --- a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > > > +++ b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > > > @@ -8,7 +8,7 @@ SRC_URI[sha256sum] =
> > > > > "b1ab4e5adfbc28681ce44b3024421c4f567e705cc3963c732bf1cba334
> > > > >
> > > > >  inherit pypi setuptools3
> > > > >
> > > > > -RDEPENDS:${PN} += "\
> > > > > +RDEPENDS_${PN} += "\
> > > > >  ${PYTHON_PN}-logging \
> > > > >  ${PYTHON_PN}-fcntl \
> > > > >  "
> > > > >
> > > > > Thanks and BR,
> > > >
> > > >
> > > > Whilst that probably shouldn't be there, I suspect if you upgrade 
> > > > bitbake you
> > > > won't see that issue.
> > > I want to say on dunfell due fact it's LTS release ;)
> > >
> >
> > Bitbake as well as OE-Core, meta-openembedded and Poky have LTS branches. I
> > doubt you're using the most recent revisions of bitbake on that LTS branch.

> OK sorry for confusion I was at: dunfell-23.0.6 branch in poky repo.

That is your issue!  The support for the new override syntax was
introduced in dunfell-23.0.11.

If you upgrade to that, you should be OK.

Steve

> >
> > I wasn't suggesting you upgrade to the latest master.
> >
> > Cheers,
> >
> > Richard
> >
> >
>
> BR,
>
> marek
>
> --
> as simple and primitive as possible
> -
> Marek Belisko - OPEN-NANDRA
> Freelance Developer
>
> Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
> Tel: +421 915 052 184
> skype: marekwhite
> twitter: #opennandra
> web: http://open-nandra.com
>
> 
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#157982): 
https://lists.openembedded.org/g/openembedded-core/message/157982
Mute This Topic: https://lists.openembedded.org/mt/86902854/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [OE-core] broken dunfell

2021-11-08 Thread Marek Belisko
On Mon, Nov 8, 2021 at 12:30 PM Richard Purdie
 wrote:
>
> On Mon, 2021-11-08 at 12:23 +0100, Belisko Marek wrote:
> > On Mon, Nov 8, 2021 at 12:08 PM Richard Purdie
> >  wrote:
> > >
> > > On Mon, 2021-11-08 at 11:53 +0100, Marek Belisko wrote:
> > > > Hello, latest commit in meta-openembedded on dunfell branch raise an 
> > > > error:
> > > >
> > > > meta-openembedded/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb:14:
> > > > unparsed line: 'RDEPENDS:${PN} += "${PYTHON_PN}-logging
> > > > ${PYTHON_PN}-fcntl "'
> > > >
> > > > Seems new syntax is used in this commit, fix is simple:
> > > >
> > > > diff --git 
> > > > a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > > b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > > index 1ba2c6f..7ebaa45 100644
> > > > --- a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > > +++ b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > > @@ -8,7 +8,7 @@ SRC_URI[sha256sum] =
> > > > "b1ab4e5adfbc28681ce44b3024421c4f567e705cc3963c732bf1cba334
> > > >
> > > >  inherit pypi setuptools3
> > > >
> > > > -RDEPENDS:${PN} += "\
> > > > +RDEPENDS_${PN} += "\
> > > >  ${PYTHON_PN}-logging \
> > > >  ${PYTHON_PN}-fcntl \
> > > >  "
> > > >
> > > > Thanks and BR,
> > >
> > >
> > > Whilst that probably shouldn't be there, I suspect if you upgrade bitbake 
> > > you
> > > won't see that issue.
> > I want to say on dunfell due fact it's LTS release ;)
> >
>
> Bitbake as well as OE-Core, meta-openembedded and Poky have LTS branches. I
> doubt you're using the most recent revisions of bitbake on that LTS branch.
OK sorry for confusion I was at: dunfell-23.0.6 branch in poky repo.
>
> I wasn't suggesting you upgrade to the latest master.
>
> Cheers,
>
> Richard
>
>

BR,

marek

-- 
as simple and primitive as possible
-
Marek Belisko - OPEN-NANDRA
Freelance Developer

Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
Tel: +421 915 052 184
skype: marekwhite
twitter: #opennandra
web: http://open-nandra.com

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#157973): 
https://lists.openembedded.org/g/openembedded-core/message/157973
Mute This Topic: https://lists.openembedded.org/mt/86902854/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [OE-core] broken dunfell

2021-11-08 Thread Richard Purdie
On Mon, 2021-11-08 at 12:23 +0100, Belisko Marek wrote:
> On Mon, Nov 8, 2021 at 12:08 PM Richard Purdie
>  wrote:
> > 
> > On Mon, 2021-11-08 at 11:53 +0100, Marek Belisko wrote:
> > > Hello, latest commit in meta-openembedded on dunfell branch raise an 
> > > error:
> > > 
> > > meta-openembedded/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb:14:
> > > unparsed line: 'RDEPENDS:${PN} += "${PYTHON_PN}-logging
> > > ${PYTHON_PN}-fcntl "'
> > > 
> > > Seems new syntax is used in this commit, fix is simple:
> > > 
> > > diff --git 
> > > a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > index 1ba2c6f..7ebaa45 100644
> > > --- a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > +++ b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > > @@ -8,7 +8,7 @@ SRC_URI[sha256sum] =
> > > "b1ab4e5adfbc28681ce44b3024421c4f567e705cc3963c732bf1cba334
> > > 
> > >  inherit pypi setuptools3
> > > 
> > > -RDEPENDS:${PN} += "\
> > > +RDEPENDS_${PN} += "\
> > >  ${PYTHON_PN}-logging \
> > >  ${PYTHON_PN}-fcntl \
> > >  "
> > > 
> > > Thanks and BR,
> > 
> > 
> > Whilst that probably shouldn't be there, I suspect if you upgrade bitbake 
> > you
> > won't see that issue.
> I want to say on dunfell due fact it's LTS release ;)
> 

Bitbake as well as OE-Core, meta-openembedded and Poky have LTS branches. I
doubt you're using the most recent revisions of bitbake on that LTS branch.

I wasn't suggesting you upgrade to the latest master.

Cheers,

Richard



-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#157972): 
https://lists.openembedded.org/g/openembedded-core/message/157972
Mute This Topic: https://lists.openembedded.org/mt/86902854/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [OE-core] broken dunfell

2021-11-08 Thread Marek Belisko
On Mon, Nov 8, 2021 at 12:08 PM Richard Purdie
 wrote:
>
> On Mon, 2021-11-08 at 11:53 +0100, Marek Belisko wrote:
> > Hello, latest commit in meta-openembedded on dunfell branch raise an error:
> >
> > meta-openembedded/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb:14:
> > unparsed line: 'RDEPENDS:${PN} += "${PYTHON_PN}-logging
> > ${PYTHON_PN}-fcntl "'
> >
> > Seems new syntax is used in this commit, fix is simple:
> >
> > diff --git a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > index 1ba2c6f..7ebaa45 100644
> > --- a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > +++ b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> > @@ -8,7 +8,7 @@ SRC_URI[sha256sum] =
> > "b1ab4e5adfbc28681ce44b3024421c4f567e705cc3963c732bf1cba334
> >
> >  inherit pypi setuptools3
> >
> > -RDEPENDS:${PN} += "\
> > +RDEPENDS_${PN} += "\
> >  ${PYTHON_PN}-logging \
> >  ${PYTHON_PN}-fcntl \
> >  "
> >
> > Thanks and BR,
>
>
> Whilst that probably shouldn't be there, I suspect if you upgrade bitbake you
> won't see that issue.
I want to say on dunfell due fact it's LTS release ;)
>
> Cheers,
>
> Richard
>

BR,

marek

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#157971): 
https://lists.openembedded.org/g/openembedded-core/message/157971
Mute This Topic: https://lists.openembedded.org/mt/86902854/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [OE-core] broken dunfell

2021-11-08 Thread Richard Purdie
On Mon, 2021-11-08 at 11:53 +0100, Marek Belisko wrote:
> Hello, latest commit in meta-openembedded on dunfell branch raise an error:
> 
> meta-openembedded/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb:14:
> unparsed line: 'RDEPENDS:${PN} += "${PYTHON_PN}-logging
> ${PYTHON_PN}-fcntl "'
> 
> Seems new syntax is used in this commit, fix is simple:
> 
> diff --git a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> index 1ba2c6f..7ebaa45 100644
> --- a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
> @@ -8,7 +8,7 @@ SRC_URI[sha256sum] =
> "b1ab4e5adfbc28681ce44b3024421c4f567e705cc3963c732bf1cba334
> 
>  inherit pypi setuptools3
> 
> -RDEPENDS:${PN} += "\
> +RDEPENDS_${PN} += "\
>  ${PYTHON_PN}-logging \
>  ${PYTHON_PN}-fcntl \
>  "
> 
> Thanks and BR,


Whilst that probably shouldn't be there, I suspect if you upgrade bitbake you
won't see that issue.

Cheers,

Richard


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#157970): 
https://lists.openembedded.org/g/openembedded-core/message/157970
Mute This Topic: https://lists.openembedded.org/mt/86902854/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] broken dunfell

2021-11-08 Thread Marek Belisko
Hello, latest commit in meta-openembedded on dunfell branch raise an error:

meta-openembedded/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb:14:
unparsed line: 'RDEPENDS:${PN} += "${PYTHON_PN}-logging
${PYTHON_PN}-fcntl "'

Seems new syntax is used in this commit, fix is simple:

diff --git a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
index 1ba2c6f..7ebaa45 100644
--- a/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
+++ b/meta-python/recipes-devtools/python/python3-fasteners_0.16.3.bb
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] =
"b1ab4e5adfbc28681ce44b3024421c4f567e705cc3963c732bf1cba334

 inherit pypi setuptools3

-RDEPENDS:${PN} += "\
+RDEPENDS_${PN} += "\
 ${PYTHON_PN}-logging \
 ${PYTHON_PN}-fcntl \
 "

Thanks and BR,

marek

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#157969): 
https://lists.openembedded.org/g/openembedded-core/message/157969
Mute This Topic: https://lists.openembedded.org/mt/86902854/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-