mirror of
https://github.com/aclist/dztui.git
synced 2026-08-25 17:32:36 +02:00
54 lines
1.5 KiB
Python
54 lines
1.5 KiB
Python
import build
|
|
import os
|
|
import subprocess
|
|
import tarfile
|
|
|
|
from pathlib import Path
|
|
|
|
root = Path(__file__).resolve().parents[1]
|
|
output = root.joinpath("dist")
|
|
|
|
pyapp_dir = root.joinpath("pyapp-latest")
|
|
cpython = root.joinpath("build/cpython/airgapped.tar.gz")
|
|
|
|
builder = build.ProjectBuilder(root)
|
|
wheel = builder.build("wheel", output_directory=output)
|
|
stem = Path(wheel).stem
|
|
tarname = f"{stem}.tar.gz"
|
|
|
|
metadata = stem.split("-")
|
|
appname = metadata[0]
|
|
version = metadata[1]
|
|
|
|
entrypoint = "dzgui.main:main"
|
|
|
|
env = os.environ
|
|
env["PYAPP_PROJECT_VERSION"] = version
|
|
env["PYAPP_PROJECT_NAME"] = appname
|
|
env["PYAPP_EXEC_SPEC"] = entrypoint
|
|
env["PYAPP_PROJECT_PATH"] = wheel
|
|
env["PYAPP_PASS_LOCATION"] = "true"
|
|
|
|
# NOTE: explicitly install all dependencies into distribution
|
|
env["PYAPP_SKIP_INSTALL"] = "true"
|
|
env["PYAPP_DISTRIBUTION_EMBED"] = "true"
|
|
env["PYAPP_FULL_ISOLATION"] = "true"
|
|
env["PYAPP_DISTRIBUTION_PATH"] = str(cpython)
|
|
env["PYAPP_DISTRIBUTION_PYTHON_PATH"] = "python/bin/python3"
|
|
|
|
proc = subprocess.run(["cargo", "build", "--release"], env=env, cwd=pyapp_dir)
|
|
if proc.returncode == 0:
|
|
output_exe = root.joinpath("pyapp-latest/target/release/pyapp")
|
|
release_exe = output.joinpath(appname)
|
|
output_exe.rename(release_exe)
|
|
tarpath = output.joinpath(tarname)
|
|
with tarfile.open(tarpath, "w:gz") as tar:
|
|
tar.add(release_exe, arcname=appname)
|
|
print(f"Wrote tarfile to '{tarpath}'")
|
|
|
|
proc = subprocess.run([release_exe, "-v"], capture_output=True, text=True)
|
|
assert proc.stdout.rstrip() == version
|
|
|
|
release_exe.unlink()
|
|
Path(wheel).unlink()
|