|
|
@@ -0,0 +1,325 @@
|
|
|
+"""Build script for the Bambuddy Windows installer.
|
|
|
+
|
|
|
+Stages all artifacts under ``installers/windows/build/staging/`` for the
|
|
|
+Inno Setup compiler to package. Run this on Windows (or in a Windows CI
|
|
|
+runner) — it pip-installs Bambuddy's deps against the embedded Python it
|
|
|
+downloads, which requires the matching platform.
|
|
|
+
|
|
|
+Steps:
|
|
|
+ 1. Download python.org embeddable distribution for Windows x64
|
|
|
+ 2. Configure embedded Python (allow site-packages)
|
|
|
+ 3. Bootstrap pip into the embedded distribution
|
|
|
+ 4. Install ``requirements.txt`` into the embedded Python
|
|
|
+ 5. Build the React frontend (``frontend/npm run build``)
|
|
|
+ 6. Stage backend source + frontend bundle
|
|
|
+ 7. Download NSSM
|
|
|
+ 8. Download ffmpeg static build for Windows
|
|
|
+ 9. Print "ready for ISCC" message
|
|
|
+
|
|
|
+After this script succeeds, run::
|
|
|
+
|
|
|
+ "C:\\Program Files (x86)\\Inno Setup 6\\ISCC.exe" bambuddy.iss
|
|
|
+
|
|
|
+to produce the final installer .exe under ``build/output/``.
|
|
|
+"""
|
|
|
+
|
|
|
+from __future__ import annotations
|
|
|
+
|
|
|
+import argparse
|
|
|
+import shutil
|
|
|
+import subprocess
|
|
|
+import sys
|
|
|
+import urllib.request
|
|
|
+import zipfile
|
|
|
+from pathlib import Path
|
|
|
+
|
|
|
+# Repo root: installers/windows/build.py -> ../../
|
|
|
+REPO_ROOT = Path(__file__).resolve().parents[2]
|
|
|
+INSTALLER_DIR = Path(__file__).resolve().parent
|
|
|
+BUILD_DIR = INSTALLER_DIR / "build"
|
|
|
+STAGING = BUILD_DIR / "staging"
|
|
|
+DOWNLOADS = BUILD_DIR / "downloads"
|
|
|
+
|
|
|
+# Python 3.13 — matches Dockerfile (python:3.13-slim-trixie). Bump when
|
|
|
+# the Dockerfile bumps; the Windows installer should track production.
|
|
|
+PYTHON_VERSION = "3.13.1"
|
|
|
+PYTHON_EMBED_URL = f"https://www.python.org/ftp/python/{PYTHON_VERSION}/python-{PYTHON_VERSION}-embed-amd64.zip"
|
|
|
+
|
|
|
+# NSSM 2.24 is the long-time stable build. The official site has been
|
|
|
+# unreliable; use the GitHub mirror that nssm.cc itself links to.
|
|
|
+NSSM_VERSION = "2.24"
|
|
|
+NSSM_URL = f"https://nssm.cc/release/nssm-{NSSM_VERSION}.zip"
|
|
|
+
|
|
|
+# ffmpeg static build. BtbN's gyan-equivalent build is the most reliable
|
|
|
+# automated source. Pin to a release tag so builds are reproducible.
|
|
|
+FFMPEG_URL = "https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip"
|
|
|
+
|
|
|
+# get-pip.py for bootstrapping pip into the embedded distribution
|
|
|
+GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"
|
|
|
+
|
|
|
+
|
|
|
+def log(msg: str) -> None:
|
|
|
+ print(f"[build] {msg}", flush=True)
|
|
|
+
|
|
|
+
|
|
|
+def download(url: str, dest: Path) -> Path:
|
|
|
+ """Download ``url`` to ``dest`` if not already present."""
|
|
|
+ if dest.exists():
|
|
|
+ log(f"already downloaded: {dest.name}")
|
|
|
+ return dest
|
|
|
+ dest.parent.mkdir(parents=True, exist_ok=True)
|
|
|
+ log(f"downloading {url}")
|
|
|
+ with urllib.request.urlopen(url) as resp, open(dest, "wb") as f: # noqa: S310 — pinned URLs
|
|
|
+ shutil.copyfileobj(resp, f)
|
|
|
+ return dest
|
|
|
+
|
|
|
+
|
|
|
+def unzip(zip_path: Path, dest: Path) -> None:
|
|
|
+ log(f"unzipping {zip_path.name} -> {dest}")
|
|
|
+ dest.mkdir(parents=True, exist_ok=True)
|
|
|
+ with zipfile.ZipFile(zip_path) as zf:
|
|
|
+ zf.extractall(dest)
|
|
|
+
|
|
|
+
|
|
|
+def stage_embedded_python() -> Path:
|
|
|
+ """Download and configure the embedded Python distribution."""
|
|
|
+ target = STAGING / "python"
|
|
|
+ if target.exists():
|
|
|
+ shutil.rmtree(target)
|
|
|
+
|
|
|
+ zip_path = download(
|
|
|
+ PYTHON_EMBED_URL,
|
|
|
+ DOWNLOADS / f"python-{PYTHON_VERSION}-embed-amd64.zip",
|
|
|
+ )
|
|
|
+ unzip(zip_path, target)
|
|
|
+
|
|
|
+ # Edit pythonXY._pth to allow site-packages. The embedded distribution
|
|
|
+ # ships with `import site` commented out — uncomment it so pip-installed
|
|
|
+ # packages in Lib\site-packages are importable.
|
|
|
+ pth_files = list(target.glob("python3*._pth"))
|
|
|
+ if not pth_files:
|
|
|
+ raise RuntimeError(f"no python3*._pth file found in {target}")
|
|
|
+ pth = pth_files[0]
|
|
|
+ content = pth.read_text()
|
|
|
+ content = content.replace("#import site", "import site")
|
|
|
+ # Also add Lib\site-packages explicitly. The embedded distribution
|
|
|
+ # doesn't include this path by default even with `import site` enabled.
|
|
|
+ if "Lib\\site-packages" not in content and "Lib/site-packages" not in content:
|
|
|
+ content = content.rstrip() + "\nLib\\site-packages\n"
|
|
|
+ pth.write_text(content)
|
|
|
+
|
|
|
+ # Bootstrap pip
|
|
|
+ get_pip = download(GET_PIP_URL, DOWNLOADS / "get-pip.py")
|
|
|
+ log("bootstrapping pip into embedded Python")
|
|
|
+ subprocess.run(
|
|
|
+ [str(target / "python.exe"), str(get_pip), "--no-warn-script-location"],
|
|
|
+ check=True,
|
|
|
+ )
|
|
|
+
|
|
|
+ return target
|
|
|
+
|
|
|
+
|
|
|
+def install_requirements(python_dir: Path) -> None:
|
|
|
+ """Install Bambuddy's requirements.txt into the embedded Python."""
|
|
|
+ py = python_dir / "python.exe"
|
|
|
+ requirements = REPO_ROOT / "requirements.txt"
|
|
|
+ log(f"installing requirements.txt into {python_dir}")
|
|
|
+ subprocess.run(
|
|
|
+ [
|
|
|
+ str(py),
|
|
|
+ "-m",
|
|
|
+ "pip",
|
|
|
+ "install",
|
|
|
+ "--no-warn-script-location",
|
|
|
+ "-r",
|
|
|
+ str(requirements),
|
|
|
+ ],
|
|
|
+ check=True,
|
|
|
+ )
|
|
|
+
|
|
|
+
|
|
|
+def build_frontend() -> Path:
|
|
|
+ """Run ``npm ci && npm run build`` and return the dist path."""
|
|
|
+ frontend = REPO_ROOT / "frontend"
|
|
|
+ dist = frontend / "dist"
|
|
|
+ log("running npm ci in frontend/")
|
|
|
+ npm = shutil.which("npm")
|
|
|
+ if not npm:
|
|
|
+ raise RuntimeError("npm not found on PATH — install Node.js 22 LTS")
|
|
|
+ subprocess.run([npm, "ci"], cwd=frontend, check=True, shell=False)
|
|
|
+ log("running npm run build in frontend/")
|
|
|
+ subprocess.run([npm, "run", "build"], cwd=frontend, check=True, shell=False)
|
|
|
+ if not dist.exists():
|
|
|
+ raise RuntimeError(f"expected frontend build output at {dist}")
|
|
|
+ return dist
|
|
|
+
|
|
|
+
|
|
|
+def stage_backend(frontend_dist: Path) -> None:
|
|
|
+ """Copy backend source + frontend bundle into the staging tree.
|
|
|
+
|
|
|
+ The runtime layout under STAGING/app/ mirrors a Bambuddy checkout:
|
|
|
+ ``backend/`` (source), ``static/`` (frontend bundle served by FastAPI).
|
|
|
+ """
|
|
|
+ app = STAGING / "app"
|
|
|
+ if app.exists():
|
|
|
+ shutil.rmtree(app)
|
|
|
+ app.mkdir(parents=True)
|
|
|
+
|
|
|
+ # Backend source — copy the package tree, skip caches/tests/migrations
|
|
|
+ log("staging backend source")
|
|
|
+ shutil.copytree(
|
|
|
+ REPO_ROOT / "backend",
|
|
|
+ app / "backend",
|
|
|
+ ignore=shutil.ignore_patterns(
|
|
|
+ "__pycache__",
|
|
|
+ "*.pyc",
|
|
|
+ "tests",
|
|
|
+ ".pytest_cache",
|
|
|
+ ),
|
|
|
+ )
|
|
|
+
|
|
|
+ # Frontend bundle — FastAPI's StaticFiles mounts from app/static
|
|
|
+ log("staging frontend bundle")
|
|
|
+ shutil.copytree(frontend_dist, app / "static")
|
|
|
+
|
|
|
+
|
|
|
+def stage_nssm() -> None:
|
|
|
+ target = STAGING / "bin"
|
|
|
+ target.mkdir(parents=True, exist_ok=True)
|
|
|
+ zip_path = download(NSSM_URL, DOWNLOADS / f"nssm-{NSSM_VERSION}.zip")
|
|
|
+ extract = DOWNLOADS / f"nssm-{NSSM_VERSION}-extracted"
|
|
|
+ if not extract.exists():
|
|
|
+ unzip(zip_path, extract)
|
|
|
+ # The zip nests as nssm-2.24/win64/nssm.exe
|
|
|
+ src = next(extract.rglob("win64/nssm.exe"))
|
|
|
+ log(f"staging nssm.exe from {src}")
|
|
|
+ shutil.copy(src, target / "nssm.exe")
|
|
|
+
|
|
|
+
|
|
|
+def stage_ffmpeg() -> None:
|
|
|
+ target = STAGING / "bin"
|
|
|
+ target.mkdir(parents=True, exist_ok=True)
|
|
|
+ zip_path = download(FFMPEG_URL, DOWNLOADS / "ffmpeg-win64-gpl.zip")
|
|
|
+ extract = DOWNLOADS / "ffmpeg-extracted"
|
|
|
+ if not extract.exists():
|
|
|
+ unzip(zip_path, extract)
|
|
|
+ src = next(extract.rglob("bin/ffmpeg.exe"))
|
|
|
+ log(f"staging ffmpeg.exe from {src}")
|
|
|
+ shutil.copy(src, target / "ffmpeg.exe")
|
|
|
+ # ffprobe is used by some camera/timelapse paths
|
|
|
+ ffprobe = next(extract.rglob("bin/ffprobe.exe"), None)
|
|
|
+ if ffprobe is not None:
|
|
|
+ shutil.copy(ffprobe, target / "ffprobe.exe")
|
|
|
+
|
|
|
+
|
|
|
+def stage_service_scripts() -> None:
|
|
|
+ """Copy the service install/uninstall .bat files into staging."""
|
|
|
+ service_src = INSTALLER_DIR / "service"
|
|
|
+ service_dst = STAGING / "service"
|
|
|
+ if service_dst.exists():
|
|
|
+ shutil.rmtree(service_dst)
|
|
|
+ shutil.copytree(service_src, service_dst)
|
|
|
+
|
|
|
+
|
|
|
+def write_version_file() -> None:
|
|
|
+ """Write the installer version as both a plain VERSION file and an
|
|
|
+ Inno Setup include file so the .iss script can pick it up at compile
|
|
|
+ time without a fragile file-read hack.
|
|
|
+
|
|
|
+ Reads from pyproject.toml's [project] version line for the source of
|
|
|
+ truth. Falls back to ``0.0.0+dev`` if not parseable.
|
|
|
+ """
|
|
|
+ version = "0.0.0+dev"
|
|
|
+ pyproject = REPO_ROOT / "pyproject.toml"
|
|
|
+ if pyproject.exists():
|
|
|
+ for line in pyproject.read_text().splitlines():
|
|
|
+ line = line.strip()
|
|
|
+ if line.startswith("version =") or line.startswith('version="'):
|
|
|
+ # version = "0.1.5" -> 0.1.5
|
|
|
+ version = line.split("=", 1)[1].strip().strip('"').strip("'")
|
|
|
+ break
|
|
|
+ (STAGING / "VERSION").write_text(version)
|
|
|
+
|
|
|
+ # Inno Setup include — bambuddy.iss does `#include "build\staging\version.iss"`
|
|
|
+ iss_version = STAGING / "version.iss"
|
|
|
+ iss_version.write_text(f'#define MyAppVersion "{version}"\n')
|
|
|
+ log(f"staged VERSION = {version}")
|
|
|
+
|
|
|
+
|
|
|
+def main() -> int:
|
|
|
+ parser = argparse.ArgumentParser(description=__doc__)
|
|
|
+ parser.add_argument(
|
|
|
+ "--skip-frontend",
|
|
|
+ action="store_true",
|
|
|
+ help="Skip frontend build (use existing frontend/dist/)",
|
|
|
+ )
|
|
|
+ parser.add_argument(
|
|
|
+ "--skip-pip",
|
|
|
+ action="store_true",
|
|
|
+ help="Skip pip install (use existing staged Python)",
|
|
|
+ )
|
|
|
+ parser.add_argument(
|
|
|
+ "--allow-non-windows",
|
|
|
+ action="store_true",
|
|
|
+ help=(
|
|
|
+ "Override the Windows-only guard. Only useful if you have a "
|
|
|
+ "working wine + windows-python toolchain. Not exercised by CI."
|
|
|
+ ),
|
|
|
+ )
|
|
|
+ args = parser.parse_args()
|
|
|
+
|
|
|
+ if sys.platform != "win32" and not args.allow_non_windows:
|
|
|
+ log("ERROR: this build script must run on Windows.")
|
|
|
+ log("")
|
|
|
+ log("It downloads a Windows embeddable Python distribution and")
|
|
|
+ log("pip-installs Bambuddy's requirements.txt against it — both")
|
|
|
+ log("require executing python.exe, which only runs on Windows.")
|
|
|
+ log("")
|
|
|
+ log("Supported build paths:")
|
|
|
+ log(" 1. GitHub Actions: trigger '.github/workflows/windows-")
|
|
|
+ log(" installer.yml' (Actions tab -> Windows Installer ->")
|
|
|
+ log(" Run workflow). Downloads the .exe as a workflow artifact.")
|
|
|
+ log(" 2. Windows VM / box: clone, install Python 3.13 + Node 22 +")
|
|
|
+ log(" Inno Setup 6, run this script.")
|
|
|
+ log("")
|
|
|
+ log("Unsupported escape hatch (cross-build under Wine): rerun with")
|
|
|
+ log("--allow-non-windows. Requires wine + a Windows Python in $PATH")
|
|
|
+ log("via wine python.exe — fragile and not exercised by CI.")
|
|
|
+ return 1
|
|
|
+
|
|
|
+ BUILD_DIR.mkdir(parents=True, exist_ok=True)
|
|
|
+ DOWNLOADS.mkdir(parents=True, exist_ok=True)
|
|
|
+ STAGING.mkdir(parents=True, exist_ok=True)
|
|
|
+
|
|
|
+ python_dir = stage_embedded_python()
|
|
|
+ if not args.skip_pip:
|
|
|
+ install_requirements(python_dir)
|
|
|
+
|
|
|
+ if args.skip_frontend:
|
|
|
+ frontend_dist = REPO_ROOT / "frontend" / "dist"
|
|
|
+ if not frontend_dist.exists():
|
|
|
+ raise RuntimeError("--skip-frontend given but frontend/dist/ doesn't exist")
|
|
|
+ else:
|
|
|
+ frontend_dist = build_frontend()
|
|
|
+
|
|
|
+ stage_backend(frontend_dist)
|
|
|
+ stage_nssm()
|
|
|
+ stage_ffmpeg()
|
|
|
+ stage_service_scripts()
|
|
|
+ write_version_file()
|
|
|
+
|
|
|
+ log("")
|
|
|
+ log("=" * 60)
|
|
|
+ log("Staging complete.")
|
|
|
+ log(f"Staged tree: {STAGING}")
|
|
|
+ log("")
|
|
|
+ log("Next: compile the Inno Setup script:")
|
|
|
+ log(' "C:\\Program Files (x86)\\Inno Setup 6\\ISCC.exe" bambuddy.iss')
|
|
|
+ log("")
|
|
|
+ log(f"Installer will be written to: {BUILD_DIR / 'output'}")
|
|
|
+ log("=" * 60)
|
|
|
+ return 0
|
|
|
+
|
|
|
+
|
|
|
+if __name__ == "__main__":
|
|
|
+ sys.exit(main())
|