vendor_chattolib.sh 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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==0.4.20" ./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. CHATTOLIB_SPEC="${CHATTOLIB_SPEC:-chattolib>=0.4.20}"
  26. # Wheels are resolved for this Python version. 3.11 is the project's minimum
  27. # (pyproject: requires-python) AND the version for which the binary packages
  28. # still provide cp310-abi3 wheels — those are forward compatible, so one build
  29. # covers 3.11, 3.12, 3.13 and 3.14. Do not raise this without checking that
  30. # the resulting .so files are still abi3.
  31. PYTHON_VERSION="${PYTHON_VERSION:-3.11}"
  32. # Platform tag (as used in vendor/platform/ and by vendor_path.py) mapped to
  33. # the uv --python-platform target. Add entries here to support more platforms;
  34. # vendor_path.py derives the same tags from platform.system()/machine().
  35. platform_target() {
  36. case "$1" in
  37. linux-x86_64) echo "x86_64-unknown-linux-gnu" ;;
  38. linux-aarch64) echo "aarch64-unknown-linux-gnu" ;;
  39. linux-x86_64-musl) echo "x86_64-unknown-linux-musl" ;;
  40. linux-aarch64-musl) echo "aarch64-unknown-linux-musl" ;;
  41. macos-arm64) echo "aarch64-apple-darwin" ;;
  42. macos-x86_64) echo "x86_64-apple-darwin" ;;
  43. windows-amd64) echo "x86_64-pc-windows-msvc" ;;
  44. *) return 1 ;;
  45. esac
  46. }
  47. # Default set: Linux (deployment, both architectures) and Apple Silicon (dev).
  48. DEFAULT_PLATFORMS="linux-x86_64 linux-aarch64 macos-arm64"
  49. read -r -a PLATFORM_LIST <<< "${PLATFORMS:-$DEFAULT_PLATFORMS}"
  50. if ! command -v uv > /dev/null 2>&1; then
  51. echo "❌ uv nicht gefunden — siehe https://docs.astral.sh/uv/" >&2
  52. exit 1
  53. fi
  54. echo "📦 Vendoring '$CHATTOLIB_SPEC' für: ${PLATFORM_LIST[*]}"
  55. echo " (Python $PYTHON_VERSION, nur Binär-Wheels — kein Bauen aus Sourcen)"
  56. for tag in "${PLATFORM_LIST[@]}"; do
  57. if ! target="$(platform_target "$tag")"; then
  58. echo "❌ Unbekannte Plattform '$tag'. Bekannt: linux-x86_64, linux-aarch64," >&2
  59. echo " linux-x86_64-musl, linux-aarch64-musl, macos-arm64, macos-x86_64, windows-amd64" >&2
  60. exit 1
  61. fi
  62. echo " → $tag ($target)"
  63. # --only-binary :all: is required: a source distribution could not be built
  64. # for a foreign platform, and building it for the host would silently
  65. # produce artifacts for the wrong architecture.
  66. uv pip install \
  67. --target "$BUILD_DIR/$tag" \
  68. --python-platform "$target" \
  69. --python-version "$PYTHON_VERSION" \
  70. --only-binary :all: \
  71. --quiet \
  72. "$CHATTOLIB_SPEC"
  73. done
  74. echo "🧹 Bereinige alten vendor-Ordner..."
  75. # Guard before the destructive step: this script must never run rm -rf with
  76. # an empty or unset target, whatever future edits do to the assignment above.
  77. : "${VENDOR_DIR:?VENDOR_DIR ist nicht gesetzt — Abbruch vor rm -rf}"
  78. rm -rf "$VENDOR_DIR"
  79. mkdir -p "$VENDOR_DIR"
  80. echo "✂️ Trenne plattformunabhängige von binären Paketen..."
  81. python3 "$PLUGIN_DIR/vendor_split.py" "$BUILD_DIR" "$VENDOR_DIR" "${PLATFORM_LIST[@]}"
  82. echo "📄 Erstelle __init__.py Marker..."
  83. touch "$VENDOR_DIR/__init__.py"
  84. find "$VENDOR_DIR" -type d -name "__pycache__" -exec rm -rf {} + 2> /dev/null || true
  85. echo "🔍 Verifiziere Import für die aktuelle Plattform..."
  86. if python3 -c "
  87. import sys
  88. sys.path.insert(0, '$PLUGIN_DIR')
  89. from vendor_path import setup_vendor_path, platform_tag
  90. try:
  91. setup_vendor_path()
  92. except ImportError as exc:
  93. print(f' ⓘ {exc}')
  94. sys.exit(0)
  95. import chattolib.client
  96. print(f' ✓ chattolib importiert ({platform_tag()})')
  97. "; then
  98. :
  99. else
  100. echo "❌ Import-Verifikation fehlgeschlagen" >&2
  101. exit 1
  102. fi
  103. echo "✓ Fertig: $(du -sh "$VENDOR_DIR" | cut -f1) in $VENDOR_DIR"
  104. echo " 'git add vendor/' nicht vergessen."