diff mbox series

[2/3] classes/python_pbr: add class for Python Build Reasonableness backend

Message ID 20260810115304.562663-2-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
We have a recipe in core for this build backend, so add a class.

Note that we have no users of pbr in core, so there's an argument to be
had over what build backends live in oe-core vs meta-python.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta/classes-recipe/python_pbr.bbclass | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 meta/classes-recipe/python_pbr.bbclass
diff mbox series

Patch

diff --git a/meta/classes-recipe/python_pbr.bbclass b/meta/classes-recipe/python_pbr.bbclass
new file mode 100644
index 00000000000..5dc25a4c7f8
--- /dev/null
+++ b/meta/classes-recipe/python_pbr.bbclass
@@ -0,0 +1,9 @@ 
+#
+# Copyright OpenEmbedded Contributors
+#
+# SPDX-License-Identifier: MIT
+#
+
+inherit python_pep517
+
+DEPENDS += "python3-pbr-native"