From 670fb0086a3ce344db03a159bf782a6a69871ed5 Mon Sep 17 00:00:00 2001 From: Jonathan Maw Date: Fri, 10 Aug 2018 14:52:12 +0100 Subject: docs: Add documentation of build-depends and runtime-depends fields --- doc/source/format_declaring.rst | 68 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 66 insertions(+), 2 deletions(-) diff --git a/doc/source/format_declaring.rst b/doc/source/format_declaring.rst index 013e2c82c..38c107c1b 100644 --- a/doc/source/format_declaring.rst +++ b/doc/source/format_declaring.rst @@ -98,6 +98,68 @@ relative filename to the elements they depend on here. See :ref:`format_dependencies` for more information on the dependency model. +.. _format_build_depends: + +Build-Depends +~~~~~~~~~~~~~ + +.. code:: yaml + + # Specify some build-dependencies + build-depends: + - element1.bst + - element2.bst + +Build dependencies between elements can be specified with the ``build-depends`` attribute. +The above code snippet is equivalent to: + +.. code:: yaml + + # Specify some build-dependencies + depends: + - filename: element1.bst + type: build + - filename: element2.bst + type: build + +See :ref:`format_dependencies` for more information on the dependency model. + +.. note:: + + The ``build-depends`` configuration is available since :ref:`format version 14 ` + + +.. _format_runtime_depends: + +Runtime-Depends +~~~~~~~~~~~~~~~ + +.. code:: yaml + + # Specify some runtime-dependencies + runtime-depends: + - element1.bst + - element2.bst + +Runtime dependencies between elements can be specified with the ``runtime-depends`` attribute. +The above code snippet is equivalent to: + +.. code:: yaml + + # Specify some runtime-dependencies + depends: + - filename: element1.bst + type: runtime + - filename: element2.bst + type: runtime + +See :ref:`format_dependencies` for more information on the dependency model. + +.. note:: + + The ``runtime-depends`` configuration is available since :ref:`format version 14 ` + + .. _format_sources: Sources @@ -276,8 +338,8 @@ attributes are suitable. .. note:: - Note the order in which element dependencies are declared in the ``depends`` - list is not meaningful. + Note the order in which element dependencies are declared in the ``depends``, + ``build-depends`` and ``runtime-depends`` lists are not meaningful. Dependency dictionary: @@ -299,6 +361,8 @@ Attributes: * ``type`` This attribute is used to express the :ref:`dependency type `. + This field is not permitted in :ref:`Build-Depends ` or + :ref:`Runtime-Depends `. * ``junction`` -- cgit v1.2.1