From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 630C81384B4 for ; Mon, 28 Dec 2015 08:44:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04F1B21C00D; Mon, 28 Dec 2015 08:44:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9445DE0384 for ; Mon, 28 Dec 2015 08:44:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id BB18734072E; Mon, 28 Dec 2015 08:44:05 +0000 (UTC) X-Virus-Scanned: by amavisd-new using ClamAV at gentoo.org X-Spam-Flag: NO X-Spam-Score: 0.652 X-Spam-Level: X-Spam-Status: No, score=0.652 tagged_above=-9999 required=5.5 tests=[SPF_NEUTRAL=0.652] autolearn=no autolearn_force=no Received: from smtp.gentoo.org ([127.0.0.1]) by localhost (smtp.gentoo.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2l8wU2DckoKy; Mon, 28 Dec 2015 08:44:00 +0000 (UTC) Received: from leo.ics.kfa-juelich.de (static-2-1006.not-your-server.de [IPv6:2a01:4f8:191:22ca::2:1006]) by smtp.gentoo.org (Postfix) with ESMTP id E9F773405D5; Mon, 28 Dec 2015 08:43:59 +0000 (UTC) From: Justin Lecher To: gentoo-dev@lists.gentoo.org Cc: qa@gentoo.org, Justin Lecher Subject: [gentoo-dev] [PATCH 2/9] check-reqs.eclass: Use eqawarn() from eutils.eclass Date: Mon, 28 Dec 2015 09:43:48 +0100 Message-Id: <1451292235-25265-3-git-send-email-jlec@gentoo.org> X-Mailer: git-send-email 2.6.4 In-Reply-To: <1451292235-25265-1-git-send-email-jlec@gentoo.org> References: <1451292235-25265-1-git-send-email-jlec@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Archives-Salt: e55cfcf2-03c4-4b85-ad93-4a7d75727eae X-Archives-Hash: 75915754b76a1c09504ce8eb9cb0618b Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index 4f74536..219023e 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} -- 2.6.4