diff options
author | 2015-12-27 09:35:16 +0100 | |
---|---|---|
committer | 2016-01-02 11:41:26 +0100 | |
commit | a82a42659e3b2fc0598f52e9162d8c9c593aac18 (patch) | |
tree | 7b8767d90c095241190c9ae1071d83e9dfe7b2e4 /eclass | |
parent | check-reqs.eclass: Only inherit eclass once (diff) | |
download | gentoo-a82a42659e3b2fc0598f52e9162d8c9c593aac18.tar.gz gentoo-a82a42659e3b2fc0598f52e9162d8c9c593aac18.tar.bz2 gentoo-a82a42659e3b2fc0598f52e9162d8c9c593aac18.zip |
check-reqs.eclass: Use eqawarn() from eutils.eclass
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/check-reqs.eclass | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index 4f745369f8a9..219023ea61cc 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -76,10 +76,10 @@ check_reqs() { debug-print-function ${FUNCNAME} "$@" echo - ewarn "QA: Package calling old ${FUNCNAME} function." - ewarn "QA: Please file a bug against the package." - ewarn "QA: It should call check-reqs_pkg_pretend and check-reqs_pkg_setup" - ewarn "QA: and possibly use EAPI=4 or later." + eqawarn "Package calling old ${FUNCNAME} function." + eqawarn "Please file a bug against the package." + eqawarn "It should call check-reqs_pkg_pretend and check-reqs_pkg_setup" + eqawarn "and possibly use EAPI=4 or later." echo check-reqs_pkg_setup "$@" @@ -194,9 +194,9 @@ check-reqs_get_number() { # Check for unset units and warn about them. # Backcompat. if [[ ${size} == ${1} ]]; then - ewarn "QA: Package does not specify unit for the size check" - ewarn "QA: Assuming mebibytes." - ewarn "QA: File bug against the package. It should specify the unit." + eqawarn "Package does not specify unit for the size check" + eqawarn "Assuming mebibytes." + eqawarn "File bug against the package. It should specify the unit." fi echo ${size} |