Gentoo Archives: gentoo-commits

From: "André Erdmann" <dywi@×××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/config/
Date: Mon, 25 Jun 2012 18:19:59
Message-Id: 1340647579.01de85fad92fc06bf39421aff47a54e70346c6d9.dywi@gentoo
1 commit: 01de85fad92fc06bf39421aff47a54e70346c6d9
2 Author: André Erdmann <dywi <AT> mailerd <DOT> de>
3 AuthorDate: Mon Jun 25 18:06:19 2012 +0000
4 Commit: André Erdmann <dywi <AT> mailerd <DOT> de>
5 CommitDate: Mon Jun 25 18:06:19 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=01de85fa
7
8 add repo-specific options to the config entry map
9
10 modified: roverlay/config/entrymap.py
11
12 ---
13 roverlay/config/entrymap.py | 12 ++++++++++--
14 1 files changed, 10 insertions(+), 2 deletions(-)
15
16 diff --git a/roverlay/config/entrymap.py b/roverlay/config/entrymap.py
17 index 6e206e5..966ac2d 100644
18 --- a/roverlay/config/entrymap.py
19 +++ b/roverlay/config/entrymap.py
20 @@ -68,6 +68,10 @@ CONFIG_ENTRY_MAP = dict (
21 distfiles_dir = dict (
22 value_type = 'fs_dir',
23 ),
24 + rsync_bwlimit = dict (
25 + path = [ 'rsync_bwlimit' ],
26 + value_type = 'int',
27 + ),
28 ebuild_prog = dict (
29 path = [ 'TOOLS', 'ebuild_prog' ],
30 value_type = 'fs_path',
31 @@ -77,6 +81,10 @@ CONFIG_ENTRY_MAP = dict (
32 value_type = 'list:fs_abs',
33 ),
34 simple_rules_file = 'simple_rules_files',
35 - remote = 'repo',
36 - repo = '',
37 + repo_config = 'repo_config_files',
38 + repo_config_file = 'repo_config_files',
39 + repo_config_files = dict (
40 + path = [ 'REPO', 'config_files' ],
41 + value_type = 'slist:fs_abs',
42 + ),
43 )