From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Retyb-0000W8-1v for garchives@archives.gentoo.org; Sun, 25 Dec 2011 19:43:26 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1FC321C05D; Sun, 25 Dec 2011 19:43:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A16CD21C05D for ; Sun, 25 Dec 2011 19:43:13 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 277A51B400B for ; Sun, 25 Dec 2011 19:43:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 5579380043 for ; Sun, 25 Dec 2011 19:43:12 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <4cfa78b9406d9a8f94b3eae23631b2bb430bc533.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: 4cfa78b9406d9a8f94b3eae23631b2bb430bc533 Date: Sun, 25 Dec 2011 19:43:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 7d87138e-f5ec-4bf3-b062-618928bf1ee9 X-Archives-Hash: 72fbd477fc189f158066c753dbe9f234 commit: 4cfa78b9406d9a8f94b3eae23631b2bb430bc533 Author: Arfrever Frehtes Taifersar Arahesis Gentoo Org> AuthorDate: Sun Dec 25 19:40:40 2011 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gentoo org> CommitDate: Sun Dec 25 19:40:40 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D4cfa78b9 portage.repository.config.RepoConfigLoader: Rename _add_overlays() to _add_repositories(). --- pym/portage/repository/config.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/co= nfig.py index 0b99e1b..f98b9b7 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -290,7 +290,7 @@ class RepoConfigLoader(object): """Loads and store config of several repositories, loaded from PORTDIR_= OVERLAY or repos.conf""" =20 @staticmethod - def _add_overlays(portdir, portdir_overlay, prepos, ignored_map, ignore= d_location_map): + def _add_repositories(portdir, portdir_overlay, prepos, ignored_map, ig= nored_location_map): """Add overlays in PORTDIR_OVERLAY as repositories""" overlays =3D [] if portdir: @@ -427,7 +427,7 @@ class RepoConfigLoader(object): =20 # If PORTDIR_OVERLAY contains a repo with the same repo_name as # PORTDIR, then PORTDIR is overridden. - portdir =3D self._add_overlays(portdir, portdir_overlay, prepos, + portdir =3D self._add_repositories(portdir, portdir_overlay, prepos, ignored_map, ignored_location_map) if portdir and portdir.strip(): portdir =3D os.path.realpath(portdir)