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 AFB731381F3 for ; Wed, 24 Apr 2013 00:37:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56495E0923; Wed, 24 Apr 2013 00:37:08 +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 E79DBE0923 for ; Wed, 24 Apr 2013 00:37:07 +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 0408E33BE0E for ; Wed, 24 Apr 2013 00:37:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8E72FE408C for ; Wed, 24 Apr 2013 00:37:05 +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: <1366763747.4c7d06af34ec8900b51e2593dd3de455862a1e3d.zorry@gentoo> Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/ X-VCS-Repository: dev/zorry X-VCS-Files: gobs/pym/build_job.py X-VCS-Directories: gobs/pym/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 4c7d06af34ec8900b51e2593dd3de455862a1e3d X-VCS-Branch: master Date: Wed, 24 Apr 2013 00:37:05 +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: f76dccec-1294-4ae8-93e2-841383cb9e5e X-Archives-Hash: aa26264ef5c0f7fe48deb82c2e07c2ab commit: 4c7d06af34ec8900b51e2593dd3de455862a1e3d Author: Magnus Granberg gentoo org> AuthorDate: Wed Apr 24 00:35:47 2013 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Wed Apr 24 00:35:47 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/zorry.git;a=commit;h=4c7d06af call do_depclean instead of main_depclean --- gobs/pym/build_job.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gobs/pym/build_job.py b/gobs/pym/build_job.py index 6171ef0..0c51d50 100644 --- a/gobs/pym/build_job.py +++ b/gobs/pym/build_job.py @@ -7,7 +7,7 @@ import sys import signal from gobs.manifest import gobs_manifest -from gobs.depclean import main_depclean +from gobs.depclean import do_depclean from gobs.flags import gobs_use_flags from portage import _encodings from portage import _unicode_decode @@ -107,7 +107,7 @@ class build_job_action(object): build_fail = emerge_main(argscmd, build_dict) # Run depclean if '--depclean' in build_dict['emerge_options'] and not '--nodepclean' in build_dict['emerge_options']: - depclean_fail = main_depclean() + depclean_fail = do_depclean() try: os.remove("/etc/portage/package.use/99_autounmask") with open("/etc/portage/package.use/99_autounmask", "a") as f: