Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sun, 08 Sep 2019 18:07:35
Message-Id: 1567966029.b3e776ba071471f8af0067fcc71bba43492b9139.bkohler@gentoo
1 commit: b3e776ba071471f8af0067fcc71bba43492b9139
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 8 18:06:37 2019 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 8 18:07:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3e776ba
7
8 tmpfiles.eclass: fix @USAGE to not include function names
9
10 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
11
12 eclass/tmpfiles.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass
16 index 68478ffbcd6..360c5e3b816 100644
17 --- a/eclass/tmpfiles.eclass
18 +++ b/eclass/tmpfiles.eclass
19 @@ -63,7 +63,7 @@ esac
20 RDEPEND="virtual/tmpfiles"
21
22 # @FUNCTION: dotmpfiles
23 -# @USAGE: dotmpfiles <tmpfiles.d_file> ...
24 +# @USAGE: <tmpfiles.d_file> ...
25 # @DESCRIPTION:
26 # Install one or more tmpfiles.d files into /usr/lib/tmpfiles.d.
27 dotmpfiles() {
28 @@ -84,7 +84,7 @@ dotmpfiles() {
29 }
30
31 # @FUNCTION: newtmpfiles
32 -# @USAGE: newtmpfiles <old-name> <new-name>.conf
33 +# @USAGE: <old-name> <new-name>.conf
34 # @DESCRIPTION:
35 # Install a tmpfiles.d file in /usr/lib/tmpfiles.d under a new name.
36 newtmpfiles() {
37 @@ -102,7 +102,7 @@ newtmpfiles() {
38 }
39
40 # @FUNCTION: tmpfiles_process
41 -# @USAGE: tmpfiles_process <filename> <filename> ...
42 +# @USAGE: <filename> <filename> ...
43 # @DESCRIPTION:
44 # Call a tmpfiles.d implementation to create new volatile and temporary
45 # files and directories.