Re: [OE-core] [PATCH 1/5] python-six: Add to oe-core

2016-07-12 Thread Alexander Kanavin
On 07/12/2016 01:38 PM, Jussi Kukkonen wrote: Interestingly python-cryptography does not have six in "setup_requires" so I still don't understand why it would do this. I'll do a few tests on that before sending the updated patch set. Maybe it simply used to have that in the past, and no longer

Re: [OE-core] [PATCH 1/5] python-six: Add to oe-core

2016-07-12 Thread Jussi Kukkonen
On 11 July 2016 at 17:27, Alexander Kanavin < alexander.kana...@linux.intel.com> wrote: > On 07/11/2016 02:46 PM, Jussi Kukkonen wrote: > > Not sure where a URL like that comes from or why it would be accessed >> during build? Li Xin, any comment? >> > > A few recipes in meta-oe have this issue, f

Re: [OE-core] [PATCH 1/5] python-six: Add to oe-core

2016-07-11 Thread Alexander Kanavin
On 07/11/2016 02:46 PM, Jussi Kukkonen wrote: Not sure where a URL like that comes from or why it would be accessed during build? Li Xin, any comment? A few recipes in meta-oe have this issue, for example python-mccabe: DEBUG: Executing shell function do_compile Download error on https://pypi

Re: [OE-core] [PATCH 1/5] python-six: Add to oe-core

2016-07-11 Thread Jussi Kukkonen
On 8 July 2016 at 23:17, Burton, Ross wrote: > > On 7 July 2016 at 16:39, Jussi Kukkonen wrote: > >> +do_compile_append() { >> +${PYTHON} setup.py -q bdist_egg --dist-dir ./ >> +} >> +do_install_append() { >> +install -m 0644 ${S}/*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/ >> +} >> > > Is th

Re: [OE-core] [PATCH 1/5] python-six: Add to oe-core

2016-07-08 Thread Alejandro Hernandez
On 07/08/2016 03:17 PM, Burton, Ross wrote: On 7 July 2016 at 16:39, Jussi Kukkonen > wrote: +do_compile_append() { +${PYTHON} setup.py -q bdist_egg --dist-dir ./ +} +do_install_append() { +install -m 0644 ${S}/*.egg ${D}/${PYTHON_SI

Re: [OE-core] [PATCH 1/5] python-six: Add to oe-core

2016-07-08 Thread Burton, Ross
On 7 July 2016 at 16:39, Jussi Kukkonen wrote: > +do_compile_append() { > +${PYTHON} setup.py -q bdist_egg --dist-dir ./ > +} > +do_install_append() { > +install -m 0644 ${S}/*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/ > +} > Is this actually required? The setuptools class should be doing al

[OE-core] [PATCH 1/5] python-six: Add to oe-core

2016-07-07 Thread Jussi Kukkonen
Recipes are moved from meta-openembedded/meta-python Changes compared to meta-python version: * Modified to not inherit pypi * Fix python-io dependency for python3 * Support native, nativesdk Signed-off-by: Jussi Kukkonen --- meta/recipes-devtools/python/python-six.inc| 23 +