commit: b8cea57c1a478d72ac3e4499f17122b5e7f01232 Author: Sebastian Engel <sighunter <AT> gmx <DOT> de> AuthorDate: Wed Aug 28 12:03:42 2024 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat Sep 14 19:10:59 2024 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=b8cea57c
ebuild-writing/messages: Change ewarn to eqawarn in the example code The message in the code block is clearly a message from an eclass author to ebuild developers and therefore should use eqawarn and not ewarn, like the "QA warnings" passage above describes. Signed-off-by: Sebastian Engel <sighunter <AT> gmx.de> Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> ebuild-writing/messages/text.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ebuild-writing/messages/text.xml b/ebuild-writing/messages/text.xml index 830e3cf..c8c92b5 100644 --- a/ebuild-writing/messages/text.xml +++ b/ebuild-writing/messages/text.xml @@ -148,12 +148,12 @@ It would be better written as: </p> <codesample lang="ebuild"> -ewarn "The 'frozbinate' function provided by eutils.eclass is deprecated" -ewarn "in favour of frozbinate.eclass, but this package has not been" -ewarn "updated yet. If this is a package from the main tree, please check" -ewarn "https://bugs.gentoo.org/ and file a bug if there is not one already." -ewarn "If this is your own package, please read the comments in the" -ewarn "frozbinate eclass for instructions on how to convert." +eqawarn "The 'frozbinate' function provided by eutils.eclass is deprecated" +eqawarn "in favour of frozbinate.eclass, but this package has not been" +eqawarn "updated yet. If this is a package from the main tree, please check" +eqawarn "https://bugs.gentoo.org/ and file a bug if there is not one already." +eqawarn "If this is your own package, please read the comments in the" +eqawarn "frozbinate eclass for instructions on how to convert." </codesample> </body>
