53 lines
1.7 KiB
Bash
Executable File
53 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl jq common-updater-scripts dotnetCorePackages.sdk_5_0 gnused nix coreutils findutils
|
|
|
|
set -euo pipefail
|
|
|
|
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
export DOTNET_NOLOGO=1
|
|
|
|
latestVersion="$(curl -s "https://api.github.com/repos/jellyfin/jellyfin/releases?per_page=1" | jq -r ".[0].tag_name" | sed 's/^v//')"
|
|
currentVersion=$(nix-instantiate --eval -E "with import ./. {}; jellyfin.version or (lib.getVersion jellyfin)" | tr -d '"')
|
|
|
|
if [[ "$currentVersion" == "$latestVersion" ]]; then
|
|
echo "jellyfin is up-to-date: $currentVersion"
|
|
exit 0
|
|
fi
|
|
|
|
pushd "$(dirname "${BASH_SOURCE[0]}")"
|
|
nugetDepsFile=$(realpath ./nuget-deps.nix)
|
|
popd
|
|
|
|
update-source-version jellyfin "$latestVersion"
|
|
|
|
store_src="$(nix-build . -A jellyfin.src --no-out-link)"
|
|
src="$(mktemp -d /tmp/jellyfin-src.XXX)"
|
|
echo "Temp src dir: $src"
|
|
cp -rT "$store_src" "$src"
|
|
chmod -R +w "$src"
|
|
|
|
pushd "$src"
|
|
|
|
mkdir ./nuget_tmp.packages
|
|
dotnet restore Jellyfin.Server --packages ./nuget_tmp.packages --runtime linux-x64
|
|
|
|
echo "# This file has been generated by the jellyfin updateScript. Do not edit!" >"$nugetDepsFile"
|
|
echo "{ fetchNuGet }: [" >>"$nugetDepsFile"
|
|
while read -r pkg_spec; do
|
|
{ read -r pkg_name; read -r pkg_version; } < <(
|
|
# Build version part should be ignored: `3.0.0-beta2.20059.3+77df2220` -> `3.0.0-beta2.20059.3`
|
|
sed -nE 's/.*<id>([^<]*).*/\1/p; s/.*<version>([^<+]*).*/\1/p' "$pkg_spec")
|
|
pkg_sha256="$(nix-hash --type sha256 --flat --base32 "$(dirname "$pkg_spec")"/*.nupkg)"
|
|
cat >>"$nugetDepsFile" <<EOF
|
|
(fetchNuGet {
|
|
name = "$pkg_name";
|
|
version = "$pkg_version";
|
|
sha256 = "$pkg_sha256";
|
|
})
|
|
EOF
|
|
done < <(find ./nuget_tmp.packages -name '*.nuspec' | sort)
|
|
echo "]" >>"$nugetDepsFile"
|
|
|
|
popd
|
|
rm -r "$src"
|