Lines 95-101
class Caches(object):
Link Here
|
95 |
kws = set() |
95 |
kws = set() |
96 |
for r in self.dbapi.porttrees: |
96 |
for r in self.dbapi.porttrees: |
97 |
kws.update(grabfile(os.path.join(r, 'profiles', 'arch.list'))) |
97 |
kws.update(grabfile(os.path.join(r, 'profiles', 'arch.list'))) |
98 |
kws.update(['~%s' % x for x in kws], ('*', '**')) |
98 |
kws.update(['~%s' % x for x in kws], ('*', '**', '~*')) |
99 |
|
99 |
|
100 |
# and the ** special keyword |
100 |
# and the ** special keyword |
101 |
self.cache[None] = frozenset(kws) |
101 |
self.cache[None] = frozenset(kws) |