From: Yegor Yefremov Date: Tue, 10 Mar 2020 11:41:01 +0000 (+0100) Subject: package/python-markdown: fix Python version dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1e5723ee589e8d205883c15ca863c01f94b8854f;p=buildroot.git package/python-markdown: fix Python version dependency Since upstream commit https://github.com/Python-Markdown/markdown/commit/dab931f597cdc5b57d4e2458840fb991606506bc, merged since version 3.2 of python-markdown, the Python 2.x support has been dropped. So our commit 6e538bf642d3584032d63bb54d24b88ab57e4283 ("package/python-markdown: bump to version 3.2.1") should have made python-markdown available only for Python 3.x. Fixes: http://autobuild.buildroot.net/results/6d1e796f6658accb3eafef265935db5e464638fe Signed-off-by: Yegor Yefremov Reviewed-by: Asaf Kahlon Tested-by: Gwenhael Goavec-Merou Signed-off-by: Thomas Petazzoni --- diff --git a/package/python-markdown/Config.in b/package/python-markdown/Config.in index 6706684142..454c2729bd 100644 --- a/package/python-markdown/Config.in +++ b/package/python-markdown/Config.in @@ -1,8 +1,8 @@ config BR2_PACKAGE_PYTHON_MARKDOWN bool "python-markdown" + depends on BR2_PACKAGE_PYTHON3 # runtime dependency on Python's xml module - select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON - select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3 + select BR2_PACKAGE_PYTHON3_PYEXPAT help This is a Python implementation of John Gruber's Markdown