Re: [yocto] Python3 and pathlib/ntpath

2019-01-07 Thread Einar Vading
Hello again, I can't get this to work. If I add pathlib and ntpath like in my initial email I have pathlib on target. If however I 'IMAGE_INSTALL_append = " python3-misc"' or add python3-misc as RDEPENDS in meson recipe I don't have pathlib on target. There is no mention of ntpath or pathlib in t

Re: [yocto] Python3 and pathlib/ntpath

2018-12-21 Thread Einar Vading
Adding python3-misc did not seem to make a difference. // Einar Den fre 21 dec. 2018 15:16 skrev Einar Vading : > I'm installing using the recipe. > > Running Sumo and the meson recipe has: > RDEPENDS_${PN} = "ninja python3-core python3-modules" > > I'll try to add python3-misc to RDEPENDS. > >

Re: [yocto] Python3 and pathlib/ntpath

2018-12-21 Thread Einar Vading
I'm installing using the recipe. Running Sumo and the meson recipe has: RDEPENDS_${PN} = "ninja python3-core python3-modules" I'll try to add python3-misc to RDEPENDS. // Einar On Fri, Dec 21, 2018 at 2:58 PM Burton, Ross wrote: > > pathlib is in python3-misc: > > $ oe-pkgdata-util find-path *

Re: [yocto] Python3 and pathlib/ntpath

2018-12-21 Thread Burton, Ross
pathlib is in python3-misc: $ oe-pkgdata-util find-path */pathlib.py python3-misc: /usr/lib/python3.5/pathlib.py And Meson in Thud at least has a dependency on python3-misc, so you shoudn't need to do anything. What release are you using? Or, are you trying to install Meson from source inside t

[yocto] Python3 and pathlib/ntpath

2018-12-21 Thread Einar Vading
Hi, I was trying to install meson on target for a machine that creates a docker image for us. When I try to start meson however I get an error message that pathlib can't be found. With the patch below I got it to work but my question is if there is another way? Or if the patch would be acceptable

[yocto] Python3 and pathlib/ntpath

2018-12-21 Thread Einar Vading
Hi, I was trying to install meson on target for a machine that creates a docker image for us. When I try to start meson however I get an error message that pathlib can't be found. With the patch below I got it to work but my question is if there is another way? Or if the patch would be acceptable