diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-01-11 06:51:09 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-01-11 06:51:09 +0000 |
commit | 322441e4f44aeb130b37a030bd8b6fa6549894eb (patch) | |
tree | b8c36fae42bcf939e483df8061d2c60857275e5f | |
parent | 93c9a299a23bb99f87f26a6d9c6e72d40b1ca56b (diff) | |
download | portage-322441e4f44aeb130b37a030bd8b6fa6549894eb.tar.gz portage-322441e4f44aeb130b37a030bd8b6fa6549894eb.tar.bz2 portage-322441e4f44aeb130b37a030bd8b6fa6549894eb.zip |
Bug #162450 - Try to avoid having so many bugs marked UPSTREAM by
encouraging users to report 'poor programming practices' QA issues
upstream and show them the $HOMEPAGE for convenience.
svn path=/main/trunk/; revision=9176
-rwxr-xr-x | bin/misc-functions.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 6c34fd044..a15e99ade 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -321,6 +321,13 @@ install_qa_check() { *) abort="yes";; esac fi + if [[ ${abort} == "yes" ]] || ; then + echo "Please do not file a Gentoo bug and instead" \ + "report the above QA issues directly to the upstream" \ + "developers of this software." | fmt -w 70 | \ + while read line ; do eqawarn "${line}" ; done + eqawarn "Homepage: ${HOMEPAGE}" + fi [[ ${abort} == "yes" ]] && hasq stricter ${FEATURES} && die "poor code kills airplanes" fi |