aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2024-05-08 02:59:58 +0200
committerMartin 'JaMa' Jansa <Martin.Jansa@gmail.com>2024-05-08 09:38:30 +0200
commit7acb1aa500254fb516c574b25b9f95b86ed9f584 (patch)
treec42dd167f6c94acc6e931b1659e3907c7882770a
parentd8eeef0bfd84672c7919cd346f25f7c9a98ddaea (diff)
python3-pyqt-builder-native: Fix OE dunfell buildupstream/master
OE dunfell builds have to inherit setuptools3, while anything newer has to inherit python_setuptools_build_meta. While OE dunfell is now EOL, this layer still claims to support it, so make it buildable and avoid breakage until the layer stops to support OE dunfell for good. Once that happens, this commit should be reverted. Signed-off-by: Marek Vasut <marex@denx.de>
-rw-r--r--recipes-python/pyqt5/python3-pyqt-builder-native_1.16.0.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-python/pyqt5/python3-pyqt-builder-native_1.16.0.bb b/recipes-python/pyqt5/python3-pyqt-builder-native_1.16.0.bb
index 6c0c7508..968422e3 100644
--- a/recipes-python/pyqt5/python3-pyqt-builder-native_1.16.0.bb
+++ b/recipes-python/pyqt5/python3-pyqt-builder-native_1.16.0.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://pyproject.toml;md5=62537c8c9cf72be020148e3adc658ce3;b
SRC_URI[sha256sum] = "47bbd2cfa5430020108f9f40301e166cbea98b6ef3e53953350bdd4c6b31ab18"
-inherit pypi python_setuptools_build_meta native
+inherit pypi ${@'setuptools3' if (d.getVar('LAYERSERIES_CORENAMES') in ["dunfell"]) else 'python_setuptools_build_meta'} native
PYPI_PACKAGE = "PyQt-builder"