From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1R5OB9-00037B-Hv for garchives@archives.gentoo.org; Sun, 18 Sep 2011 20:41:31 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD61221C33A; Sun, 18 Sep 2011 20:41:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 72B7121C33A for ; Sun, 18 Sep 2011 20:41:23 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B04491B4028 for ; Sun, 18 Sep 2011 20:41:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id C1D1280042 for ; Sun, 18 Sep 2011 20:41:21 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <62da1be30a7b9a9d550e63a18f0c6736f0801b59.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/misc-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 62da1be30a7b9a9d550e63a18f0c6736f0801b59 Date: Sun, 18 Sep 2011 20:41:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 5f6660a473f68c4fff93b9e6e5eba4f2 commit: 62da1be30a7b9a9d550e63a18f0c6736f0801b59 Author: Zac Medico gentoo org> AuthorDate: Sun Sep 18 20:41:07 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Sep 18 20:41:07 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D62da1be3 install_qa_check: adjust "poor programming" msgs Refer to "severe warnings" rather than "poor programming", in order to be more politically correct, as discussed in bug #374233. --- bin/misc-functions.sh | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 8c191ff..30244a7 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -621,8 +621,8 @@ install_qa_check() { #esac if [[ $always_overflow =3D yes ]] ; then eerror - eerror "QA Notice: Package has poor programming practices which may= compile" - eerror " fine but exhibit random runtime failures." + eerror "QA Notice: Package triggers severe warnings which indicate = that it" + eerror " may exhibit random runtime failures." eerror eerror "${f}" eerror @@ -631,8 +631,8 @@ install_qa_check() { eerror else vecho -ne '\n' - eqawarn "QA Notice: Package has poor programming practices which ma= y compile" - eqawarn " fine but exhibit random runtime failures." + eqawarn "QA Notice: Package triggers severe warnings which indicate= that it" + eqawarn " may exhibit random runtime failures." eqawarn "${f}" vecho -ne '\n' fi @@ -658,8 +658,8 @@ install_qa_check() { =20 if [[ $gentoo_bug =3D yes ]] ; then eerror - eerror "QA Notice: Package has poor programming practices which may = compile" - eerror " but will almost certainly crash on 64bit architec= tures." + eerror "QA Notice: Package triggers severe warnings which indicate t= hat it" + eerror " will almost certainly crash on 64bit architecture= s." eerror eerror "${f}" eerror @@ -668,8 +668,8 @@ install_qa_check() { eerror else vecho -ne '\n' - eqawarn "QA Notice: Package has poor programming practices which may= compile" - eqawarn " but will almost certainly crash on 64bit archite= ctures." + eqawarn "QA Notice: Package triggers severe warnings which indicate = that it" + eqawarn " will almost certainly crash on 64bit architectur= es." eqawarn "${f}" vecho -ne '\n' fi @@ -678,7 +678,7 @@ install_qa_check() { if [[ ${abort} =3D=3D "yes" ]] ; then if [[ $gentoo_bug =3D yes || $always_overflow =3D yes ]] ; then die "install aborted due to" \ - "poor programming practices shown above" + "severe warnings shown above" else echo "Please do not file a Gentoo bug and instead" \ "report the above QA issues directly to the upstream" \ @@ -686,7 +686,7 @@ install_qa_check() { while read -r line ; do eqawarn "${line}" ; done eqawarn "Homepage: ${HOMEPAGE}" has stricter ${FEATURES} && die "install aborted due to" \ - "poor programming practices shown above" + "severe warnings shown above" fi fi fi