Re: [yocto] Creating a python recipe with devtool

2018-02-08 Thread Alan Martinovic
This particular one didn't provide a tarball. Can't really say if it's an exception or tendency with the whl starting to take over. On Thu, Feb 8, 2018 at 3:04 PM, Giordon Stark wrote: > This also works with the tarball URLs from pypi which is a bit easier to > manage (version-wise). > > Giordon

Re: [yocto] Creating a python recipe with devtool

2018-02-08 Thread Giordon Stark
This also works with the tarball URLs from pypi which is a bit easier to manage (version-wise). Giordon On Wed, Feb 7, 2018 at 7:10 AM Alan Martinovic wrote: > Thanks, that worked! > > Steps: > > # On the build server > devtool create-workspace > devtool add https://github.com/jruere/multiproc

Re: [yocto] Creating a python recipe with devtool

2018-02-07 Thread Alan Martinovic
Thanks, that worked! Steps: # On the build server devtool create-workspace devtool add https://github.com/jruere/multiprocessing-logging devtool devtool edit-recipe multiprocessing-logging # Change for building for python3 inherit setuptools -> inherit setuptools3 # delete the RDE

Re: [yocto] Creating a python recipe with devtool

2018-02-07 Thread Alexander Kanavin
On 02/07/2018 02:17 PM, Alan Martinovic wrote: devtool add https://pypi.python.org/packages/65/eb/1c3db9596eddb2bd1d1f8153dcaf2d9f2c7e144f4832d1b1449f681a0a7a/multiprocessing_logging-0.2.6-py2.py3-none-any.whl#md5=b7783a8c449135e5bb344b3f0caa3522 I don't think we support .whl format at the

[yocto] Creating a python recipe with devtool

2018-02-07 Thread Alan Martinovic
Hi, I need to add a python package available on pypi: https://pypi.python.org/pypi/multiprocessing-logging/ Instead of manually creating the bb file, I'd like to add it using the devtool flow. In my build directory I execute: devtool create-workspace devtool build-image my-image