forked from GjjvdBurg/paper2remarkable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_release.py
410 lines (331 loc) · 11.7 KB
/
make_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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Do-nothing script for making a release
This idea comes from here:
https://blog.danslimmon.com/2019/07/15/do-nothing-scripting-the-key-to-gradual-automation/
Author: Gertjan van den Burg
Date: 2019-07-23
"""
import abc
import os
import re
import subprocess
import sys
import tempfile
import webbrowser
from typing import Optional
import colorama
PACKAGE = "paper2remarkable"
MAN_FILE = "./p2r.1"
BRANCH_NAME = "master"
URLS = {
"CI": f"https://github.com/GjjvdBurg/{PACKAGE}/actions",
"tags": f"https://github.com/GjjvdBurg/{PACKAGE}/tags",
}
def color_text(msg, color=None, style=None):
colors = {
"red": colorama.Fore.RED,
"green": colorama.Fore.GREEN,
"cyan": colorama.Fore.CYAN,
"yellow": colorama.Fore.YELLOW,
"magenta": colorama.Fore.MAGENTA,
None: "",
}
styles = {
"bright": colorama.Style.BRIGHT,
"dim": colorama.Style.DIM,
None: "",
}
pre = colors[color] + styles[style]
post = colorama.Style.RESET_ALL
return f"{pre}{msg}{post}"
def color_print(msg, color=None, style=None):
print(color_text(msg, color=color, style=style))
def wait_for_enter():
input(color_text("\nPress Enter to continue", style="dim"))
print()
def get_package_name():
with open("./setup.py", "r") as fp:
nameline = next(
(line.strip() for line in fp if line.startswith("NAME = ")), None
)
return nameline.split("=")[-1].strip().strip('"')
def get_package_version(pkgname):
ctx = {}
with open(f"{pkgname.lower()}/__version__.py", "r") as fp:
exec(fp.read(), ctx)
return ctx["__version__"]
def get_last_version_tag():
output = ""
with subprocess.Popen(
"git tag -l", shell=True, stdout=subprocess.PIPE, text=True, bufsize=1
) as p:
for line in p.stdout:
output += line
tags = output.rstrip().split()
version_tags = [
t for t in tags if re.match(r"v\d+\.\d+\.\d+$", t) is not None
]
versions = [v.lstrip(".") for v in version_tags]
versions.sort()
return versions[-1]
def get_last_release_candidate_tag(version: str) -> Optional[str]:
output = ""
with subprocess.Popen(
"git tag -l", shell=True, stdout=subprocess.PIPE, text=True, bufsize=1
) as p:
for line in p.stdout:
output += line
tags = output.rstrip().split()
version_tags = [
t
for t in tags
if re.match(r"v" + version + r"-rc\.\d+", t) is not None
]
versions = [v.lstrip(".") for v in version_tags]
versions.sort()
if not versions:
return None
return versions[-1]
def build_release_message(context, commit: bool = False) -> str:
# TODO: Handle manual modification of Changelog, read it again
prefix = "bump: " if commit else ""
message = (
f"{prefix}{context['pkgname'].capitalize()} Release "
f"{context['next_version']}"
)
message += "\n"
message += "\n"
message += context["changelog_update"]
return message
class Step(metaclass=abc.ABCMeta):
def pre(self, context):
pass
def post(self, context):
wait_for_enter()
def run(self, context):
try:
self.pre(context)
self.action(context)
self.post(context)
except KeyboardInterrupt:
color_print("\nInterrupted.", color="red")
raise SystemExit(1)
def instruct(self, msg):
color_print(msg, color="green")
def print_command(self, msg):
color_print("Run:", color="cyan", style="bright")
color_print("\t" + msg, color="cyan", style="bright")
def system(self, cmd: str):
os.system(cmd)
def execute(
self, cmd: str, silent: bool = False, confirm: bool = True
) -> str:
if not silent:
color_print(f"Running: {cmd}", color="magenta", style="bright")
if confirm:
wait_for_enter()
stdout = ""
with subprocess.Popen(
cmd,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stdin=subprocess.PIPE,
text=True,
bufsize=1,
) as p:
for line in p.stdout:
stdout += line
if not silent:
print(line, end="")
if p.returncode:
raise subprocess.CalledProcessError(
p.returncode, p.args, stdout, p.stderr
)
return stdout.rstrip()
@abc.abstractmethod
def action(self, context):
"""Action to perform for the step"""
class GitToMain(Step):
def action(self, context):
self.instruct(f"Ensuring that you're on the {BRANCH_NAME} branch")
branch = self.execute(
"git rev-parse --abbrev-ref HEAD", silent=True, confirm=False
)
if not branch == BRANCH_NAME:
print(f"ERROR: not on {BRANCH_NAME} branch.", file=sys.stderr)
raise SystemExit(1)
def post(self, context):
print("")
class UpdateChangelog(Step):
def action(self, context):
self.instruct(
f"Update change log for version {context['next_version']}"
)
self.system("vim CHANGELOG.md")
self.instruct("TEMP: Copy the latest section to the update file")
self.system("vim CHANGELOG.md /tmp/changelog_update.md")
with open("/tmp/changelog_update.md", "r") as fileobj:
context["changelog_update"] = fileobj.read()
class UpdateReadme(Step):
def action(self, context):
self.instruct("Update readme if necessary")
self.print_command("vi README.md")
class RunTests(Step):
def action(self, context):
self.instruct("Run the unit tests")
self.execute("make test")
class BumpVersionPackage(Step):
def action(self, context):
self.instruct("Update __version__.py with new version")
self.system(f"vi {context['pkgname']}/__version__.py")
def post(self, context):
wait_for_enter()
context["next_version"] = get_package_version(context["pkgname"])
class MakeClean(Step):
def action(self, context):
self.execute("make clean")
class MakeDocs(Step):
def action(self, context):
self.execute("make docs")
class MakeDist(Step):
def action(self, context):
self.execute("make dist")
class InstallFromTestPyPI(Step):
def action(self, context):
tmpvenv = tempfile.mkdtemp(prefix="p2r_venv_")
self.execute(
f"python -m venv {tmpvenv} && source {tmpvenv}/bin/activate && "
"pip install --no-cache-dir --index-url "
"https://test.pypi.org/simple/ "
"--extra-index-url https://pypi.org/simple "
f"{context['pkgname']}=={context['next_version']}"
)
context["tmpvenv"] = tmpvenv
class TestPackage(Step):
def action(self, context):
self.instruct(
f"Ensuring that the package has version {context['next_version']}"
)
version = self.execute(
f"source {context['tmpvenv']}/bin/activate && p2r -V",
silent=True,
confirm=False,
)
if not version == context["next_version"]:
print(
"ERROR: version installed from TestPyPI doesn't match "
"expected version."
)
def post(self, context):
print("")
class RemoveVenv(Step):
def action(self, context):
self.execute(
f"rm -rf {context['tmpvenv']}", confirm=False, silent=True
)
def post(self, context):
print("")
class GitTagVersion(Step):
def action(self, context):
tag_message = build_release_message(context, commit=False)
with open("./tag_message.tmp", "w") as fileobj:
fileobj.write(tag_message)
self.instruct("Going to tag with the following message:")
print("--- BEGIN TAG MESSAGE ---")
print(tag_message)
print("--- END TAG MESSAGE ---")
self.execute(
f"git tag -F ./tag_message.tmp v{context['next_version']}"
)
os.unlink("./tag_message.tmp")
class GitTagPreRelease(Step):
def action(self, context):
last_rc_tag = get_last_release_candidate_tag(context["next_version"])
rc_count = (
1 if last_rc_tag is None else int(last_rc_tag.split(".")[-1]) + 1
)
context["rc_count"] = rc_count
self.instruct("Tagging version as a pre-release")
self.execute(
f"git tag -m \"{context['pkgname'].capitalize()} Release v"
f"{context['next_version']} (release candidate {rc_count})\" v"
f"{context['next_version']}-rc.{rc_count}"
)
class GitAdd(Step):
def action(self, context):
self.instruct("Commit any final changes for release to git")
self.print_command("git gui")
class GitAddVersionAndMan(Step):
def action(self, context):
self.instruct("Add version and man pages to git and commit")
self.execute(
f"git add {context['pkgname']}/__version__.py", confirm=False
)
self.execute(f"git add {MAN_FILE}", confirm=False)
# TODO: Fail gracefully if `git diff --cached --exit-code` is 0
self.execute("git commit -m 'bump: update version and manpages'")
class GitAddRelease(Step):
def action(self, context):
self.instruct("Add Changelog & Readme to git")
self.execute("git add CHANGELOG.md", confirm=False)
self.execute("git add README.md", confirm=False)
self.instruct("Going to commit with the following message:")
commit_message = build_release_message(context, commit=True)
print("--- BEGIN COMMIT MESSAGE ---")
print(commit_message)
print("--- END COMMIT MESSAGE ---")
with open("./commit_message.tmp", "w") as fileobj:
fileobj.write(commit_message)
self.execute("git commit --file ./commit_message.tmp")
os.unlink("./commit_message.tmp")
class PushToGitHub(Step):
def action(self, context):
self.execute(f"git push -u --tags origin {BRANCH_NAME}")
class WaitForCI(Step):
def action(self, context):
webbrowser.open(URLS["CI"])
self.instruct("Wait for CI to complete and verify that its successful")
def main(target=None):
colorama.init()
procedure = [
("gittomain", GitToMain()),
("clean1", MakeClean()),
("gitadd1", GitAdd()),
("push1", PushToGitHub()),
("ci1", WaitForCI()),
("bumpversion", BumpVersionPackage()),
("clean2", MakeClean()),
("docs", MakeDocs()),
("gitadd2", GitAddVersionAndMan()),
("gittagpre", GitTagPreRelease()),
# triggers Github Actions to build dists and push to TestPyPI
("push2", PushToGitHub()),
("ci2", WaitForCI()),
("install", InstallFromTestPyPI()),
("testpkg", TestPackage()),
("remove_venv", RemoveVenv()),
("changelog", UpdateChangelog()),
("readme", UpdateReadme()),
("addrelease", GitAddRelease()),
("tagfinal", GitTagVersion()),
# triggers Github Actions to build dists and push to PyPI
("push3", PushToGitHub()),
("ci3", WaitForCI()),
]
context = {}
context["pkgname"] = get_package_name()
context["prev_version_tag"] = get_last_version_tag()
context["next_version"] = get_package_version(context["pkgname"])
skip = True if target else False
for name, step in procedure:
if not name == target and skip:
continue
skip = False
step.run(context)
color_print("\nDone!", color="yellow", style="bright")
if __name__ == "__main__":
target = sys.argv[1] if len(sys.argv) > 1 else None
main(target=target)