@@ -5594,6 +5594,25 @@ system and gives an overview of their function and contents.
``bash-4.2-r1/``). This variable is comprised of the following:
${:term:`PN`}-${:term:`EXTENDPE`}${:term:`PV`}-${:term:`PR`}
+ :term:`PIP_INSTALL_ARGS`
+ When used by recipes that inherit the
+ :ref:`pip_install_wheel <ref-classes-pip_install_wheel>` class,
+ denotes the arguments passed to ``pip install`` to adjust the
+ behavior of how the ``wheel`` is installed.
+
+ :term:`PIP_INSTALL_DIST_PATH`
+ When used by recipes that inherit the
+ :ref:`pip_install_wheel <ref-classes-pip_install_wheel>` class,
+ denotes the path to ``dist/`` (short for distribution) where the
+ binary archive ``wheel`` is built. This is used in part to create
+ the :term:`PYPA_WHEEL` variable.
+
+ :term:`PIP_INSTALL_PACKAGE`
+ When used by recipes that inherit the
+ :ref:`pip_install_wheel <ref-classes-pip_install_wheel>` class,
+ denotes the name of the package portion of the ``wheel`` filename.
+ This is used in part to create the :term:`PYPA_WHEEL` variable.
+
:term:`PIXBUF_PACKAGES`
When inheriting the :ref:`pixbufcache <ref-classes-pixbufcache>`
class, this variable identifies packages that contain the pixbuf
@@ -6021,6 +6040,13 @@ system and gives an overview of their function and contents.
:term:`PV` is the default value of the :term:`PKGV` variable.
+ :term:`PYPA_WHEEL`
+ When used by recipes that inherit the
+ :ref:`pip_install_wheel <ref-classes-pip_install_wheel>` class, denotes
+ the absolute path to the built ``wheel`` to be installed. Normally the
+ defaults which use :term:`PIP_INSTALL_PACKAGE` and :term:`PIP_INSTALL_DIST_PATH`
+ to build the path to the ``wheel`` should be sufficient.
+
:term:`PYTHON_ABI`
When used by recipes that inherit the
:ref:`distutils3 <ref-classes-distutils3>`,
Add the new variables used to install Python `wheel` binary archives: * PIP_INSTALL_ARGS * PIP_INSTALL_DIST_PATH * PIP_INSTALL_PACKAGE * PYPA_WHEEL Signed-off-by: Tim Orling <tim.orling@konsulko.com> --- documentation/ref-manual/variables.rst | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+)