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 B340813881C for ; Thu, 24 Sep 2015 19:54:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F6FB21C071; Thu, 24 Sep 2015 19:54: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 DDBA021C071 for ; Thu, 24 Sep 2015 19:54:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9CA0C3406DD for ; Thu, 24 Sep 2015 19:54:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A2831F5 for ; Thu, 24 Sep 2015 19:54:26 +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: <1443123964.cda13bc9bb42ae1c91b317711365573a2d3695f3.dolsen@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: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: cda13bc9bb42ae1c91b317711365573a2d3695f3 X-VCS-Branch: master Date: Thu, 24 Sep 2015 19:54:26 +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: 738c129c-dcc1-4b73-a540-f3e07b21aaee X-Archives-Hash: eaa243771494c67fc8ae92f1bd2ffdb3 commit: cda13bc9bb42ae1c91b317711365573a2d3695f3 Author: Brian Dolbec gentoo org> AuthorDate: Thu Sep 24 19:44:54 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Sep 24 19:46:04 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=cda13bc9 repository/config.py: Fix propogation of module_specific_options (bug 561240) module_specific_options were being read in and set correctly, but, module_specific_options were not being copied over in _add_repositories(). This is a left-over from the PORTDIR_OVERLAY setting we intend to deprecate. This change copies all the options in one shot. X-Gentoo Bug: 561240 X-Gentoo bug Url: https://bugs.gentoo.org/show_bug.cgi?id=561240 X-Gentoo Title: sys-apps/portage-2.2.21 ignores PORTAGE_RSYNC_EXTRA_OPTS pym/portage/repository/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index f80bee6..a90a994 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -508,7 +508,7 @@ class RepoConfigLoader(object): 'force', 'masters', 'priority', 'sync_depth', 'sync_type', 'sync_umask', 'sync_uri', 'sync_user', - ) + tuple(portage.sync.module_specific_options(repo)): + 'module_specific_options'): v = getattr(repos_conf_opts, k, None) if v is not None: setattr(repo, k, v)