1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dotclear2_ynh.git synced 2024-09-03 18:26:29 +02:00

Upgrade updater.sh to manifestv2

This commit is contained in:
Salamandar 2023-12-12 09:44:06 +01:00
parent 4cbf6f735b
commit e945eb1bac

View file

@ -14,15 +14,15 @@
#================================================= #=================================================
# Fetching information # Fetching information
current_version=$(cat manifest.json | jq -j '.version|split("~")[0]') current_version=$(cat manifest.toml | grep "version =" | sed 's|version = "\(.*\)~ynh[0-9]*"|\1|')
repo=$(cat manifest.json | jq -j '.upstream.code|split("https://github.com/")[1]') # repo=$(cat manifest.json | jq -j '.upstream.code|split("https://github.com/")[1]')
asset=$(curl --silent "https://download.dotclear.org/latest/" | grep "dotclear-.*?.zip" -Po | head -1) asset=$(curl --silent "https://download.dotclear.org/latest/" | grep "dotclear-.*?.zip" -Po | head -1)
version=${asset%.zip} version=${asset%.zip}
version=${version#dotclear-} version=${version#dotclear-}
# Later down the script, we assume the version has only digits and dots # Later down the script, we assume the version has only digits and dots
# Sometimes the release name starts with a "v", so let's filter it out. # Sometimes the release name starts with a "v", so let's filter it out.
# You may need more tweaks here if the upstream repository has different naming conventions. # You may need more tweaks here if the upstream repository has different naming conventions.
if [[ ${version:0:1} == "v" || ${version:0:1} == "V" ]]; then if [[ ${version:0:1} == "v" || ${version:0:1} == "V" ]]; then
version=${version:1} version=${version:1}
fi fi
@ -54,7 +54,7 @@ src="app"
tempdir="$(mktemp -d)" tempdir="$(mktemp -d)"
# Download sources and calculate checksum # Download sources and calculate checksum
curl --silent -4 -L http://download.dotclear.org/latest/dotclear-$version.zip -o "$tempdir/$asset" curl --silent -4 -L http://download.dotclear.org/latest/dotclear-$version.tar.gz -o "$tempdir/$asset"
checksum=$(sha256sum "$tempdir/$asset" | head -c 64) checksum=$(sha256sum "$tempdir/$asset" | head -c 64)
# Delete temporary directory # Delete temporary directory
@ -66,17 +66,10 @@ if [[ $asset == *.zip ]]; then
fi fi
# Rewrite source file # Rewrite source file
cat <<EOT > conf/$src.src set -x
SOURCE_URL=http://download.dotclear.org/latest/dotclear-$version.zip sed -i "s|/dotclear-.*.tar.gz|/dotclear-$version.tar.gz|" manifest.toml
SOURCE_SUM=$checksum sed -i "s|sha256 = \".*\"|sha256 = \"$checksum\"|" manifest.toml
SOURCE_SUM_PRG=sha256sum sed -i "s|version = \".*\"|version = \"$version~ynh1\"|" manifest.toml
SOURCE_FORMAT=$extension
SOURCE_IN_SUBDIR=true
SOURCE_FILENAME=
SOURCE_EXTRACT=true
EOT
echo "... conf/$src.src updated"
#================================================= #=================================================
# SPECIFIC UPDATE STEPS # SPECIFIC UPDATE STEPS
#================================================= #=================================================
@ -88,11 +81,8 @@ echo "... conf/$src.src updated"
# GENERIC FINALIZATION # GENERIC FINALIZATION
#================================================= #=================================================
# Replace new version in manifest
echo "$(jq -s --indent 4 ".[] | .version = \"$version~ynh1\"" manifest.json)" > manifest.json
# No need to update the README, yunohost-bot takes care of it # No need to update the README, yunohost-bot takes care of it
# The Action will proceed only if the PROCEED environment variable is set to true # The Action will proceed only if the PROCEED environment variable is set to true
echo "PROCEED=true" >> $GITHUB_ENV echo "PROCEED=true" >> $GITHUB_ENV
exit 0 exit 0