mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-25 19:01:14 +01:00
- Rewrite Flatpak manifest to build from source using SDK extensions (node22, rust-stable) with offline cargo/npm dependency caches - Add generate-sources.sh to produce cargo-sources.json and node-sources.json from lock files using flatpak-builder-tools - Vendor Node.js, protoc, and wasm-pack as archive sources with SHA256 verification and per-arch support - Add SHA256 verification to vendor-node.cjs and vendor-protoc.cjs - Rewrite update-manifest.sh to update git tag/commit and regenerate dependency sources - Update Flathub CI workflow to install generators and copy source files - Remove stale plugins/faker entry from package-lock.json
82 lines
2.8 KiB
Bash
Executable File
82 lines
2.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Generate offline dependency source files for Flatpak builds.
|
|
#
|
|
# Prerequisites:
|
|
# pip install flatpak-node-generator tomlkit aiohttp
|
|
# Clone https://github.com/flatpak/flatpak-builder-tools (for cargo generator)
|
|
#
|
|
# Usage:
|
|
# ./flatpak/generate-sources.sh
|
|
#
|
|
# This script generates:
|
|
# flatpak/cargo-sources.json - Cargo crate sources from Cargo.lock
|
|
# flatpak/node-sources.json - npm package sources from package-lock.json
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
|
|
# Check for flatpak-cargo-generator.py
|
|
CARGO_GENERATOR=""
|
|
if command -v flatpak-cargo-generator.py &>/dev/null; then
|
|
CARGO_GENERATOR="flatpak-cargo-generator.py"
|
|
elif [ -f "$SCRIPT_DIR/flatpak-builder-tools/cargo/flatpak-cargo-generator.py" ]; then
|
|
CARGO_GENERATOR="python3 $SCRIPT_DIR/flatpak-builder-tools/cargo/flatpak-cargo-generator.py"
|
|
else
|
|
echo "Error: flatpak-cargo-generator.py not found."
|
|
echo "Either install it in PATH or clone flatpak-builder-tools:"
|
|
echo " cd $SCRIPT_DIR && git clone https://github.com/flatpak/flatpak-builder-tools"
|
|
exit 1
|
|
fi
|
|
|
|
# Check for flatpak-node-generator
|
|
if ! command -v flatpak-node-generator &>/dev/null; then
|
|
echo "Error: flatpak-node-generator not found."
|
|
echo "Install it with: pip install flatpak-node-generator"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Generating cargo-sources.json..."
|
|
$CARGO_GENERATOR -o "$SCRIPT_DIR/cargo-sources.json" "$REPO_ROOT/Cargo.lock"
|
|
echo " Done: flatpak/cargo-sources.json"
|
|
|
|
echo "Generating node-sources.json..."
|
|
|
|
# flatpak-node-generator doesn't handle npm workspace packages (local paths
|
|
# without "resolved" or "link" fields). Strip them from a temp copy of the
|
|
# lockfile before running the generator.
|
|
TMPDIR=$(mktemp -d)
|
|
trap 'rm -rf "$TMPDIR"' EXIT
|
|
|
|
python3 -c "
|
|
import json, sys, shutil
|
|
with open(sys.argv[1]) as f:
|
|
data = json.load(f)
|
|
packages = data.get('packages', {})
|
|
to_remove = []
|
|
for name, info in packages.items():
|
|
if not name:
|
|
continue
|
|
if info.get('link'):
|
|
continue
|
|
if 'resolved' in info:
|
|
continue
|
|
# No 'resolved' and not a link — this is a local workspace package
|
|
to_remove.append(name)
|
|
for name in to_remove:
|
|
del packages[name]
|
|
with open(sys.argv[2], 'w') as f:
|
|
json.dump(data, f, indent=2)
|
|
# Copy package.json so the generator can read the root entry
|
|
shutil.copy2(sys.argv[3], sys.argv[4])
|
|
print(f'Stripped {len(to_remove)} local workspace packages from lockfile', file=sys.stderr)
|
|
" "$REPO_ROOT/package-lock.json" "$TMPDIR/package-lock.json" "$REPO_ROOT/package.json" "$TMPDIR/package.json"
|
|
|
|
flatpak-node-generator --no-requests-cache -o "$SCRIPT_DIR/node-sources.json" npm "$TMPDIR/package-lock.json"
|
|
echo " Done: flatpak/node-sources.json"
|
|
|
|
echo ""
|
|
echo "Source files generated. Commit them alongside the manifest."
|