File: read-config.py

package info (click to toggle)
fonts-montserrat 9.000-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 72,376 kB
  • sloc: python: 200; makefile: 45; sh: 15
file content (45 lines) | stat: -rw-r--r-- 1,243 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/env python3
# Yes, this is a Bad YAML Parser, but at this stage we are not in the
# venv and do not know what modules the user has available, so for
# maximum compatibility, we are just assuming a plain Python distribution.
import argparse
import re
import sys
import os

parser = argparse.ArgumentParser()
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument("--sources", action="store_true")
group.add_argument("--family", action="store_true")
args = parser.parse_args()

with open(os.path.join("sources", "config.yaml")) as config:
    data = config.read()

if args.family:
    m = re.search(r"(?m)^familyName: (.*)", data)
    if m:
        print(m[1])
        sys.exit(0)
    else:
        print("Could not determine family name from config file!")
        sys.exit(1)

toggle = False
sources = []
for line in data.splitlines():
    if re.match("^sources:", line):
        toggle = True
        continue
    if toggle:
        m = re.match(r"^\s*-\s*(.*)", line)
        if m:
            sources.append("sources/" + m[1])
        else:
            toggle = False
if sources:
    print(" ".join(sources))
    sys.exit(0)
else:
    print("Could not determine sources from config file!")
    sys.exit(1)