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 64CF313877A for ; Mon, 16 Jun 2014 15:46:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D95CE0DD5; Mon, 16 Jun 2014 15:46:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3B923E0DC5 for ; Mon, 16 Jun 2014 15:46:33 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 64FA3340036 for ; Mon, 16 Jun 2014 15:46:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 85FCE187EC for ; Mon, 16 Jun 2014 15:46:30 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1402933017.2d86667f20316a83addfd0426b84ab8ca6e1af42.dol-sen@gentoo> Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/repository/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/repository/config.py X-VCS-Directories: pym/portage/repository/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 2d86667f20316a83addfd0426b84ab8ca6e1af42 X-VCS-Branch: plugin-sync Date: Mon, 16 Jun 2014 15:46:30 +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: f06a8bfe-aba8-48d6-9e88-10a895bffd58 X-Archives-Hash: f513e7cfd7049b42f341b256b553a457 commit: 2d86667f20316a83addfd0426b84ab8ca6e1af42 Author: Brian Dolbec gentoo org> AuthorDate: Sat May 10 18:53:37 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Mon Jun 16 15:36:57 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=2d86667f repository/config.py: Add auto_sync to the override-able variables --- pym/portage/repository/config.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index bb54b57..10bd477 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -462,8 +462,10 @@ class RepoConfigLoader(object): if repos_conf_opts is not None: # Selectively copy only the attributes which # repos.conf is allowed to override. - for k in ('aliases', 'eclass_overrides', 'force', 'masters', - 'priority', 'sync_cvs_repo', 'sync_type', 'sync_uri'): + for k in ('aliases', 'auto_sync', 'eclass_overrides', + 'force', 'masters', 'priority', 'sync_cvs_repo', + 'sync_type', 'sync_uri', + ): v = getattr(repos_conf_opts, k, None) if v is not None: setattr(repo, k, v)