From 9ff93dbc50ed61a15d1379bfa467f1784ee1f341 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Wed, 4 Dec 2013 07:59:34 -0600 Subject: [PATCH] ref-manual: Added setuptools class and edits to distutils class. (From yocto-docs rev: 5bd4a02a55f0be84787103f99c48f1759840ac7c) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/ref-manual/ref-classes.xml | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/documentation/ref-manual/ref-classes.xml b/documentation/ref-manual/ref-classes.xml index b533ee9d3b..c9fedb20bb 100644 --- a/documentation/ref-manual/ref-classes.xml +++ b/documentation/ref-manual/ref-classes.xml @@ -1701,6 +1701,17 @@ +
+ <filename>setuptools.bbclass</filename> + + + The setuptools class supports extensions that use + setuptools-based build systems. + If your recipe uses these build systems, the recipe needs to + inherit the setuptools class. + +
+
Python Extensions - <filename>distutils.bbclass</filename> @@ -1712,12 +1723,16 @@ Extensions that use an Autotools-based build system require Autotools and - distutils-based - .bbclasse files in their recipes. + distutils-based classes in their recipes. Extensions that use distutils-based build systems require - distutils.bbclass in their recipes. + the distutils class in their recipes. + + Extensions that use the setuptools-based build + systems require the + setuptools + class in their recipes.