-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
35 lines (26 loc) · 1.11 KB
/
main.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
import subprocess
SCALE_STABLE_VERSION = "1.2.0"
SCALE_UNSTABLE_VERSION = "2025.02.19"
# Find the current git branch to choose stable or unstable variation.
g = subprocess.run(["git", "branch", "--show-current"], capture_output=True)
current_branch = g.stdout.decode("utf-8")[:-1]
print("Current branch: " + current_branch)
def define_env(env):
env.variables["branch"] = current_branch
scale_pkgname = "scale"
scale_version = SCALE_UNSTABLE_VERSION if "unstable" in current_branch else SCALE_STABLE_VERSION
repo_subdomain = "pkgs"
if "nonfree" in current_branch:
repo_subdomain = "nonfree-" + repo_subdomain
else:
scale_pkgname += "-free"
if "unstable" in current_branch:
repo_subdomain = "unstable-" + repo_subdomain
scale_pkgname += "-unstable"
env.variables["scale_pkgname"] = scale_pkgname
env.variables["scale_version"] = scale_version
env.variables["repo_subdomain"] = repo_subdomain
@env.macro
def checksum(url):
g = subprocess.run(["curl", url + ".sha512"], capture_output=True)
return g.stdout.decode("utf-8").split(" ")[0]