commit: 01de85fad92fc06bf39421aff47a54e70346c6d9
Author: André Erdmann <dywi <AT> mailerd <DOT> de>
AuthorDate: Mon Jun 25 18:06:19 2012 +0000
Commit: André Erdmann <dywi <AT> mailerd <DOT> de>
CommitDate: Mon Jun 25 18:06:19 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=01de85fa
add repo-specific options to the config entry map
modified: roverlay/config/entrymap.py
---
roverlay/config/entrymap.py | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/roverlay/config/entrymap.py b/roverlay/config/entrymap.py
index 6e206e5..966ac2d 100644
--- a/roverlay/config/entrymap.py
+++ b/roverlay/config/entrymap.py
@@ -68,6 +68,10 @@ CONFIG_ENTRY_MAP = dict (
distfiles_dir = dict (
value_type = 'fs_dir',
),
+ rsync_bwlimit = dict (
+ path = [ 'rsync_bwlimit' ],
+ value_type = 'int',
+ ),
ebuild_prog = dict (
path = [ 'TOOLS', 'ebuild_prog' ],
value_type = 'fs_path',
@@ -77,6 +81,10 @@ CONFIG_ENTRY_MAP = dict (
value_type = 'list:fs_abs',
),
simple_rules_file = 'simple_rules_files',
- remote = 'repo',
- repo = '',
+ repo_config = 'repo_config_files',
+ repo_config_file = 'repo_config_files',
+ repo_config_files = dict (
+ path = [ 'REPO', 'config_files' ],
+ value_type = 'slist:fs_abs',
+ ),
)
|