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 85FB413877A for ; Mon, 16 Jun 2014 22:45:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24328E0CB5; Mon, 16 Jun 2014 22:45:12 +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 21F53E0BD8 for ; Mon, 16 Jun 2014 22:45:10 +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 26D743400E5 for ; Mon, 16 Jun 2014 22:45:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id E77641880C for ; Mon, 16 Jun 2014 22:45:06 +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: <1402958655.0de6d291646b3a8fca394f5eb557f0bfb47e4f58.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: 0de6d291646b3a8fca394f5eb557f0bfb47e4f58 X-VCS-Branch: plugin-sync Date: Mon, 16 Jun 2014 22:45:06 +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: 086c905d-f707-44f0-8a63-66e64b6f7136 X-Archives-Hash: 03bd667a8540e30b288e3b862f3dd3da commit: 0de6d291646b3a8fca394f5eb557f0bfb47e4f58 Author: Brian Dolbec gentoo org> AuthorDate: Sat May 10 18:53:37 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Mon Jun 16 22:44:15 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=0de6d291 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)