forked from kdrag0n/proton-clang-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.py
executable file
·100 lines (86 loc) · 3.15 KB
/
utils.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
#!/usr/bin/env python3
# Description: Common helper functions
import hashlib
import pathlib
import shutil
import subprocess
def create_gitignore(folder):
"""
Create a gitignore that ignores all files in a folder. Some folders are not
known until the script is run so they can't be added to the root .gitignore
:param folder: Folder to create the gitignore in
"""
with folder.joinpath(".gitignore").open("w") as gitignore:
gitignore.write("*")
def current_binutils():
"""
Simple getter for current stable binutils release
:return: The current stable release of binutils
"""
return "binutils-2.36.1"
def download_binutils(folder):
"""
Downloads the latest stable version of binutils
:param folder: Directory to download binutils to
"""
binutils = current_binutils()
binutils_folder = folder.joinpath(binutils)
if not binutils_folder.is_dir():
# Remove any previous copies of binutils
for entity in folder.glob('binutils-*'):
if entity.is_dir():
shutil.rmtree(entity.as_posix())
else:
entity.unlink()
# Download the tarball
binutils_tarball = folder.joinpath(binutils + ".tar.xz")
subprocess.run([
"curl", "-LSs", "-o",
binutils_tarball.as_posix(),
"https://ftp.gnu.org/gnu/binutils/" + binutils_tarball.name
],
check=True)
verify_binutils_checksum(binutils_tarball)
# Extract the tarball then remove it
subprocess.run(["tar", "-xJf", binutils_tarball.name],
check=True,
cwd=folder.as_posix())
create_gitignore(binutils_folder)
binutils_tarball.unlink()
def verify_binutils_checksum(file):
# Check the SHA512 checksum of the downloaded file with a known good one
# The sha512.sum file from <sourceware.org> ships the SHA512 checksums
# Link: https://sourceware.org/pub/binutils/releases/sha512.sum
file_hash = hashlib.sha512()
with file.open("rb") as f:
while True:
data = f.read(131072)
if not data:
break
file_hash.update(data)
good_hash = "cc24590bcead10b90763386b6f96bb027d7594c659c2d95174a6352e8b98465a50ec3e4088d0da038428abe059bbc4ae5f37b269f31a40fc048072c8a234f4e9"
if file_hash.hexdigest() != good_hash:
raise RuntimeError(
"binutils: SHA512 checksum does not match known good one!")
def print_header(string):
"""
Prints a fancy header
:param string: String to print inside the header
"""
# Use bold cyan for the header so that the headers
# are not intepreted as success (green) or failed (red)
print("\033[01;36m")
for x in range(0, len(string) + 6):
print("=", end="")
print("\n== %s ==" % string)
for x in range(0, len(string) + 6):
print("=", end="")
# \033[0m resets the color back to the user's default
print("\n\033[0m")
def print_error(string):
"""
Prints a error in bold red
:param string: String to print
"""
# Use bold red for error
print("\033[01;31m%s\n\033[0m" % string)