| Message ID | 20241109132924.4334-1-brgl@bgdev.pl |
|---|---|
| State | Accepted |
| Headers | show |
| Series | [meta-python] python3-fuse: new recipe | expand |
this is breaking YP compatible check. see https://valkyrie.yoctoproject.org/#/builders/81/builds/141/steps/12/logs/errors It depends on fuse which comes from meta-filesystems. Perhaps this recipe should be added to meta-filesystems layer as well. On Sat, Nov 9, 2024 at 5:29 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote: > > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> > > Add a recipe for fuse-python - the official python3 bindings for > libfuse2. > > Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> > --- > .../recipes-devtools/python/python3-fuse_1.0.8.bb | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > create mode 100644 meta-python/recipes-devtools/python/python3-fuse_1.0.8.bb > > diff --git a/meta-python/recipes-devtools/python/python3-fuse_1.0.8.bb b/meta-python/recipes-devtools/python/python3-fuse_1.0.8.bb > new file mode 100644 > index 000000000..3dd1d1442 > --- /dev/null > +++ b/meta-python/recipes-devtools/python/python3-fuse_1.0.8.bb > @@ -0,0 +1,12 @@ > +SUMMARY = "Python bindings for libfuse2." > + > +LICENSE = "LGPL-2.1-only" > +LIC_FILES_CHKSUM = "file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad" > + > +inherit setuptools3 pypi pkgconfig > + > +SRC_URI[sha256sum] = "6d27023207162ae82145b42cb5e26ef11b2eccc60c8b85f5528fee3e94475187" > + > +DEPENDS = "fuse python3-setuptools-native" > + > +PYPI_PACKAGE = "fuse_python" > -- > 2.45.2 >
On Wed, Nov 20, 2024 at 1:59 AM Khem Raj <raj.khem@gmail.com> wrote: > > this is breaking YP compatible check. see > https://valkyrie.yoctoproject.org/#/builders/81/builds/141/steps/12/logs/errors > > It depends on fuse which comes from meta-filesystems. Perhaps this > recipe should be added to meta-filesystems layer as well. > I sent a v2 moving the recipe to meta-filesystems but on that note: I'm working on a project that will eventually depend on this package and python3-gpiod from meta-python. Where would we put the future recipe for it in this case? Bart
On Wed, Nov 20, 2024 at 12:33 PM Bartosz Golaszewski via lists.openembedded.org <brgl=bgdev.pl@lists.openembedded.org> wrote: > > On Wed, Nov 20, 2024 at 1:59 AM Khem Raj <raj.khem@gmail.com> wrote: > > > > this is breaking YP compatible check. see > > https://valkyrie.yoctoproject.org/#/builders/81/builds/141/steps/12/logs/errors > > > > It depends on fuse which comes from meta-filesystems. Perhaps this > > recipe should be added to meta-filesystems layer as well. > > > > I sent a v2 moving the recipe to meta-filesystems but on that note: > I'm working on a project that will eventually depend on this package > and python3-gpiod from meta-python. Where would we put the future > recipe for it in this case? I would suggest to explore dynamic layers for hosting it in meta-oe perhaps once thats ready > > Bart > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#113938): https://lists.openembedded.org/g/openembedded-devel/message/113938 > Mute This Topic: https://lists.openembedded.org/mt/109480959/1997914 > Group Owner: openembedded-devel+owner@lists.openembedded.org > Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com] > -=-=-=-=-=-=-=-=-=-=-=- >
diff --git a/meta-python/recipes-devtools/python/python3-fuse_1.0.8.bb b/meta-python/recipes-devtools/python/python3-fuse_1.0.8.bb new file mode 100644 index 000000000..3dd1d1442 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-fuse_1.0.8.bb @@ -0,0 +1,12 @@ +SUMMARY = "Python bindings for libfuse2." + +LICENSE = "LGPL-2.1-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad" + +inherit setuptools3 pypi pkgconfig + +SRC_URI[sha256sum] = "6d27023207162ae82145b42cb5e26ef11b2eccc60c8b85f5528fee3e94475187" + +DEPENDS = "fuse python3-setuptools-native" + +PYPI_PACKAGE = "fuse_python"