Re: [yocto] setup.py no such file or directory

2020-09-26 Thread Bel Hadj Salem Talel
Hi Again, I solved the issue, The problem was that when yocto unpacks the source files it unpacks it not in tmp/work/.../python3-wirepas-messaging/python3-wirepas-messaging-1.0 which is the work directory, so that is why setuptools cannot find setup.py , So I modified the source files folder to

Re: [yocto] setup.py no such file or directory

2020-09-26 Thread Bel Hadj Salem Talel
Hi again, When I add the recipe with devtool and I disable the .bbappend that adds externalsrc the same error appears. Should I add it to final recipe as well ? Can anyone explain this for me ? Thanks. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online

Re: [yocto] setup.py no such file or directory

2020-09-25 Thread Bel Hadj Salem Talel
HI, I'm trying to make a recipe for wirepas-gateway and wirepas-messaging, let's take wirepas-messaging for an example , it is so easy : I'm downloading the https://github.com/wirepas/backend-apis/tree/master/wrappers/python , because https://github.com/wirepas/backend-apis does not contain the

Re: [yocto] setup.py no such file or directory

2020-09-25 Thread Quentin Schulz
On Fri, Sep 25, 2020 at 08:12:11AM -0700, Bel Hadj Salem Talel wrote: > Hi Community, > > I have a python module which I downloaded from github containing a setup.py > as all python modules. > When I create a recipe with devtool it compiles correctly with no problem, > but when I copy paste the

Re: [yocto] setup.py no such file or directory

2020-09-25 Thread Quentin Schulz
Hi Talel, On Fri, Sep 25, 2020 at 08:12:11AM -0700, Bel Hadj Salem Talel wrote: > Hi Community, > > I have a python module which I downloaded from github containing a setup.py > as all python modules. > When I create a recipe with devtool it compiles correctly with no problem, > but when I

[yocto] setup.py no such file or directory

2020-09-25 Thread Bel Hadj Salem Talel
Hi Community, I have a python module which I downloaded from github containing a setup.py as all python modules. When I create a recipe with devtool it compiles correctly with no problem, but when I copy paste the same recipe source from workspace recipes to an official meta recipe I got this