1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00
fdroidserver/fd-commit

65 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-06-18 00:18:38 +02:00
#!/bin/bash
2013-09-18 00:11:35 +02:00
# 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
2013-06-18 00:18:38 +02:00
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
[ -d metadata/$id ] && extra=metadata/$id
name=
while read l; do
if [[ "$l" == "Auto Name:"* ]]; then
name=${l##*:}
break
fi
done < "$file"
[ -n "$name" ] && fullname="$name ($id)" || fullname=$id
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
2013-06-18 00:18:38 +02:00
done < <(git status --porcelain)
2013-07-02 14:39:56 +02:00
for cmd in "${commands[@]}"; do
eval "$cmd"
done