From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 34256138010 for ; Sat, 1 Sep 2012 04:29:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2D3FE04ED; Sat, 1 Sep 2012 04:29:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C3313E04ED for ; Sat, 1 Sep 2012 04:29:38 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37FAF33D933 for ; Sat, 1 Sep 2012 04:29:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E6852E543C for ; Sat, 1 Sep 2012 04:29:36 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1346473764.9f1d501a12514c62efb8cd4afea7a68aaf9b5129.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/_sets/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/_sets/__init__.py X-VCS-Directories: pym/portage/_sets/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 9f1d501a12514c62efb8cd4afea7a68aaf9b5129 X-VCS-Branch: master Date: Sat, 1 Sep 2012 04: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 X-Archives-Salt: fc0089cb-59d2-4335-87a4-f2932dd58638 X-Archives-Hash: f4d0592651c9b2a864a6eb017fae1df7 commit: 9f1d501a12514c62efb8cd4afea7a68aaf9b5129 Author: Zac Medico gentoo org> AuthorDate: Sat Sep 1 04:29:24 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Sep 1 04:29:24 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9f1d501a Enable @module-rebuild for 2.1 branch. --- pym/portage/_sets/__init__.py | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/pym/portage/_sets/__init__.py b/pym/portage/_sets/__init__.py index c3b590e..3e6b0d8 100644 --- a/pym/portage/_sets/__init__.py +++ b/pym/portage/_sets/__init__.py @@ -131,6 +131,11 @@ class SetConfig(object): parser.set("usersets", "directory", "%(PORTAGE_CONFIGROOT)setc/portage/sets") parser.set("usersets", "world-candidate", "true") + parser.remove_section("module-rebuild") + parser.add_section("module-rebuild") + parser.set("module-rebuild", "class", "portage.sets.dbapi.OwnerSet") + parser.set("module-rebuild", "files", "/lib/modules") + def update(self, setname, options): parser = self._parser self.errors = []