mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
76 lines
1.3 KiB
Bash
Executable File
76 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Commits updates to apps, allowing you to edit the commit messages
|
|
|
|
commands=()
|
|
|
|
if [ ! -d metadata ]; then
|
|
[ -d ../metadata ] && cd .. || { echo "No metadata files found!"; exit 2; }
|
|
fi
|
|
|
|
while read line; do
|
|
if [[ "$line" == *M*metadata/*.txt ]]; then
|
|
file=${line##* }
|
|
|
|
id=${file##*/}
|
|
id=${id%.txt*}
|
|
if [ $# -gt 0 ]; then
|
|
found=false
|
|
for arg in "$@"; do
|
|
if [ "$id" == "$arg" ]; then
|
|
found=true
|
|
break
|
|
fi
|
|
done
|
|
$found || continue
|
|
fi
|
|
|
|
if [ -d metadata/$id ]; then
|
|
extra=metadata/$id
|
|
else
|
|
extra=
|
|
fi
|
|
|
|
name= autoname=
|
|
while read l; do
|
|
if [[ "$l" == "Auto Name:"* ]]; then
|
|
autoname=${l##*:}
|
|
elif [[ "$l" == "Name:"* ]]; then
|
|
name=${l##*:}
|
|
fi
|
|
done < "$file"
|
|
|
|
if [ -n "$name" ]; then
|
|
fullname="$name ($id)"
|
|
elif [ -n "$autoname" ]; then
|
|
fullname="$autoname ($id)"
|
|
else
|
|
fullname="$id"
|
|
fi
|
|
|
|
newbuild=0
|
|
while read l; do
|
|
if [[ "$l" == "+Build:"* ]]; then
|
|
newbuild=1
|
|
build=${l#*:}
|
|
version=${build%%,*}
|
|
build=${build#*,}
|
|
vercode=${build%%,*}
|
|
fi
|
|
done < <(git diff HEAD -- "$file")
|
|
|
|
if [ $newbuild -eq 0 ]; then
|
|
message="$fullname:"
|
|
else
|
|
message="Update $fullname to $version ($vercode)"
|
|
fi
|
|
|
|
commands+=("git commit -m '$message' -e -v -- $file $extra")
|
|
fi
|
|
done < <(git status --porcelain)
|
|
|
|
for cmd in "${commands[@]}"; do
|
|
eval "$cmd"
|
|
done
|
|
|