diff mbox series

[3/3] python3-pbr: use the python_pbr build class

Message ID 20260810115304.562663-3-ross.burton@arm.com
State New
Headers show
Series [1/3] classes/setuptools3: skip the backend-check early | expand

Commit Message

Ross Burton Aug. 10, 2026, 11:53 a.m. UTC
PBR builds on top of setuptools, so we need to have that as a dependency.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta/recipes-devtools/python/python3-pbr_7.0.3.bb | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/meta/recipes-devtools/python/python3-pbr_7.0.3.bb b/meta/recipes-devtools/python/python3-pbr_7.0.3.bb
index dee32aa885c..80092999fa8 100644
--- a/meta/recipes-devtools/python/python3-pbr_7.0.3.bb
+++ b/meta/recipes-devtools/python/python3-pbr_7.0.3.bb
@@ -5,9 +5,11 @@  SECTION = "devel/python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
 
-inherit pypi python_setuptools_build_meta
+DEPENDS = "python3-setuptools-native"
 
-RDEPENDS:${PN} += "python3-pip"
+inherit pypi python_pbr
+
+RDEPENDS:${PN} += "python3-setuptools"
 
 BBCLASSEXTEND = "native nativesdk"