Migrate from pip-install-e + setuptools to a uv workspace with a
committed uv.lock for deterministic deps. Switch both members to
hatchling, and move package sources into nested standard layout
(l4d2host/l4d2host/, l4d2web/l4d2web/) so builds work from a
read-only source tree — setuptools wrote egg-info to source under
the old layout, which broke uv sync on the root-owned /opt/left4me/src.
Local dev install: `pip install -e ./l4d2host -e ./l4d2web` -> `uv sync`.
.envrc switches from `layout python python3.13` to `use uv`. Python
pinned to 3.13 via .python-version.
l4d2web now declares its cross-dep on l4d2host explicitly via
[tool.uv.sources] (workspace = true). l4d2web/alembic.ini and
l4d2web/alembic/ stay at the project root (standard alembic layout).
Test fixes:
- tests/__init__.py added to both test dirs so pytest doesn't shadow
l4d2host as a namespace package via outer-dir walk.
- 3 CWD-relative paths in tests (l4d2web/static/css/{tokens,layout}.css
and js/sse.js) anchored to Path(__file__) so they survive layout
changes.
- Two test_install.py tests now monkeypatch HOME to tmp_path so they
stop silently mutating ~/.steam/sdk32 on every run.
628 tests pass under sandboxed `uv run pytest`.
Per docs/superpowers/plans/2026-05-15-uv-workspace-execution.md;
prereq for the ckn-bw bundle's uv-sync action (queued).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
from dataclasses import dataclass, field
|
|
from pathlib import Path
|
|
|
|
import yaml
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class OverlayRef:
|
|
path: str
|
|
alias: str | None = None
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class InstanceSpec:
|
|
port: int
|
|
overlays: list[OverlayRef] = field(default_factory=list)
|
|
arguments: list[str] = field(default_factory=list)
|
|
config: list[str] = field(default_factory=list)
|
|
|
|
|
|
def _parse_overlay(item) -> OverlayRef:
|
|
if isinstance(item, str):
|
|
return OverlayRef(path=item)
|
|
if isinstance(item, dict):
|
|
path = item.get("path")
|
|
if not isinstance(path, str) or not path:
|
|
raise ValueError(f"overlay entry missing 'path': {item!r}")
|
|
raw_alias = item.get("alias")
|
|
alias = str(raw_alias) if raw_alias not in (None, "") else None
|
|
return OverlayRef(path=path, alias=alias)
|
|
raise ValueError(f"unsupported overlay entry type: {type(item).__name__}")
|
|
|
|
|
|
def load_spec(path: Path) -> InstanceSpec:
|
|
raw = yaml.safe_load(path.read_text()) or {}
|
|
return InstanceSpec(
|
|
port=int(raw["port"]),
|
|
overlays=[_parse_overlay(item) for item in raw.get("overlays", [])],
|
|
arguments=[str(item) for item in raw.get("arguments", [])],
|
|
config=[str(item) for item in raw.get("config", [])],
|
|
)
|