summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-05 05:44:20 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-05 05:44:20 +0000
commit87ec55665ac0890f13864cc678c950ce4cd64c13 (patch)
tree66badf7419e4e75c9324b1ad7c3220b69de39224
parentAdd tests for use_reduce() and paren_reduce(). (diff)
downloadportage-idfetch-87ec55665ac0890f13864cc678c950ce4cd64c13.tar.gz
portage-idfetch-87ec55665ac0890f13864cc678c950ce4cd64c13.tar.bz2
portage-idfetch-87ec55665ac0890f13864cc678c950ce4cd64c13.zip
Make config.categories a sorted tuple so that portdbapi can reuse it.
svn path=/main/trunk/; revision=12760
-rw-r--r--pym/portage/__init__.py3
-rw-r--r--pym/portage/dbapi/porttree.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 26860de8..c60f7eb3 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -1607,7 +1607,8 @@ class config(object):
#getting categories from an external file now
categories = [grabfile(os.path.join(x, "categories")) for x in locations]
- self.categories = stack_lists(categories, incremental=1)
+ self.categories = tuple(sorted(
+ stack_lists(categories, incremental=1)))
del categories
archlist = [grabfile(os.path.join(x, "arch.list")) for x in locations]
diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index 7ac281e8..57bdd998 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -100,7 +100,7 @@ class portdbapi(dbapi):
from portage import settings
self.mysettings = config(clone=settings)
self._iuse_implicit = self.mysettings._get_implicit_iuse()
- self._categories = tuple(sorted(set(self.mysettings.categories)))
+ self._categories = self.mysettings.categories
# This is strictly for use in aux_get() doebuild calls when metadata
# is generated by the depend phase. It's safest to use a clone for
# this purpose because doebuild makes many changes to the config