-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_native_dependencies.py
163 lines (146 loc) · 6.46 KB
/
update_native_dependencies.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
import argparse
import hashlib
import re
import subprocess
from pathlib import Path
import requests
from lastversion import latest
from lastversion.Version import Version
def _sha256(url):
response = requests.get(
url,
allow_redirects=True,
headers={"Accept": "application/octet-stream"},
stream=True)
response.raise_for_status()
m = hashlib.sha256()
for chunk in response.iter_content(chunk_size=65536):
m.update(chunk)
return m.hexdigest()
def _update_cpython(dry_run):
build_env = Path(__file__).parent / "docker" / "build_scripts" / "build_env.sh"
lines = build_env.read_text().splitlines()
re_ = re.compile(r'^CPYTHON_VERSIONS="(?P<versions>.*)"$')
for i in range(len(lines)):
match = re_.match(lines[i])
if match is None:
continue
versions = match["versions"].split()
for version in versions:
current_version = Version(version)
latest_version = latest("python/cpython", major=f'{current_version.major}.{current_version.minor}', pre_ok=current_version.is_prerelease)
if latest_version > current_version:
root = f"Python-{latest_version}"
url = f"https://www.python.org/ftp/python/{latest_version.major}.{latest_version.minor}.{latest_version.micro}"
_sha256(f"{url}/{root}.tgz")
lines[i] = lines[i].replace(version, str(latest_version))
message = f"Bump CPython {current_version} → {latest_version}"
print(message)
if not dry_run:
build_env.write_text("\n".join(lines) + "\n")
subprocess.check_call(["git", "commit", "-am", message])
break
def _update_with_root(tool, dry_run):
repo = {
"autoconf": "autotools-mirror/autoconf",
"automake": "autotools-mirror/automake",
"libtool": "autotools-mirror/libtool",
"git": "git/git",
"swig": "swig/swig",
"openssl": "openssl/openssl",
"curl": "curl/curl",
}
major = {
"openssl": "1.1"
}
build_env = Path(__file__).parent / "docker" / "build_scripts" / "build_env.sh"
lines = build_env.read_text().splitlines()
re_ = re.compile(f"^{tool.upper()}_ROOT={tool}-(?P<version>\\S+)$")
for i in range(len(lines)):
match = re_.match(lines[i])
if match is None:
continue
current_version = Version(match["version"], char_fix_required=tool=="openssl")
latest_version = latest(repo[tool], major=major.get(tool, None))
if latest_version > current_version:
root = f"{tool}-{latest_version}"
url = re.match(f"^{tool.upper()}_DOWNLOAD_URL=(?P<url>\\S+)$", lines[i + 2])["url"]
url = url.replace(f"${{{tool.upper()}_ROOT}}", root)
sha256 = _sha256(f"{url}/{root}.tar.gz")
lines[i + 0] = f"{tool.upper()}_ROOT={root}"
lines[i + 1] = f"{tool.upper()}_HASH={sha256}"
message = f"Bump {tool} {current_version} → {latest_version}"
print(message)
if not dry_run:
build_env.write_text("\n".join(lines) + "\n")
subprocess.check_call(["git", "commit", "-am", message])
break
def _update_sqlite(dry_run):
build_env = Path(__file__).parent / "docker" / "build_scripts" / "build_env.sh"
lines = build_env.read_text().splitlines()
re_ = re.compile(f"^SQLITE_AUTOCONF_ROOT=sqlite-autoconf-(?P<version>\\S+)$")
for i in range(len(lines)):
match = re_.match(lines[i])
if match is None:
continue
version_int = int(match["version"])
major = version_int // 1000000
version_int -= major * 1000000
minor = version_int // 10000
version_int -= minor * 10000
patch = version_int // 100
current_version = Version(f"{major}.{minor}.{patch}")
latest_dict = latest("sqlite/sqlite", output_format="dict")
latest_version = latest_dict["version"]
if latest_version > current_version:
version_int = latest_version.major * 1000000 + latest_version.minor * 10000 + latest_version.micro * 100
root = f"sqlite-autoconf-{version_int}"
url = f"https://www.sqlite.org/{latest_dict['tag_date'].year}"
sha256 = _sha256(f"{url}/{root}.tar.gz")
lines[i + 0] = f"SQLITE_AUTOCONF_ROOT={root}"
lines[i + 1] = f"SQLITE_AUTOCONF_HASH={sha256}"
lines[i + 2] = f"SQLITE_AUTOCONF_DOWNLOAD_URL={url}"
message = f"Bump sqlite {current_version} → {latest_version}"
print(message)
if not dry_run:
build_env.write_text("\n".join(lines) + "\n")
subprocess.check_call(["git", "commit", "-am", message])
break
def _update_with_gh(tool, dry_run):
repo = {
"patchelf": "NixOS/patchelf",
"libxcrypt": "besser82/libxcrypt",
}
build_env = Path(__file__).parent / "docker" / "build_scripts" / "build_env.sh"
lines = build_env.read_text().splitlines()
re_ = re.compile(f"^{tool.upper()}_VERSION=(?P<version>\\S+)$")
for i in range(len(lines)):
match = re_.match(lines[i])
if match is None:
continue
current_version = Version(match["version"])
latest_tag = latest(repo[tool], output_format="tag")
latest_version = Version(latest_tag)
if latest_version > current_version:
url = re.match(f"^{tool.upper()}_DOWNLOAD_URL=(?P<url>\\S+)$", lines[i + 2])["url"]
sha256 = _sha256(f"{url}/{latest_tag}.tar.gz")
lines[i + 0] = f"{tool.upper()}_VERSION={latest_version}"
lines[i + 1] = f"{tool.upper()}_HASH={sha256}"
message = f"Bump {tool} {current_version} → {latest_version}"
print(message)
if not dry_run:
build_env.write_text("\n".join(lines) + "\n")
subprocess.check_call(["git", "commit", "-am", message])
break
def main():
parser = argparse.ArgumentParser()
parser.add_argument("--dry-run", dest="dry_run", action="store_true", help="dry run")
args = parser.parse_args()
_update_cpython(args.dry_run)
_update_sqlite(args.dry_run)
for tool in ["autoconf", "automake", "curl", "libtool", "git", "swig", "openssl"]:
_update_with_root(tool, args.dry_run)
for tool in ["patchelf", "libxcrypt"]:
_update_with_gh(tool, args.dry_run)
if __name__ == "__main__":
main()