* broken dunfell
@ 2021-11-08 10:53 Belisko Marek
2021-11-08 11:08 ` [OE-core] " Richard Purdie
0 siblings, 1 reply; 6+ messages in thread
From: Belisko Marek @ 2021-11-08 10:53 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: maira.canal, akuster808
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
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [OE-core] broken dunfell
2021-11-08 10:53 broken dunfell Belisko Marek
@ 2021-11-08 11:08 ` Richard Purdie
2021-11-08 11:23 ` Belisko Marek
0 siblings, 1 reply; 6+ messages in thread
From: Richard Purdie @ 2021-11-08 11:08 UTC (permalink / raw)
To: Marek Belisko, Patches and discussions about the oe-core layer
Cc: maira.canal, akuster808
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
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core] broken dunfell
2021-11-08 11:08 ` [OE-core] " Richard Purdie
@ 2021-11-08 11:23 ` Belisko Marek
2021-11-08 11:30 ` Richard Purdie
0 siblings, 1 reply; 6+ messages in thread
From: Belisko Marek @ 2021-11-08 11:23 UTC (permalink / raw)
To: Richard Purdie
Cc: Patches and discussions about the oe-core layer, maira.canal,
akuster808
On Mon, Nov 8, 2021 at 12:08 PM Richard Purdie
<richard.purdie@linuxfoundation.org> 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
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core] broken dunfell
2021-11-08 11:23 ` Belisko Marek
@ 2021-11-08 11:30 ` Richard Purdie
2021-11-08 11:44 ` Belisko Marek
0 siblings, 1 reply; 6+ messages in thread
From: Richard Purdie @ 2021-11-08 11:30 UTC (permalink / raw)
To: Belisko Marek
Cc: Patches and discussions about the oe-core layer, maira.canal,
akuster808
On Mon, 2021-11-08 at 12:23 +0100, Belisko Marek wrote:
> On Mon, Nov 8, 2021 at 12:08 PM Richard Purdie
> <richard.purdie@linuxfoundation.org> 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
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core] broken dunfell
2021-11-08 11:30 ` Richard Purdie
@ 2021-11-08 11:44 ` Belisko Marek
2021-11-08 14:02 ` Steve Sakoman
0 siblings, 1 reply; 6+ messages in thread
From: Belisko Marek @ 2021-11-08 11:44 UTC (permalink / raw)
To: Richard Purdie
Cc: Patches and discussions about the oe-core layer, maira.canal,
akuster808
On Mon, Nov 8, 2021 at 12:30 PM Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>
> On Mon, 2021-11-08 at 12:23 +0100, Belisko Marek wrote:
> > On Mon, Nov 8, 2021 at 12:08 PM Richard Purdie
> > <richard.purdie@linuxfoundation.org> 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
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [OE-core] broken dunfell
2021-11-08 11:44 ` Belisko Marek
@ 2021-11-08 14:02 ` Steve Sakoman
0 siblings, 0 replies; 6+ messages in thread
From: Steve Sakoman @ 2021-11-08 14:02 UTC (permalink / raw)
To: Marek Belisko
Cc: Richard Purdie, Patches and discussions about the oe-core layer,
maira.canal, akuster808
On Mon, Nov 8, 2021 at 1:44 AM Marek Belisko <marek.belisko@gmail.com> wrote:
>
> On Mon, Nov 8, 2021 at 12:30 PM Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
> >
> > On Mon, 2021-11-08 at 12:23 +0100, Belisko Marek wrote:
> > > On Mon, Nov 8, 2021 at 12:08 PM Richard Purdie
> > > <richard.purdie@linuxfoundation.org> 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 (#157973): https://lists.openembedded.org/g/openembedded-core/message/157973
> Mute This Topic: https://lists.openembedded.org/mt/86902854/3617601
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [sakoman@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-11-08 14:03 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-08 10:53 broken dunfell Belisko Marek
2021-11-08 11:08 ` [OE-core] " Richard Purdie
2021-11-08 11:23 ` Belisko Marek
2021-11-08 11:30 ` Richard Purdie
2021-11-08 11:44 ` Belisko Marek
2021-11-08 14:02 ` Steve Sakoman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox