-
Notifications
You must be signed in to change notification settings - Fork 369
/
Copy pathrelease.py
196 lines (155 loc) · 5.31 KB
/
release.py
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#!/usr/bin/env python3
import argparse
import json
import os
import re
import shutil
from typing import Callable
from fontTools.ttLib import TTFont
from source.py.utils import generate_directory_hash, run
# Mapping of style names to weights
weight_map = {
"Thin": "100",
"ExtraLight": "200",
"Light": "300",
"Regular": "400",
"Italic": "400",
"SemiBold": "500",
"Medium": "600",
"Bold": "700",
"ExtraBold": "800",
}
def format_fontsource_name(filename: str):
match = re.match(r"MapleMono-(.*)\.(.*)$", filename)
if not match:
return None
style = match.group(1)
weight = weight_map[style.removesuffix("Italic") if style != "Italic" else "Italic"]
suf = "italic" if "italic" in filename.lower() else "normal"
new_filename = f"maple-mono-latin-{weight}-{suf}.{match.group(2)}"
return new_filename
def format_woff2_name(filename: str):
return filename.replace(".woff2", "-VF.woff2")
def rename_files(dir: str, fn: Callable[[str], str]):
for filename in os.listdir(dir):
if not filename.endswith(".woff") and not filename.endswith(".woff2"):
continue
new_name = fn(filename)
if new_name:
os.rename(os.path.join(dir, filename), os.path.join(dir, new_name))
print(f"Renamed: {filename} -> {new_name}")
def parse_tag(args):
"""
Parse the tag from the command line arguments.
Format: v7.0[-beta3]
"""
tag = args.tag
if not tag.startswith("v"):
tag = f"v{tag}"
match = re.match(r"^v(\d+)\.(\d+)$", tag)
if not match:
raise ValueError(f"Invalid tag: {tag}, expected format: v7.0")
major, minor = match.groups()
# Remove leading zero from the minor version if necessary
minor = str(int(minor))
tag = f"v{major}.{minor}"
if args.beta:
tag += "-" if args.beta.startswith("beta") else "-beta" + args.beta
return tag
def update_build_script_version(tag):
with open("build.py", "r", encoding="utf-8") as f:
content = f.read()
f.close()
content = re.sub(r'FONT_VERSION = ".*"', f'FONT_VERSION = "{tag}"', content)
with open("build.py", "w", encoding="utf-8") as f:
f.write(content)
f.close()
def git_commit(tag, files):
run(f"git add {' '.join(files)}")
run(["git", "commit", "-m", f"Release {tag}"])
run(f"git tag {tag}")
print("Committed and tagged")
run("git push origin")
run(f"git push origin {tag}")
print("Pushed to origin")
def update_submodule(cwd: str):
run("git pull", cwd=cwd)
run("git add .", cwd=cwd)
run(["git", "commit", "-m", "Update font"], cwd=cwd)
run("git push origin", cwd=cwd)
print("Update page files")
def format_font_map_key(key: int) -> str:
formatted_key = f"{key:05X}"
if formatted_key.startswith("0"):
return formatted_key[1:]
return formatted_key
def write_unicode_map_json(font_path: str, output: str):
font = TTFont(font_path)
font_map = {
format_font_map_key(k): v
for k, v in font.getBestCmap().items()
if k is not None
}
with open(output, "w", encoding="utf-8") as f:
f.write(json.dumps(font_map, indent=2))
print(f"Write font map to {output}")
font.close()
def main():
parser = argparse.ArgumentParser()
parser.add_argument(
"tag",
type=str,
help="The tag to build the release for, format: 7.0 or v7.0",
)
parser.add_argument(
"beta",
nargs="?",
type=str,
help="Beta tag name, format: 3 or beta3",
)
parser.add_argument(
"--dry",
action="store_true",
help="Dry run",
)
args = parser.parse_args()
tag = parse_tag(args)
# prompt and wait for user input
choose = input(f"{'[DRY] ' if args.dry else ''}Tag {tag}? (Y or n) ")
if choose != "" and choose.lower() != "y":
print("Aborted")
return
update_build_script_version(tag)
shutil.rmtree("./cdn", ignore_errors=True)
target_fontsource_dir = "cdn/fontsource"
run("python build.py --ttf-only --no-nerd-font --cn --no-hinted")
run(f"ftcli converter ft2wf -f woff2 ./fonts/TTF -out {target_fontsource_dir}")
run(f"ftcli converter ft2wf -f woff ./fonts/TTF -out {target_fontsource_dir}")
rename_files(target_fontsource_dir, format_fontsource_name)
print("Generate fontsource files")
shutil.copytree("./fonts/CN", "./cdn/cn")
print("Generate CN files")
woff2_dir = "woff2/var"
if os.path.exists(target_fontsource_dir):
shutil.rmtree(woff2_dir)
run(f"ftcli converter ft2wf -f woff2 ./fonts/Variable -out {woff2_dir}")
rename_files(woff2_dir, format_woff2_name)
cn_static_path = "./source/cn/static"
with open(f"{cn_static_path}.sha256", "w") as f:
f.write(generate_directory_hash(cn_static_path))
f.flush()
submodule_path = './maple-font-page'
public_path = f"{submodule_path}/public/fonts"
shutil.rmtree(public_path, ignore_errors=True)
shutil.copytree(woff2_dir, public_path)
update_submodule(submodule_path)
print("Update variable WOFF2")
# write_unicode_map_json(
# "./fonts/TTF/MapleMono-Regular.ttf", "./resources/glyph-map.json"
# )
if args.dry:
print("Dry run")
else:
git_commit(tag, ["build.py", "woff2"])
if __name__ == "__main__":
main()