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 BFF471389E2 for ; Thu, 4 Dec 2014 20:16:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE80BE0930; Thu, 4 Dec 2014 20:16:16 +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 ACB71E091A for ; Thu, 4 Dec 2014 20:16:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2C033405B2 for ; Thu, 4 Dec 2014 20:16:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4ED93B94C for ; Thu, 4 Dec 2014 20:16:11 +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: <1417722995.567e447ae9290a15db37ac6e55f5ac2f5b728ab0.dol-sen@gentoo> Subject: [gentoo-commits] proj/portage:master 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: 567e447ae9290a15db37ac6e55f5ac2f5b728ab0 X-VCS-Branch: master Date: Thu, 4 Dec 2014 20:16:11 +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: f0b598cc-bca5-4844-8df0-5d6c16192928 X-Archives-Hash: 6de2ad13edfaa4aaa7d65ff0c6d1f444 Message-ID: <20141204201611.J-52yoT0quBruJaX-kAI7Air-CbvxvK1HVA9sXCT3Vg@z> commit: 567e447ae9290a15db37ac6e55f5ac2f5b728ab0 Author: Zac Medico gentoo org> AuthorDate: Wed Oct 22 11:21:04 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Thu Dec 4 19:56:35 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=567e447a RepoConfigLoader.config_string: include auto-sync --- pym/portage/repository/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index 2367e26..d37ce6a 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -913,7 +913,9 @@ class RepoConfigLoader(object): return repo_name in self.prepos def config_string(self): - str_or_int_keys = ("format", "location", "main_repo", "priority", "sync_cvs_repo", "sync_type", "sync_uri") + str_or_int_keys = ("auto_sync", "format", "location", + "main_repo", "priority", "sync_cvs_repo", + "sync_type", "sync_uri") str_tuple_keys = ("aliases", "eclass_overrides", "force") repo_config_tuple_keys = ("masters",) keys = str_or_int_keys + str_tuple_keys + repo_config_tuple_keys