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 109EB1384B4 for ; Mon, 23 Nov 2015 20:41:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D95F621C001; Mon, 23 Nov 2015 20:41:41 +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 7BCB421C001 for ; Mon, 23 Nov 2015 20:41:41 +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 42E70340685 for ; Mon, 23 Nov 2015 20:41:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E565A95 for ; Mon, 23 Nov 2015 20:41:36 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <1448311075.c1a2714c5e5d6d3fdda5594c6e5997e769552185.arfrever@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: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: c1a2714c5e5d6d3fdda5594c6e5997e769552185 X-VCS-Branch: master Date: Mon, 23 Nov 2015 20:41: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: bfc1243b-0a6b-401c-9926-c3a5e982acc5 X-Archives-Hash: 78b47194861abacad9b85d342db0fb7e commit: c1a2714c5e5d6d3fdda5594c6e5997e769552185 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Mon Nov 23 20:37:55 2015 +0000 Commit: Arfrever Frehtes Taifersar Arahesis apache org> CommitDate: Mon Nov 23 20:37:55 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c1a2714c portage.repository.config.RepoConfigLoader._parse(): Delete unused ignored_map and ignored_location_map parametres. pym/portage/repository/config.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index ffb4544..2ba03f0 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -547,7 +547,7 @@ class RepoConfigLoader(object): return portdir @staticmethod - def _parse(paths, prepos, ignored_map, ignored_location_map, local_config, portdir, default_opts): + def _parse(paths, prepos, local_config, portdir, default_opts): """Parse files in paths to load config""" parser = SafeConfigParser(defaults=default_opts) @@ -644,9 +644,7 @@ class RepoConfigLoader(object): settings.get("PORTAGE_RSYNC_EXTRA_OPTS", None) try: - self._parse(paths, prepos, ignored_map, - ignored_location_map, settings.local_config, - portdir, default_opts) + self._parse(paths, prepos, settings.local_config, portdir, default_opts) except ConfigParserError as e: writemsg( _("!!! Error while reading repo config file: %s\n") % e, @@ -659,8 +657,6 @@ class RepoConfigLoader(object): {}, local_config=settings.local_config) location_map.clear() treemap.clear() - ignored_map.clear() - ignored_location_map.clear() default_portdir = os.path.join(os.sep, settings['EPREFIX'].lstrip(os.sep), 'usr', 'portage')