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 1RbhDq-0000Zd-AD for garchives@archives.gentoo.org; Fri, 16 Dec 2011 23:29:50 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B5CE21C196; Fri, 16 Dec 2011 23:29:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D250A21C196 for ; Fri, 16 Dec 2011 23:29:37 +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 27E1C1B4047 for ; Fri, 16 Dec 2011 23:29:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 5649B8004A for ; Fri, 16 Dec 2011 23:29:36 +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/portage/tests/emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/tests/emerge/test_simple.py X-VCS-Directories: pym/portage/tests/emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: bbb61dae0317ddd49c7db550e87f5231d60fdb7e Date: Fri, 16 Dec 2011 23:29:36 +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: c121f61f-c296-4256-a5c6-206612d26948 X-Archives-Hash: d0bfe4bbc8b7d2b0329651643bd2e67f commit: bbb61dae0317ddd49c7db550e87f5231d60fdb7e Author: Zac Medico gentoo org> AuthorDate: Fri Dec 16 23:29:24 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Dec 16 23:29:24 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dbbb61dae tests/emerge: PORTAGE_GRPNAME/USERNAME make.conf --- pym/portage/tests/emerge/test_simple.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage/tests/emerge/test_simple.py b/pym/portage/tests/= emerge/test_simple.py index 8691950..28ac098 100644 --- a/pym/portage/tests/emerge/test_simple.py +++ b/pym/portage/tests/emerge/test_simple.py @@ -276,6 +276,8 @@ pkg_preinst() { make_conf =3D ( "FEATURES=3D\"%s\"\n" % (" ".join(features),), "PORTDIR=3D\"%s\"\n" % (portdir,), + "PORTAGE_GRPNAME=3D\"%s\"\n" % (os.environ["PORTAGE_GRPNAME"],), + "PORTAGE_USERNAME=3D\"%s\"\n" % (os.environ["PORTAGE_USERNAME"],), ) =20 path =3D os.environ.get("PATH") @@ -309,12 +311,10 @@ pkg_preinst() { "INFOPATH" : "", "PATH" : path, "PKGDIR" : pkgdir, - "PORTAGE_GRPNAME" : os.environ["PORTAGE_GRPNAME"], "PORTAGE_INST_GID" : str(portage.data.portage_gid), "PORTAGE_INST_UID" : str(portage.data.portage_uid), "PORTAGE_PYTHON" : portage_python, "PORTAGE_TMPDIR" : portage_tmpdir, - "PORTAGE_USERNAME" : os.environ["PORTAGE_USERNAME"], "PYTHONPATH" : pythonpath, } =20