disable warnings about "missing repo_name entries" for the stable
branch.
if "--quiet" not in myopts:
portage.deprecated_profile_check(settings=settings)
- repo_name_check(trees)
+ if portage.const._ENABLE_REPO_NAME_WARN:
+ # Bug #248603 - Disable warnings about missing
+ # repo_name entries for stable branch.
+ repo_name_check(trees)
repo_name_duplicate_check(trees)
config_protect_check(trees)
check_procfs()
# between branches.
_ENABLE_DYN_LINK_MAP = True
_ENABLE_PRESERVE_LIBS = True
+_ENABLE_REPO_NAME_WARN = True
_ENABLE_SET_CONFIG = True