From: Zac Medico Date: Sun, 16 Nov 2008 21:25:11 +0000 (-0000) Subject: Add a QA Notice for 'jobserver unavailable' from make in the build log. Thanks X-Git-Tag: v2.2_rc15~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=86fe3b9afa6c819c07c4cd1fb1d4eca42dc0ff20;p=portage.git Add a QA Notice for 'jobserver unavailable' from make in the build log. Thanks to Diego 'Flameeyes' Pettenò for the suggestion. svn path=/main/trunk/; revision=11972 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index d4d1f9518..ef77a8300 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -4519,6 +4519,11 @@ def _check_build_log(mysettings, out=None): am_maintainer_mode_re = re.compile(r'.*/missing --run .*') am_maintainer_mode_exclude_re = \ re.compile(r'.*/missing --run (autoheader|makeinfo)') + + make_jobserver_re = \ + re.compile(r'make\[\d+\]: warning: jobserver unavailable:') + make_jobserver = [] + try: for line in f: if am_maintainer_mode_re.search(line) is not None and \ @@ -4533,6 +4538,10 @@ def _check_build_log(mysettings, out=None): if configure_opts_warn_re.match(line) is not None: configure_opts_warn.append(line.rstrip("\n")) + + if make_jobserver_re.match(line) is not None: + make_jobserver.append(line.rstrip("\n")) + finally: f.close() @@ -4579,6 +4588,12 @@ def _check_build_log(mysettings, out=None): msg.extend("\t" + line for line in configure_opts_warn) _eqawarn(msg) + if make_jobserver: + msg = ["QA Notice: make jobserver unavailable:"] + msg.append("") + msg.extend("\t" + line for line in make_jobserver) + _eqawarn(msg) + def _post_src_install_uid_fix(mysettings): """ Files in $D with user and group bits that match the "portage"