conf = self.repositories.get_repo_for_location(x)
cache = self._pregen_auxdb[x] = self.metadbmodule(
x, "metadata/cache", filtered_auxdbkeys, readonly=True)
- cache.is_authoritative = conf.cache_is_authoritative
try:
cache.ec = self._repo_info[x].eclass_db
except AttributeError:
eapi = metadata.get('EAPI', '').strip()
if not eapi:
eapi = '0'
- if not (eapi[:1] == '-' and eapi_is_supported(eapi[1:])):
- if auxdb.is_authoritative or ( \
- emtime == metadata['_mtime_'] and \
- eclass_db.is_eclass_data_valid(metadata['_eclasses_'])):
- doregen = False
+ if not (eapi[:1] == '-' and eapi_is_supported(eapi[1:])) and \
+ emtime == metadata['_mtime_'] and \
+ eclass_db.is_eclass_data_valid(metadata['_eclasses_']):
+ doregen = False
if not doregen:
break
"""Stores config of one repository"""
__slots__ = ('aliases', 'allow_missing_manifest',
- 'cache_is_authoritative', 'create_manifest', 'disable_manifest',
+ 'create_manifest', 'disable_manifest',
'eclass_overrides', 'eclass_locations', 'format', 'location',
'main_repo', 'manifest_hashes', 'masters', 'missing_repo_name',
'name', 'priority', 'sign_manifest', 'sync', 'thin_manifest',
- 'trust_authoritative_cache', 'user_location')
+ 'user_location')
def __init__(self, name, repo_opts):
"""Build a RepoConfig with options in repo_opts
self.disable_manifest = False
self.manifest_hashes = None
- self.cache_is_authoritative = False
-
- trust_authoritative_cache = repo_opts.get('trust-authoritative-cache')
- if trust_authoritative_cache is not None:
- trust_authoritative_cache = trust_authoritative_cache.lower() == 'true'
- self.trust_authoritative_cache = trust_authoritative_cache
-
def load_manifest(self, *args, **kwds):
kwds['thin'] = self.thin_manifest
kwds['allow_missing'] = self.allow_missing_manifest
self.eclass_overrides = new_repo.eclass_overrides
if new_repo.masters is not None:
self.masters = new_repo.masters
- if new_repo.trust_authoritative_cache is not None:
- self.trust_authoritative_cache = new_repo.trust_authoritative_cache
if new_repo.name is not None:
self.name = new_repo.name
self.missing_repo_name = new_repo.missing_repo_name
if prepos['DEFAULT'].masters is not None:
default_repo_opts['masters'] = \
' '.join(prepos['DEFAULT'].masters)
- if prepos['DEFAULT'].trust_authoritative_cache is not None:
- if prepos['DEFAULT'].trust_authoritative_cache:
- default_repo_opts['trust-authoritative-cache'] = 'true'
- else:
- default_repo_opts['trust-authoritative-cache'] = 'false'
if overlays:
#overlay priority is negative because we want them to be looked before any other repo
if repo_conf_opts.masters is not None:
repo_opts['masters'] = \
' '.join(repo_conf_opts.masters)
- if repo_conf_opts.trust_authoritative_cache is not None:
- if repo_conf_opts.trust_authoritative_cache:
- repo_opts['trust-authoritative-cache'] = 'true'
- else:
- repo_opts['trust-authoritative-cache'] = 'false'
repo = RepoConfig(repo.name, repo_opts)
if repo.name in prepos:
DeprecationWarning)
repo.manifest_hashes = manifest_hashes
- repo.cache_is_authoritative = layout_data.get('authoritative-cache', 'false').lower() == 'true'
- if not repo.trust_authoritative_cache:
- repo.cache_is_authoritative = False
-
#Take aliases into account.
new_prepos = {}
for repo_name, repo in prepos.items():