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 1R8ia2-0001M6-No for garchives@archives.gentoo.org; Wed, 28 Sep 2011 01:04:59 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17C1321C195; Wed, 28 Sep 2011 01:04:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D08B121C195 for ; Wed, 28 Sep 2011 01:04:49 +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 6C4971B400F for ; Wed, 28 Sep 2011 01:04:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id BA8E480042 for ; Wed, 28 Sep 2011 01:04:48 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <0eaa44031df5eb6e41690457bea7fe72e9bb47c0.zorry@gentoo> Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/ X-VCS-Repository: dev/zorry X-VCS-Files: gobs/pym/build_log.py X-VCS-Directories: gobs/pym/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 0eaa44031df5eb6e41690457bea7fe72e9bb47c0 Date: Wed, 28 Sep 2011 01:04:48 +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: d37887e509cc207b801fcbe76346e2a3 commit: 0eaa44031df5eb6e41690457bea7fe72e9bb47c0 Author: Magnus Granberg gentoo org> AuthorDate: Wed Sep 28 01:04:35 2011 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Wed Sep 28 01:04:35 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/zorry.git;a=3D= commit;h=3D0eaa4403 remove prints --- gobs/pym/build_log.py | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/gobs/pym/build_log.py b/gobs/pym/build_log.py index 6539b37..2656732 100644 --- a/gobs/pym/build_log.py +++ b/gobs/pym/build_log.py @@ -49,25 +49,19 @@ class gobs_buildlog(object): =20 def search_info(self, textline, error_log_list): if re.search(" * Package:", textline): - print('Package') error_log_list.append(textline) if re.search(" * Repository:", textline): - print('Repository') error_log_list.append(textline) if re.search(" * Maintainer:", textline): error_log_list.append(textline) - print('Maintainer') if re.search(" * USE:", textline): error_log_list.append(textline) - print('USE') if re.search(" * FEATURES:", textline): error_log_list.append(textline) - print('FEATURES') return error_log_list =20 def search_error(self, textline, error_log_list, sum_build_log_list, i)= : if re.search("Error 1", textline): - print('Error') x =3D i - 20 endline =3D True error_log_list.append(".....\n") @@ -79,7 +73,6 @@ class gobs_buildlog(object): else: x =3D x +1 if re.search(" * ERROR:", textline): - print('ERROR') x =3D i endline=3D True field =3D textline.split(" ") @@ -93,7 +86,6 @@ class gobs_buildlog(object): else: x =3D x +1 if re.search("configure: error:", textline): - print('configure: error:') x =3D i - 4 endline =3D True error_log_list.append(".....\n") @@ -108,7 +100,6 @@ class gobs_buildlog(object): =20 def search_qa(self, textline, qa_error_list, error_log_list,i): if re.search(" * QA Notice:", textline): - print('QA Notice') x =3D i qa_error_list.append(self._logfile_text[x]) endline=3D True @@ -452,9 +443,7 @@ class gobs_buildlog(object): if sum_build_log_list !=3D []: for sum_log_line in sum_build_log_list: summary_error =3D summary_error + " " + sum_log_line - print('summary_error', summary_error) build_log_dict['logfilename'] =3D re.sub("\/var\/log\/portage\/", "", = self._mysettings.get("PORTAGE_LOG_FILE")) - print(self._build_dict['queue_id'], build_error, summary_error, build_= log_dict['logfilename'], build_log_dict) if self._build_dict['queue_id'] is None: build_id =3D self.add_new_ebuild_buildlog(build_error, summary_error,= build_log_dict) else: