mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-23 02:42:42 +00:00
* Let uv see the project before syncing it uv refuses to run when a project pins a required-version it does not match, in either direction: RomM pins ==0.12.13, which fails against both the 0.10.3 a container was built with and the 0.12.17 latest installs. UV_PROJECT_DIR points setup_uv at the project so it reads that pin. It is a prefix like PYTHON_VERSION and UV_VERSION, and the call sits directly under fetch_and_deploy: the project is on disk by then, and the deploy has closed its message block, which setup_uv needs since it opens one of its own. That is also the only call needed - nothing between the old early call and the deploy uses uv or Python, so the two collapse into one. Two things found along the way: UV_PYTHON was set as a command prefix on setup_uv in 14 places. setup_uv reads PYTHON_VERSION, never UV_PYTHON, and a prefix assignment does not outlive the call, so those pins did nothing. They now use PYTHON_VERSION, which installs the interpreter they were asking for. Five update scripts had no setup_uv at all while their install counterpart pinned a Python version. They now carry the same pin. immich is left out: it runs uv through sudo -u inside a retry loop. * yubal: drop the uv 0.7.19 pin The pin came in with the script and was never explained. uv 0.7.19 is from 2025-07-02; yubal's uv.lock has carried revision 3 since at least 2025-12-27, and older uv refuses a newer lockfile revision. The script runs uv sync --frozen, so there is no fallback. yubal declares no required-version of its own, so latest is what it gets - and if it ever pins one, that pin is now honoured.
101 lines
2.6 KiB
Bash
101 lines
2.6 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: MickLesk (CanbiZ)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/transmute-app/transmute
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
PYTHON_VERSION="3.13" setup_uv
|
|
NODE_VERSION="25" setup_nodejs
|
|
setup_ffmpeg
|
|
setup_gs
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt install -y \
|
|
inkscape \
|
|
tesseract-ocr \
|
|
libreoffice-impress \
|
|
libreoffice-common \
|
|
libmagic1 \
|
|
xvfb \
|
|
libsm6 \
|
|
libxext6 \
|
|
libpango-1.0-0 \
|
|
libopengl0 \
|
|
libpangocairo-1.0-0 \
|
|
libgdk-pixbuf-2.0-0 \
|
|
libffi-dev \
|
|
libcairo2 \
|
|
librsvg2-bin \
|
|
unrar-free \
|
|
python3-numpy \
|
|
python3-lxml \
|
|
python3-tinycss2 \
|
|
python3-cssselect
|
|
msg_ok "Installed Dependencies"
|
|
|
|
fetch_and_deploy_gh_release "pandoc" "jgm/pandoc" "binary" "latest" "" "pandoc-*-$(arch_resolve).deb"
|
|
fetch_and_deploy_gh_release "calibre" "kovidgoyal/calibre" "prebuild" "latest" "/opt/calibre" "calibre-*-$(arch_resolve "x86_64" "arm64").txz"
|
|
ln -sf /opt/calibre/ebook-convert /usr/bin/ebook-convert
|
|
ln -sf /usr/local/bin/ffmpeg /usr/bin/ffmpeg
|
|
fetch_and_deploy_gh_release "drawio" "jgraph/drawio-desktop" "binary" "latest" "" "drawio-$(arch_resolve)-*.deb"
|
|
fetch_and_deploy_gh_release "transmute" "transmute-app/transmute" "tarball"
|
|
|
|
msg_info "Setting up Python Backend"
|
|
cd /opt/transmute
|
|
$STD uv venv --clear /opt/transmute/.venv
|
|
$STD uv pip install --python /opt/transmute/.venv/bin/python -r requirements.txt
|
|
ln -sf /opt/transmute/.venv/bin/weasyprint /usr/bin/weasyprint
|
|
msg_ok "Set up Python Backend"
|
|
|
|
msg_info "Configuring Transmute"
|
|
SECRET_KEY=$(openssl rand -hex 64)
|
|
cat <<EOF >/opt/transmute/backend/.env
|
|
AUTH_SECRET_KEY=${SECRET_KEY}
|
|
HOST=0.0.0.0
|
|
PORT=3313
|
|
DATA_DIR=/opt/transmute/data
|
|
WEB_DIR=/opt/transmute/frontend/dist
|
|
QT_QPA_PLATFORM=offscreen
|
|
EOF
|
|
mkdir -p /opt/transmute/data
|
|
msg_ok "Configured Transmute"
|
|
|
|
msg_info "Building Frontend"
|
|
cd /opt/transmute/frontend
|
|
$STD npm ci
|
|
$STD npm run build
|
|
msg_ok "Built Frontend"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/transmute.service
|
|
[Unit]
|
|
Description=Transmute File Converter
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/opt/transmute
|
|
EnvironmentFile=/opt/transmute/backend/.env
|
|
ExecStart=/usr/bin/xvfb-run -a -s "-screen 0 1024x768x24 -nolisten tcp" /opt/transmute/.venv/bin/python backend/main.py
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now transmute
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|