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
|
# module setup_win_common.py
"""A module for reading the information common to all Windows setups.
Exports read and get_definitions.
"""
import os
PATH = os.path.join('buildconfig', 'Setup_Win_Common.in')
class Definition:
def __init__(self, name, value):
self.name = name
self.value = value
def read():
"""Return the contents of the Windows Common Setup as a string"""
with open(PATH) as setup_in:
return setup_in.read()
def get_definitions():
"""Return a list of definitions in the Windows Common Setup
Each macro definition object has a 'name' and 'value' attribute.
"""
import re
deps = []
match = re.compile(r'([a-zA-Z0-9_]+) += +(.+)$').match
with open(PATH) as setup_in:
for line in setup_in:
m = match(line)
if m is not None:
deps.append(Definition(m.group(1), m.group(2)))
return deps
__all__= ['read', 'get_definitions']
|