Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 17 Apr 2021 04:30:33
Message-Id: 1618633821.bdddd06fff6aad611764c97f192e4d8bdfff6723.juippis@gentoo
1 commit: bdddd06fff6aad611764c97f192e4d8bdfff6723
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 04:29:40 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 17 04:30:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdddd06f
7
8 optfeature.eclass: fix indentations in code examples
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 eclass/optfeature.eclass | 16 ++++++++--------
13 1 file changed, 8 insertions(+), 8 deletions(-)
14
15 diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass
16 index 06776da922d..e6ab6b7f52d 100644
17 --- a/eclass/optfeature.eclass
18 +++ b/eclass/optfeature.eclass
19 @@ -53,11 +53,11 @@ _OPTFEATURE_DOHEADER=true
20 # displayed in case dev-db/a or dev-db/b are not installed.
21 # @CODE
22 # pkg_postinst() {
23 -# optfeature "foo support" app-misc/foo
24 -# optfeature "bar support" app-misc/bar
25 -# optfeature_header "Install optional database backends:"
26 -# optfeature "a DB backend" dev-db/a
27 -# optfeature "b DB backend" dev-db/b
28 +# optfeature "foo support" app-misc/foo
29 +# optfeature "bar support" app-misc/bar
30 +# optfeature_header "Install optional database backends:"
31 +# optfeature "a DB backend" dev-db/a
32 +# optfeature "b DB backend" dev-db/b
33 # }
34 # @CODE
35 optfeature_header() {
36 @@ -77,9 +77,9 @@ optfeature_header() {
37 # and either both app-misc/a and app-misc/b or app-misc/c for alphabet support.
38 # @CODE
39 # pkg_postinst() {
40 -# optfeature "foo support" app-misc/foo
41 -# optfeature "bar support" app-misc/bar app-misc/baz[bar]
42 -# optfeature "alphabet support" "app-misc/a app-misc/b" app-misc/c
43 +# optfeature "foo support" app-misc/foo
44 +# optfeature "bar support" app-misc/bar app-misc/baz[bar]
45 +# optfeature "alphabet support" "app-misc/a app-misc/b" app-misc/c
46 # }
47 # @CODE
48 optfeature() {