Re: [yocto] Python3 pyee recipe for Kirkstone

2024-05-16 Thread Gary Huband via lists.yoctoproject.org
Same problem after adding python3-setuptools-scm-native.  I've attached the pyproject.toml. > > > inherit pypi python_setuptools_build_meta > > LICENSE = "MIT" > LIC_FILES_CHKSUM = "file://LICENSE;md5=b2b1cc8797dff32cec5d783148fceab5" > > SRC_URI[md5sum] = "b12a1105a13a218ef0d6b1fa6cb6425a" >

Re: [yocto] Python3 pyee recipe for Kirkstone

2024-05-15 Thread Ross Burton
, 2024 8:05:46 PM To: Ross Burton ; yocto@lists.yoctoproject.org Subject: Re: [yocto] Python3 pyee recipe for Kirkstone Still no pyee under site-packages and the dist-info dir is UNKNOWN $ tree ./tmp/work/corei7-64-poky-linux/python3-pyee/11.1.0-r0/image/ ./tmp/work/corei7-64-poky-linux/python3

Re: [yocto] Python3 pyee recipe for Kirkstone

2024-05-15 Thread Gary Huband via lists.yoctoproject.org
Still no pyee under site-packages and the dist-info dir is UNKNOWN > > $ tree ./tmp/work/corei7-64-poky-linux/python3-pyee/11.1.0-r0/image/ > ./tmp/work/corei7-64-poky-linux/python3-pyee/11.1.0-r0/image/ > └── usr > └── lib > └── python3.10 > └── site-packages > └── UNKNOWN-0.0.0.dist-info > ├── L

Re: [yocto] Python3 pyee recipe for Kirkstone

2024-05-15 Thread Ross Burton
On 15 May 2024, at 19:33, Gary Huband via lists.yoctoproject.org wrote: > > I'm trying to create a Python3 recipe for pyee > https://pypi.org/project/pyee/ > The package has a pyproject.toml but no setup.py. > The build system section: > [build-system] > requires = ["setuptools", "setuptools-scm

[yocto] Python3 pyee recipe for Kirkstone

2024-05-15 Thread Gary Huband via lists.yoctoproject.org
I'm trying to create a Python3 recipe for pyee https://pypi.org/project/pyee/ The package has a pyproject.toml but no setup.py. The build system section: [build-system] requires = ["setuptools", "setuptools-scm", "wheel"] build-backend = "setuptools.build_meta" Here's my recipe python3-pyee_11.1.