Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/package/ebuild/
Date: Sat, 31 Jan 2015 21:28:35
Message-Id: 1422739656.c284153bb84233cea1a0f22c41213e07d6cc578f.mgorny@gentoo
1 commit: c284153bb84233cea1a0f22c41213e07d6cc578f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 25 11:42:02 2015 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 31 21:27:36 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=c284153b
7
8 Allow IPC & networking during pkg_config & pkg_info
9
10 ---
11 pym/portage/package/ebuild/doebuild.py | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14 diff --git a/pym/portage/package/ebuild/doebuild.py b/pym/portage/package/ebuild/doebuild.py
15 index 5dadb7f..f7561fe 100644
16 --- a/pym/portage/package/ebuild/doebuild.py
17 +++ b/pym/portage/package/ebuild/doebuild.py
18 @@ -85,7 +85,7 @@ _unsandboxed_phases = frozenset([
19
20 # phases in which IPC with host is allowed
21 _ipc_phases = frozenset([
22 - "setup", "pretend",
23 + "setup", "pretend", "config", "info",
24 "preinst", "postinst", "prerm", "postrm",
25 ])