UBUNTU: [Packaging] annotations: Handle single-line annoation rules

The old annotations file allowed single-line rules such as:
CONFIG_FOO  policy<'amd64': 'n'> note<LP: #123456>

The new annotations parser doesn't support that, so add it.

Signed-off-by: Juerg Haefliger <juerg.haefliger@canonical.com>
Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
This commit is contained in:
Juerg Haefliger
2023-02-06 08:14:47 +01:00
committed by Paolo Pisati
parent a7369177b4
commit 0c9146f650
+15 -11
View File
@@ -56,8 +56,8 @@ class Annotation(Config):
# Convert multiple spaces to single space to simplifly parsing
data = re.sub(r' *', ' ', data)
# Handle includes (recursively)
for line in data.splitlines():
# Handle includes (recursively)
m = re.match(r'^include\s+"?([^"]*)"?', line)
if m:
self.include.append(m.group(1))
@@ -65,24 +65,28 @@ class Annotation(Config):
include_data = self._load(include_fname)
self._parse_body(include_data)
else:
# Skip empty, non-policy and non-note lines
if re.match('.* policy<', line) or re.match('.* note<', line):
# Handle policy and note lines
if re.match(r'.* (policy|note)<', line):
try:
# Parse single policy or note rule
conf = line.split(' ')[0]
if conf in self.config:
entry = self.config[conf]
else:
entry = {'policy': {}}
m = re.match(r'.*policy<(.*)>', line)
match = False
m = re.match(r'.* policy<(.*?)>', line)
if m:
match = True
entry['policy'] |= literal_eval(m.group(1))
else:
m = re.match(r'.*note<(.*?)>', line)
if m:
entry['note'] = "'" + m.group(1).replace("'", '') + "'"
else:
raise Exception('syntax error')
m = re.match(r'.* note<(.*?)>', line)
if m:
match = True
entry['note'] = "'" + m.group(1).replace("'", '') + "'"
if not match:
raise Exception('syntax error')
self.config[conf] = entry
except Exception as e:
raise Exception(str(e) + f', line = {line}')