Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Thu, 12 May 2022 17:11:01
Message-Id: 1652375433.674f168fd48b0e7461b1cffa9dc169e98cc92457.ulm@gentoo
1 commit: 674f168fd48b0e7461b1cffa9dc169e98cc92457
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 9 13:49:39 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 12 17:10:33 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=674f168f
7
8 waf-utils.eclass: Don't indent eclass documentation
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/waf-utils.eclass | 10 ++++++----
13 1 file changed, 6 insertions(+), 4 deletions(-)
14
15 diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass
16 index 7945cc869eb6..d5d52b9af247 100644
17 --- a/eclass/waf-utils.eclass
18 +++ b/eclass/waf-utils.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: waf-utils.eclass
25 @@ -29,6 +29,11 @@ esac
26 # this is _not_ meant to be set in ebuilds
27 : ${WAF_VERBOSE:=ON}
28
29 +# @ECLASS_VARIABLE: WAF_BINARY
30 +# @DESCRIPTION:
31 +# Eclass can use different waf executable. Usually it is located
32 +# in "${S}/waf".
33 +
34 # @FUNCTION: waf-utils_src_configure
35 # @DESCRIPTION:
36 # General function for configuring with waf.
37 @@ -69,9 +74,6 @@ waf-utils_src_configure() {
38
39 [[ ${fail} ]] && die "Invalid use of waf-utils.eclass"
40
41 - # @ECLASS_VARIABLE: WAF_BINARY
42 - # @DESCRIPTION:
43 - # Eclass can use different waf executable. Usually it is located in "${S}/waf".
44 : ${WAF_BINARY:="${S}/waf"}
45
46 local conf_args=()