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 9FA3B1381F3 for ; Fri, 14 Dec 2012 14:17:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E17C21C017; Fri, 14 Dec 2012 14:17:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CF0CE21C017 for ; Fri, 14 Dec 2012 14:17:26 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B2E4E33DC83 for ; Fri, 14 Dec 2012 14:17:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3BE50E543C for ; Fri, 14 Dec 2012 14:17:23 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1355494628.221c532a002a3d727b4b44ebc9c5816b16c69f4a.zorry@gentoo> Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/ X-VCS-Repository: dev/zorry X-VCS-Files: gobs/pym/Scheduler.py X-VCS-Directories: gobs/pym/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 221c532a002a3d727b4b44ebc9c5816b16c69f4a X-VCS-Branch: master Date: Fri, 14 Dec 2012 14:17:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2614abf8-170f-4fe7-b313-94a061438cbb X-Archives-Hash: 4e4a9b21b0345424545020d406bbf6e9 commit: 221c532a002a3d727b4b44ebc9c5816b16c69f4a Author: Magnus Granberg gentoo org> AuthorDate: Fri Dec 14 14:17:08 2012 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Fri Dec 14 14:17:08 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/zorry.git;a=commit;h=221c532a fix missing add_buildlog_main() --- gobs/pym/Scheduler.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/gobs/pym/Scheduler.py b/gobs/pym/Scheduler.py index 9614503..8e5c6ba 100644 --- a/gobs/pym/Scheduler.py +++ b/gobs/pym/Scheduler.py @@ -1283,6 +1283,7 @@ class Scheduler(PollScheduler): self._pkg_cache.pop(pkg_to_replace, None) if pkg.installed: + add_buildlog_main(settings, pkg, trees) return # Call mtimedb.commit() after each merge so that @@ -1293,6 +1294,7 @@ class Scheduler(PollScheduler): if not mtimedb["resume"]["mergelist"]: del mtimedb["resume"] mtimedb.commit() + add_buildlog_main(settings, pkg, trees) def _build_exit(self, build): self._running_tasks.pop(id(build), None)