[v2,5/5] docs: migration-3.3 drop distutils labels, terms

Message ID 20220301163617.1543257-5-tim.orling@konsulko.com
State New
Headers show
Series [v2,1/5] docs: ref-manual: drop distutils from variables | expand

Commit Message

Tim Orling March 1, 2022, 4:36 p.m. UTC
The distutils* classes and DISUTILS* terms are no longer defined so
replace their usage with ``text``.

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 documentation/migration-guides/migration-3.3.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Michael Opdenacker March 2, 2022, 10:21 a.m. UTC | #1
Hi Tim,

On 3/1/22 17:36, Tim Orling wrote:
> The distutils* classes and DISUTILS* terms are no longer defined so
> replace their usage with ``text``.
>
> Signed-off-by: Tim Orling <tim.orling@konsulko.com>


Thanks for the updates. For all 5 patches:
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
... and merged into "master-next".

Thanks again!
Michael.

Patch

diff --git a/documentation/migration-guides/migration-3.3.rst b/documentation/migration-guides/migration-3.3.rst
index f982b1c80..1eb494c28 100644
--- a/documentation/migration-guides/migration-3.3.rst
+++ b/documentation/migration-guides/migration-3.3.rst
@@ -90,17 +90,17 @@  example::
 
 then in ``setup.py`` it works with source code in a relative fashion, such
 as ``../../src``. This causes pseudo to fail as it isn't able to track
-the paths properly. This release introduces a new :term:`DISTUTILS_SETUP_PATH`
+the paths properly. This release introduces a new ``DISTUTILS_SETUP_PATH``
 variable so that recipes can specify it explicitly, for example::
 
    S = "${WORKDIR}/git"
    DISTUTILS_SETUP_PATH = "${S}/python/pythonmodule"
 
-Recipes that inherit from :ref:`distutils3 <ref-classes-distutils3>` (or
+Recipes that inherit from ``distutils3`` (or
 :ref:`setuptools3 <ref-classes-setuptools3>` which itself inherits
-:ref:`distutils3 <ref-classes-distutils3>`) that also set :term:`S` to
+``distutils3``) that also set :term:`S` to
 point to a Python module within a subdirectory in the aforementioned
-manner should be changed to set :term:`DISTUTILS_SETUP_PATH` instead.
+manner should be changed to set ``DISTUTILS_SETUP_PATH`` instead.
 
 
 .. _migration-3.3-bitbake: