summaryrefslogtreecommitdiffstats
path: root/pym/portage/repository
diff options
context:
space:
mode:
authorBrian Harring <ferringb@chromium.org>2011-10-13 16:26:03 -0700
committerZac Medico <zmedico@gentoo.org>2011-10-13 17:19:26 -0700
commitd4ea29bf6a3ce35d49e0f54f9173e3a6e42da2d6 (patch)
treec7e1a577542f7441a5d7591df538b336402b0e90 /pym/portage/repository
parentbf28492ed8ccc7fd3679a8e5433101a0945d417d (diff)
downloadportage-d4ea29bf6a3ce35d49e0f54f9173e3a6e42da2d6.tar.gz
portage-d4ea29bf6a3ce35d49e0f54f9173e3a6e42da2d6.tar.bz2
portage-d4ea29bf6a3ce35d49e0f54f9173e3a6e42da2d6.zip
layout.conf: make the pregenerated cache format controllable
Controllable via 'cache-format', currently it supports only one cache; 'pms', and defaults to it. If an unsupported cache-format is specified, the cache is disabled. If pms is specified and metadata/cache directory doesn't exist, the cache is disabled. Finally, this rips out the best module support for locally overriding the cache format used for pregenerated caches; this functionality made zero sense (upstream determines the format, we use what is available).
Diffstat (limited to 'pym/portage/repository')
-rw-r--r--pym/portage/repository/config.py19
1 files changed, 18 insertions, 1 deletions
diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py
index 2490b65da..9a5473820 100644
--- a/pym/portage/repository/config.py
+++ b/pym/portage/repository/config.py
@@ -48,7 +48,7 @@ class RepoConfig(object):
'eclass_overrides', 'eclass_locations', 'format', 'location',
'main_repo', 'manifest_hashes', 'masters', 'missing_repo_name',
'name', 'priority', 'sign_manifest', 'sync', 'thin_manifest',
- 'user_location')
+ 'user_location', 'cache_format')
def __init__(self, name, repo_opts):
"""Build a RepoConfig with options in repo_opts
@@ -126,6 +126,16 @@ class RepoConfig(object):
self.create_manifest = True
self.disable_manifest = False
self.manifest_hashes = None
+ self.cache_format = None
+
+ def get_pregenerated_cache(self, auxdbkeys, readonly=True):
+ if self.cache_format is None:
+ return None
+ elif self.cache_format == 'pms':
+ from portage.cache.metadata import database
+ return database(self.location, 'metadata/cache',
+ auxdbkeys, readonly=readonly)
+ return None
def load_manifest(self, *args, **kwds):
kwds['thin'] = self.thin_manifest
@@ -377,6 +387,13 @@ class RepoConfigLoader(object):
repo.create_manifest = manifest_policy != 'false'
repo.disable_manifest = manifest_policy == 'false'
+ # for compatibility w/ PMS, fallback to pms; but also check if the
+ # cache exists or not.
+ repo.cache_format = layout_data.get('cache-format', 'pms').lower()
+ if repo.cache_format == 'pms' and not os.path.isdir(
+ os.path.join(repo.location, 'metadata', 'cache')):
+ repo.cache_format = None
+
manifest_hashes = layout_data.get('manifest-hashes')
if manifest_hashes is not None:
manifest_hashes = frozenset(manifest_hashes.upper().split())