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 1Rat2Q-0008VW-SP for garchives@archives.gentoo.org; Wed, 14 Dec 2011 17:54:43 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A248921C139; Wed, 14 Dec 2011 17:54:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6DFE521C139 for ; Wed, 14 Dec 2011 17:54:35 +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 EA6D01B400F for ; Wed, 14 Dec 2011 17:54:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 4C8E98004A for ; Wed, 14 Dec 2011 17:54:33 +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: <85587655d47737be31415d36e8e6a0c9ff0f298f.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/__init__.py X-VCS-Directories: pym/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 85587655d47737be31415d36e8e6a0c9ff0f298f Date: Wed, 14 Dec 2011 17:54:33 +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: 3dda0236-65d0-4741-ad6d-955b93c0f2f7 X-Archives-Hash: b37fad925846344dc99e941288d18abb commit: 85587655d47737be31415d36e8e6a0c9ff0f298f Author: Zac Medico gentoo org> AuthorDate: Wed Dec 14 17:54:22 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Dec 14 17:54:22 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D85587655 create_trees: pass __PORTAGE_TEST_HARDLINK_LOCKS This allows testing of stage builds with __PORTAGE_TEST_HARDLINK_LOCKS set in the environment, since __PORTAGE_TEST_HARDLINK_LOCKS needs to propagate to childs processes for all ROOTs. --- pym/portage/__init__.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 339c64f..3495b96 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -522,7 +522,8 @@ def create_trees(config_root=3DNone, target_root=3DNo= ne, trees=3DNone, env=3DNone, clean_env =3D {} for k in ('PATH', 'PORTAGE_GRPNAME', 'PORTAGE_USERNAME', 'SSH_AGENT_PID', 'SSH_AUTH_SOCK', 'TERM', - 'ftp_proxy', 'http_proxy', 'no_proxy'): + 'ftp_proxy', 'http_proxy', 'no_proxy', + '__PORTAGE_TEST_HARDLINK_LOCKS'): v =3D settings.get(k) if v is not None: clean_env[k] =3D v