mirror of
https://github.com/aclist/dztui.git
synced 2026-08-30 03:37:00 +02:00
Merge 41b0e86fda into 8eb0a17b78
This commit is contained in:
commit
0c0a6ade4b
@ -13,11 +13,6 @@ git submodule update --recursive --init
|
||||
sphinx-build -M html source build -a
|
||||
|
||||
# Building standalone DZGUI release binaries
|
||||
1. Run `./scripts/dl_pyapp.sh`
|
||||
# TODO: secondary script that packs this archive
|
||||
2. Download cpython 3.13, linux, gnu, v3
|
||||
https://github.com/astral-sh/python-build-standalone/releases/download/20251014/cpython-3.13.9%2B20251014-x86_64_v3-unknown-linux-gnu-install_only_stripped.tar.gz
|
||||
3. Explicitly install dependencies into site-packages
|
||||
4. Pack back into a tarball
|
||||
5. Run `python3 scripts/release.py`
|
||||
6. Generate a release and tag against the bundled `dzgui` executable
|
||||
1. Set up the build target: `rustup target add x86_64-unknown-linux-musl`
|
||||
2. Run `python3 scripts/release.py`
|
||||
3. Generate a release and tag against the bundled `dzgui` executable
|
||||
|
||||
@ -4,10 +4,8 @@ import subprocess
|
||||
import tarfile
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
from prebuild import get_pyapp, rebuild_cpython
|
||||
|
||||
|
||||
root = Path(__file__).resolve().parents[1]
|
||||
output = root.joinpath("dist")
|
||||
build_dir = root.joinpath("build")
|
||||
@ -17,6 +15,7 @@ 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]
|
||||
@ -44,9 +43,18 @@ 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)
|
||||
target = "x86_64-unknown-linux-musl"
|
||||
build_params = [ "cargo", "build", "--release", "--target", target]
|
||||
|
||||
proc = subprocess.run(
|
||||
build_params,
|
||||
env=env,
|
||||
cwd=pyapp_dir,
|
||||
)
|
||||
|
||||
# TODO: set proper release tags on tarfile
|
||||
if proc.returncode == 0:
|
||||
output_exe = build_dir.joinpath("pyapp-latest/target/release/pyapp")
|
||||
output_exe = build_dir.joinpath(f"pyapp-latest/target/{target}/release/pyapp")
|
||||
release_exe = output.joinpath(appname)
|
||||
output_exe.rename(release_exe)
|
||||
tarpath = output.joinpath(tarname)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user