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 1RIaLo-0006sT-IQ for garchives@archives.gentoo.org; Tue, 25 Oct 2011 06:19:05 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B73521C026; Tue, 25 Oct 2011 06:18:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D11A421C026 for ; Tue, 25 Oct 2011 06:18:55 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B84661B400E for ; Tue, 25 Oct 2011 06:18:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1DB6880042 for ; Tue, 25 Oct 2011 06:18:54 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/EbuildFetchonly.py pym/_emerge/EbuildMetadataPhase.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: f38b20284d42b046b771510583a27cc05e3846ed Date: Tue, 25 Oct 2011 06:18:54 +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: 08934ef5b6deb0e32ed42bb6716b27be commit: f38b20284d42b046b771510583a27cc05e3846ed Author: Zac Medico gentoo org> AuthorDate: Tue Oct 25 06:18:42 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Oct 25 06:18:42 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Df38b2028 Remove unused root parameters from doebuild calls --- pym/_emerge/EbuildFetchonly.py | 4 ++-- pym/_emerge/EbuildMetadataPhase.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/_emerge/EbuildFetchonly.py b/pym/_emerge/EbuildFetchonly= .py index b898971..d0f954c 100644 --- a/pym/_emerge/EbuildFetchonly.py +++ b/pym/_emerge/EbuildFetchonly.py @@ -1,4 +1,4 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 =20 from _emerge.SlotObject import SlotObject @@ -21,7 +21,7 @@ class EbuildFetchonly(SlotObject): debug =3D settings.get("PORTAGE_DEBUG") =3D=3D "1" =20 rval =3D portage.doebuild(ebuild_path, "fetch", - settings["ROOT"], settings, debug=3Ddebug, + settings=3Dsettings, debug=3Ddebug, listonly=3Dself.pretend, fetchonly=3D1, fetchall=3Dself.fetch_all, mydbapi=3Dportdb, tree=3D"porttree") =20 diff --git a/pym/_emerge/EbuildMetadataPhase.py b/pym/_emerge/EbuildMetad= ataPhase.py index aa26e19..bf562c5 100644 --- a/pym/_emerge/EbuildMetadataPhase.py +++ b/pym/_emerge/EbuildMetadataPhase.py @@ -91,7 +91,7 @@ class EbuildMetadataPhase(SubProcess): self._registered =3D True =20 retval =3D portage.doebuild(ebuild_path, "depend", - settings["ROOT"], settings, debug, + settings=3Dsettings, debug=3Ddebug, mydbapi=3Dself.portdb, tree=3D"porttree", fd_pipes=3Dfd_pipes, returnpid=3DTrue) =20