fontgen: assume plain .patch for single string patch

This commit is contained in:
Yehoshua Pesach Wallach 2022-04-27 18:25:03 +03:00 committed by JF
parent 8b2e1c69f2
commit 27e598f3fa
2 changed files with 12 additions and 5 deletions

View File

@ -12,7 +12,7 @@
],
"bpp": 1,
"size": 20,
"patches": [["patch", "{file}", "{file}_zero.patch"]]
"patches": ["{file}_zero.patch"]
},
"jetbrains_mono_42": {
"sources": [

View File

@ -66,11 +66,18 @@ def main():
subprocess.check_call(line)
if patches:
for patch in patches:
try: patch = patch.format(name=name, file=name+'.c')
try:
# Try and patch, if given a string
patch = patch.format(name=name, file=name+'.c')
subprocess.check_call(['/usr/bin/patch', name+'.c', patch])
continue
except: pass
try: patch = [arg.format(name=name, file=name+'.c') for arg in patch]
except: pass
subprocess.check_call(patch)
try:
# otherwise, assume a "advanced" patch, which is a list of strings.
patch = [arg.format(name=name, file=name+'.c') for arg in patch]
subprocess.check_call(patch)
except Exception as e:
sys.exit('Failed to patch using "{patch}"\n{err}'.format(patch=patch,err=e))