Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 04 Jul 2020 07:15:53
Message-Id: 1593846910.82e2faef9c78609b66eaf31850fe10d51d1d956e.mgorny@gentoo
1 commit: 82e2faef9c78609b66eaf31850fe10d51d1d956e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 4 06:58:42 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 4 07:15:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82e2faef
7
8 multibuild.eclass: Mark variable classes in eclassdoc
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 eclass/multibuild.eclass | 5 +++++
13 1 file changed, 5 insertions(+)
14
15 diff --git a/eclass/multibuild.eclass b/eclass/multibuild.eclass
16 index 169c0fa0084..dd5d627ad96 100644
17 --- a/eclass/multibuild.eclass
18 +++ b/eclass/multibuild.eclass
19 @@ -27,6 +27,7 @@ esac
20 if [[ ! ${_MULTIBUILD} ]]; then
21
22 # @ECLASS-VARIABLE: MULTIBUILD_VARIANTS
23 +# @REQUIRED
24 # @DESCRIPTION:
25 # An array specifying all enabled variants which multibuild_foreach*
26 # can execute the process for.
27 @@ -43,6 +44,7 @@ if [[ ! ${_MULTIBUILD} ]]; then
28 # @CODE
29
30 # @ECLASS-VARIABLE: MULTIBUILD_VARIANT
31 +# @OUTPUT_VARIABLE
32 # @DESCRIPTION:
33 # The current variant which the function was executed for.
34 #
35 @@ -52,6 +54,7 @@ if [[ ! ${_MULTIBUILD} ]]; then
36 # @CODE
37
38 # @ECLASS-VARIABLE: MULTIBUILD_ID
39 +# @OUTPUT_VARIABLE
40 # @DESCRIPTION:
41 # The unique identifier for a multibuild run. In a simple run, it is
42 # equal to MULTIBUILD_VARIANT. In a nested multibuild environment, it
43 @@ -65,6 +68,8 @@ if [[ ! ${_MULTIBUILD} ]]; then
44 # @CODE
45
46 # @ECLASS-VARIABLE: BUILD_DIR
47 +# @OUTPUT_VARIABLE
48 +# @DEFAULT_UNSET
49 # @DESCRIPTION:
50 # The current build directory. In global scope, it is supposed
51 # to contain an 'initial' build directory. If unset, ${S} is used.