Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 12 Sep 2022 19:14:43
Message-Id: 1663010073.6497565be0b7baebca966388cb8c1a93233e24e5.arthurzam@gentoo
1 commit: 6497565be0b7baebca966388cb8c1a93233e24e5
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 3 11:35:24 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 12 19:14:33 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6497565b
7
8 myspell-r2.eclass: improve code examples format
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 eclass/myspell-r2.eclass | 6 ++++++
13 1 file changed, 6 insertions(+)
14
15 diff --git a/eclass/myspell-r2.eclass b/eclass/myspell-r2.eclass
16 index cce75ae4d6d2..965327ac1b58 100644
17 --- a/eclass/myspell-r2.eclass
18 +++ b/eclass/myspell-r2.eclass
19 @@ -16,19 +16,25 @@
20 # @DEFAULT_UNSET
21 # @DESCRIPTION:
22 # Array variable containing list of all dictionary files.
23 +# @CODE
24 # MYSPELL_DICT=( "file.dic" "dir/file2.aff" )
25 +# @CODE
26
27 # @ECLASS_VARIABLE: MYSPELL_HYPH
28 # @DEFAULT_UNSET
29 # @DESCRIPTION:
30 # Array variable containing list of all hyphenation files.
31 +# @CODE
32 # MYSPELL_HYPH=( "file.dic" "dir/file2.dic" )
33 +# @CODE
34
35 # @ECLASS_VARIABLE: MYSPELL_THES
36 # @DEFAULT_UNSET
37 # @DESCRIPTION:
38 # Array variable containing list of all thesarus files.
39 +# @CODE
40 # MYSPELL_THES=( "file.dat" "dir/file2.idx" )
41 +# @CODE
42
43 case ${EAPI} in
44 7|8)