vendor_chattolib.sh 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. #!/bin/bash
  2. # Vendoring script for hermes-chatto-plugin
  3. #
  4. # Downloads chattolib and all its dependencies with uv and vendors them into
  5. # vendor/. Three of them (pyqwest, protobuf, protobuf-py-ext) ship compiled
  6. # extension modules, so the tree is split by platform:
  7. #
  8. # vendor/common/ pure-Python packages, shared
  9. # vendor/platform/<tag>/ compiled extensions, one dir per platform
  10. #
  11. # vendor_path.py picks the right directory at import time.
  12. #
  13. # Usage:
  14. # ./vendor_chattolib.sh # all default platforms
  15. # PLATFORMS="linux-x86_64" ./vendor_chattolib.sh
  16. # CHATTOLIB_SPEC="chattolib[realtime]==0.4.20.post1" ./vendor_chattolib.sh
  17. # VENDOR_DIR="/tmp/vendor-alt" ./vendor_chattolib.sh
  18. set -euo pipefail
  19. PLUGIN_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
  20. # Overridable from the environment; unset or empty falls back to the plugin's
  21. # own vendor/ so neither `set -u` nor a stray empty value can break startup.
  22. VENDOR_DIR="${VENDOR_DIR:-$PLUGIN_DIR/vendor}"
  23. BUILD_DIR="$(mktemp -d)"
  24. trap 'rm -rf "$BUILD_DIR"' EXIT
  25. # The [realtime] extra pulls in websockets, which chattolib's event stream
  26. # imports at connect time. Without it the plugin registers fine and only
  27. # starts warn-looping once the gateway connects — vendor it.
  28. CHATTOLIB_SPEC="${CHATTOLIB_SPEC:-chattolib[realtime]>=0.4.20}"
  29. # Wheels are resolved for this Python version. 3.11 is the project's minimum
  30. # (pyproject: requires-python) AND the version for which the binary packages
  31. # still provide cp310-abi3 wheels — those are forward compatible, so one build
  32. # covers 3.11, 3.12, 3.13 and 3.14. Do not raise this without checking that
  33. # the resulting .so files are still abi3.
  34. PYTHON_VERSION="${PYTHON_VERSION:-3.11}"
  35. # Platform tag (as used in vendor/platform/ and by vendor_path.py) mapped to
  36. # the uv --python-platform target. Add entries here to support more platforms;
  37. # vendor_path.py derives the same tags from platform.system()/machine().
  38. platform_target() {
  39. case "$1" in
  40. linux-x86_64) echo "x86_64-unknown-linux-gnu" ;;
  41. linux-aarch64) echo "aarch64-unknown-linux-gnu" ;;
  42. linux-x86_64-musl) echo "x86_64-unknown-linux-musl" ;;
  43. linux-aarch64-musl) echo "aarch64-unknown-linux-musl" ;;
  44. macos-arm64) echo "aarch64-apple-darwin" ;;
  45. macos-x86_64) echo "x86_64-apple-darwin" ;;
  46. windows-amd64) echo "x86_64-pc-windows-msvc" ;;
  47. *) return 1 ;;
  48. esac
  49. }
  50. # Default set: Linux (deployment, both architectures) and Apple Silicon (dev).
  51. DEFAULT_PLATFORMS="linux-x86_64 linux-aarch64 macos-arm64"
  52. read -r -a PLATFORM_LIST <<< "${PLATFORMS:-$DEFAULT_PLATFORMS}"
  53. if ! command -v uv > /dev/null 2>&1; then
  54. echo "❌ uv nicht gefunden — siehe https://docs.astral.sh/uv/" >&2
  55. exit 1
  56. fi
  57. echo "📦 Vendoring '$CHATTOLIB_SPEC' für: ${PLATFORM_LIST[*]}"
  58. echo " (Python $PYTHON_VERSION, nur Binär-Wheels — kein Bauen aus Sourcen)"
  59. for tag in "${PLATFORM_LIST[@]}"; do
  60. if ! target="$(platform_target "$tag")"; then
  61. echo "❌ Unbekannte Plattform '$tag'. Bekannt: linux-x86_64, linux-aarch64," >&2
  62. echo " linux-x86_64-musl, linux-aarch64-musl, macos-arm64, macos-x86_64, windows-amd64" >&2
  63. exit 1
  64. fi
  65. echo " → $tag ($target)"
  66. # --only-binary :all: is required: a source distribution could not be built
  67. # for a foreign platform, and building it for the host would silently
  68. # produce artifacts for the wrong architecture.
  69. uv pip install \
  70. --target "$BUILD_DIR/$tag" \
  71. --python-platform "$target" \
  72. --python-version "$PYTHON_VERSION" \
  73. --only-binary :all: \
  74. --quiet \
  75. "$CHATTOLIB_SPEC"
  76. done
  77. echo "🧹 Bereinige alten vendor-Ordner..."
  78. # Guard before the destructive step: this script must never run rm -rf with
  79. # an empty or unset target, whatever future edits do to the assignment above.
  80. : "${VENDOR_DIR:?VENDOR_DIR ist nicht gesetzt — Abbruch vor rm -rf}"
  81. rm -rf "$VENDOR_DIR"
  82. mkdir -p "$VENDOR_DIR"
  83. echo "✂️ Trenne plattformunabhängige von binären Paketen..."
  84. python3 "$PLUGIN_DIR/vendor_split.py" "$BUILD_DIR" "$VENDOR_DIR" "${PLATFORM_LIST[@]}"
  85. echo "📄 Erstelle __init__.py Marker..."
  86. touch "$VENDOR_DIR/__init__.py"
  87. find "$VENDOR_DIR" -type d -name "__pycache__" -exec rm -rf {} + 2> /dev/null || true
  88. echo "🔍 Verifiziere Import für die aktuelle Plattform..."
  89. if python3 -c "
  90. import sys
  91. sys.path.insert(0, '$PLUGIN_DIR')
  92. from vendor_path import setup_vendor_path, platform_tag
  93. try:
  94. setup_vendor_path()
  95. except ImportError as exc:
  96. print(f' ⓘ {exc}')
  97. sys.exit(0)
  98. import chattolib.client
  99. import chattolib.realtime
  100. print(f' ✓ chattolib inkl. realtime importiert ({platform_tag()})')
  101. "; then
  102. :
  103. else
  104. echo "❌ Import-Verifikation fehlgeschlagen" >&2
  105. exit 1
  106. fi
  107. echo "✓ Fertig: $(du -sh "$VENDOR_DIR" | cut -f1) in $VENDOR_DIR"
  108. echo " 'git add vendor/' nicht vergessen."