Parse series-76320 style search hits from TheTVDB v4, document Gear Lever Forgejo setup, and adjust AppImage build metadata for update detection. Co-authored-by: Cursor <[email protected]>
84 lines
2.7 KiB
Bash
Executable File
84 lines
2.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build HSRename as an AppImage.
|
|
# Requires: pip install -r requirements.txt -r requirements-build.txt
|
|
# Optional: appimagetool from https://github.com/AppImage/appimagetool/releases (for building the final .AppImage)
|
|
# Uses HSRename.png in the project folder as the app icon.
|
|
|
|
set -e
|
|
cd "$(dirname "$0")"
|
|
APP_NAME="HSRename"
|
|
APPDIR="${APP_NAME}.AppDir"
|
|
EXE_NAME="$APP_NAME"
|
|
VERSION="$(tr -d '[:space:]' < VERSION 2>/dev/null || echo "")"
|
|
|
|
echo "=== Installing build deps ==="
|
|
pip install -q -r requirements.txt -r requirements-build.txt
|
|
|
|
echo "=== Running PyInstaller ==="
|
|
pyinstaller --noconfirm --onedir --windowed \
|
|
-n "$EXE_NAME" \
|
|
--hidden-import=engine \
|
|
--hidden-import=engine.rules \
|
|
--hidden-import=engine.pipeline \
|
|
--hidden-import=engine.tvdb_client \
|
|
--hidden-import=engine.episode_match \
|
|
--hidden-import=gui \
|
|
--hidden-import=gui.main_window \
|
|
--hidden-import=gui.rule_widgets \
|
|
main.py
|
|
|
|
echo "=== Creating AppDir ==="
|
|
rm -rf "$APPDIR"
|
|
mkdir -p "$APPDIR/usr/bin"
|
|
cp -a "dist/$EXE_NAME" "$APPDIR/usr/bin/"
|
|
mkdir -p "$APPDIR/usr/share/hsrename"
|
|
echo "$VERSION" > "$APPDIR/usr/share/hsrename/VERSION"
|
|
if [[ -f "packaging/release-stamp-${VERSION}.txt" ]]; then
|
|
cp "packaging/release-stamp-${VERSION}.txt" "$APPDIR/usr/share/hsrename/release-stamp.txt"
|
|
fi
|
|
# Gear Lever compares file sizes; incompressible pad for patch releases (zeros squash to nothing).
|
|
dd if=/dev/urandom of="$APPDIR/usr/share/hsrename/.buildpad" bs=1024 count=300 status=none
|
|
cat > "$APPDIR/usr/share/hsrename/changelog.txt" << EOF
|
|
HSRename ${VERSION}
|
|
- Fix TheTVDB search dropping results (parse series-76320 style IDs)
|
|
- Gear Lever Forgejo update docs
|
|
EOF
|
|
|
|
cat > "$APPDIR/AppRun" << EOF
|
|
#!/bin/sh
|
|
SELF=\$(readlink -f "\$0")
|
|
HERE=\${SELF%/*}
|
|
exec "\$HERE/usr/bin/$EXE_NAME/$EXE_NAME" "\$@"
|
|
EOF
|
|
chmod +x "$APPDIR/AppRun"
|
|
|
|
cat > "$APPDIR/hsrename.desktop" << EOF
|
|
[Desktop Entry]
|
|
Name=HSRename
|
|
Comment=Mass rename files with preview and flexible rules
|
|
Exec=HSRename
|
|
Icon=HSRename
|
|
Type=Application
|
|
Categories=Utility;FileTools;
|
|
X-AppImage-Version=${VERSION}
|
|
EOF
|
|
# Use project icon as app icon and logo
|
|
if [[ -f HSRename.png ]]; then
|
|
cp HSRename.png "$APPDIR/HSRename.png"
|
|
else
|
|
echo "Warning: HSRename.png not found; appimagetool may fail or use no icon."
|
|
fi
|
|
|
|
echo "=== Building AppImage (requires appimagetool) ==="
|
|
# Note: appimagetool does not accept plain https URLs for -u; use zsync/gh-releases-zsync per AppImage docs.
|
|
if command -v appimagetool &>/dev/null; then
|
|
OUT="${APP_NAME}.AppImage"
|
|
appimagetool "$APPDIR" "$OUT"
|
|
echo "Done: $OUT"
|
|
else
|
|
echo "AppDir is ready at $APPDIR/"
|
|
echo "To create the .AppImage, install appimagetool and run:"
|
|
echo " appimagetool $APPDIR ${APP_NAME}.AppImage"
|
|
echo " # Get it from: https://github.com/AppImage/appimagetool/releases"
|
|
fi
|