* [Buildroot] [PATCH] package/python-yamllint: fix dependencies and SETUP_TYPE
@ 2024-04-13 13:32 Heiko Thiery
2024-05-09 15:50 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: Heiko Thiery @ 2024-04-13 13:32 UTC (permalink / raw)
To: buildroot; +Cc: Heiko Thiery, James Hilliard, Romain Naour, Asaf Kahlon
For host build the runtime depndencies has to be added. Also the setup
type needs to be set to 'setuptools'.
./output/host/bin/python ./support/testing/tests/package/sample_python_yamllint.py
Traceback (most recent call last):
File "/home/hthiery/sources/mainline/buildroot/support/testing/tests/package/sample_python_yamllint.py", line 3, in <module>
from yamllint import (config, linter)
File "/home/hthiery/sources/mainline/buildroot/output/host/lib/python3.11/site-packages/yamllint/config.py", line 19, in <module>
import pathspec
ModuleNotFoundError: No module named 'pathspec'
Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
Reported-by: Romain Naour <romain.naour@smile.fr>
---
package/python-yamllint/python-yamllint.mk | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/package/python-yamllint/python-yamllint.mk b/package/python-yamllint/python-yamllint.mk
index ceaca3b0b8..29344a1408 100644
--- a/package/python-yamllint/python-yamllint.mk
+++ b/package/python-yamllint/python-yamllint.mk
@@ -7,9 +7,13 @@
PYTHON_YAMLLINT_VERSION = 1.35.1
PYTHON_YAMLLINT_SOURCE = yamllint-$(PYTHON_YAMLLINT_VERSION).tar.gz
PYTHON_YAMLLINT_SITE = https://files.pythonhosted.org/packages/da/06/d8cee5c3dfd550cc0a466ead8b321138198485d1034130ac1393cc49d63e
-PYTHON_YAMLLINT_SETUP_TYPE = pep517
+PYTHON_YAMLLINT_SETUP_TYPE = setuptools
PYTHON_YAMLLINT_LICENSE = GPL-3.0
PYTHON_YAMLLINT_LICENSE_FILES = LICENSE
+HOST_PYTHON_YAMLLINT_DEPENDENCIES += \
+ host-python-pathspec \
+ host-python-pyyaml
+
$(eval $(python-package))
$(eval $(host-python-package))
--
2.20.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Buildroot] [PATCH] package/python-yamllint: fix dependencies and SETUP_TYPE
2024-04-13 13:32 [Buildroot] [PATCH] package/python-yamllint: fix dependencies and SETUP_TYPE Heiko Thiery
@ 2024-05-09 15:50 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 15:50 UTC (permalink / raw)
To: Heiko Thiery; +Cc: James Hilliard, Romain Naour, Asaf Kahlon, buildroot
On Sat, 13 Apr 2024 15:32:02 +0200
Heiko Thiery <heiko.thiery@gmail.com> wrote:
> For host build the runtime depndencies has to be added. Also the setup
> type needs to be set to 'setuptools'.
>
> ./output/host/bin/python ./support/testing/tests/package/sample_python_yamllint.py
> Traceback (most recent call last):
> File "/home/hthiery/sources/mainline/buildroot/support/testing/tests/package/sample_python_yamllint.py", line 3, in <module>
> from yamllint import (config, linter)
> File "/home/hthiery/sources/mainline/buildroot/output/host/lib/python3.11/site-packages/yamllint/config.py", line 19, in <module>
> import pathspec
> ModuleNotFoundError: No module named 'pathspec'
>
> Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
> Reported-by: Romain Naour <romain.naour@smile.fr>
> ---
> package/python-yamllint/python-yamllint.mk | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-05-09 15:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-13 13:32 [Buildroot] [PATCH] package/python-yamllint: fix dependencies and SETUP_TYPE Heiko Thiery
2024-05-09 15:50 ` Thomas Petazzoni via buildroot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.