From: Zac Medico Date: Tue, 4 Sep 2012 20:25:28 +0000 (-0700) Subject: Enable @live-rebuild for 2.1 branch. X-Git-Tag: v2.2.0_alpha125~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3cb75111668cbe9bdfc16272afda6ebf5c297d83;p=portage.git Enable @live-rebuild for 2.1 branch. --- diff --git a/pym/portage/_sets/__init__.py b/pym/portage/_sets/__init__.py index 3e6b0d85e..554c6ae0d 100644 --- a/pym/portage/_sets/__init__.py +++ b/pym/portage/_sets/__init__.py @@ -131,6 +131,12 @@ class SetConfig(object): parser.set("usersets", "directory", "%(PORTAGE_CONFIGROOT)setc/portage/sets") parser.set("usersets", "world-candidate", "true") + parser.remove_section("live-rebuild") + parser.add_section("live-rebuild") + parser.set("live-rebuild", "class", "portage.sets.dbapi.VariableSet") + parser.set("live-rebuild", "variable", "INHERITED") + parser.set("live-rebuild", "includes", "bzr cvs darcs git git-2 mercurial subversion tla") + parser.remove_section("module-rebuild") parser.add_section("module-rebuild") parser.set("module-rebuild", "class", "portage.sets.dbapi.OwnerSet")