blob: 46cc324864cfb7e804805fa68e628cc37d156bd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
from debian_linux.config import ConfigParser, SchemaItemList
class Config(dict):
config_name = "defines"
top_schemas = {
'base': {
'packages': SchemaItemList(),
},
}
package_schemas = {
'base': {
'files': SchemaItemList(),
'support': SchemaItemList(),
}
}
def __init__(self):
self._read_base()
def _read_base(self):
config = ConfigParser(self.top_schemas)
config.read("debian/config/%s" % self.config_name)
packages = config['base',]['packages']
for section in iter(config):
real = (section[-1],) + section[:-1]
self[real] = config[section]
for package in packages:
self._read_package(package)
def _read_package(self, package):
config = ConfigParser(self.package_schemas)
config.read("debian/config/%s/%s" % (package, self.config_name))
for section in iter(config):
if len(section) > 1:
real = (section[-1], package, '_'.join(section[:-1]))
else:
real = (section[-1], package)
s = self.get(real, {})
s.update(config[section])
self[real] = s
|