commit: 87b514aee95a3bc956a97dabc8c19bfac2f4d5cb
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 30 03:34:43 2014 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Sun Mar 30 03:34:43 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=87b514ae
Use the new validate_config system
---
pym/portage/repository/config.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py
index da9b2fc..b4b3aee 100644
--- a/pym/portage/repository/config.py
+++ b/pym/portage/repository/config.py
@@ -556,6 +556,9 @@ class RepoConfigLoader(object):
repo = RepoConfig(sname, optdict,
local_config=local_config)
+ # Perform repos.conf sync variable validation
+ portage.sync.validate_config(repo)
+
# For backward compatibility with locations set via
PORTDIR and
# PORTDIR_OVERLAY, delay validation of the location and
repo.name
# until after PORTDIR and PORTDIR_OVERLAY have been
processed.