1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-08 18:20:10 +02:00
fdroidserver/fd-commit

119 lines
2.6 KiB
Plaintext
Raw Normal View History

#!/bin/bash
2013-12-30 17:15:27 +01:00
#
# fd-commit - part of the F-Droid server tools
2013-09-18 00:11:35 +02:00
# Commits updates to apps, allowing you to edit the commit messages
2013-12-30 17:15:27 +01:00
#
# Copyright (C) 2013-2014 Daniel Marti <mvdan@mvdan.cc>
2013-12-30 17:15:27 +01:00
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2013-09-18 00:11:35 +02:00
commands=()
if [ ! -d metadata ]; then
2014-02-13 08:17:58 +01:00
if [ -d ../metadata ]; then
cd ..
else
echo "No metadata files found!"
exit 2
fi
fi
2013-06-18 00:18:38 +02:00
while read line; do
case "$line" in
*'??'*'metadata/'*'.txt') new=true ;;
*'M'*'metadata/'*'.txt') new=false ;;
*) continue ;;
esac
file=${line##* }
2014-04-28 23:36:32 +02:00
id=${file##*/}
id=${id%.txt*}
2014-04-28 23:36:32 +02:00
if [ $# -gt 0 ]; then
2014-07-05 13:06:01 +02:00
case "$@" in
*" $id "*) ;; # Middle
"$id "*) ;; # Start
*" $id") ;; # End
"$id") ;; # Alone
*) continue ;; # Missing
esac
2014-04-28 23:36:32 +02:00
fi
2014-04-28 23:36:32 +02:00
[ -d metadata/$id ] && extra=metadata/$id || extra=
name= autoname=
while read l; do
case "$l" in
'Auto Name:'*) autoname=${l#*:} ;;
'Name:'*) name=${l#*:} ;;
'Summary:'*) break ;;
esac
2014-04-28 23:36:32 +02:00
done < "$file"
if [ -n "$name" ]; then
fullname="$name"
elif [ -n "$autoname" ]; then
fullname="$autoname"
else
fullname="$id"
fi
2014-04-28 23:36:32 +02:00
if $new; then
message="New app: $fullname"
else
onlybuild=true
2013-12-31 10:18:04 +01:00
newbuild=false
2014-01-28 16:59:27 +01:00
disable=false
while read line; do
case "$line" in
'-Build:'*) onlybuild=false ;;
'+Build:'*)
$newbuild && onlybuild=false
newbuild=true
2014-07-06 23:28:25 +02:00
build=${line#*:}
version=${build%%,*}
build=${build#*,}
vercode=${build%%,*}
;;
'+'*'disable='*)
$newbuild && $onlybuild && disable=true
;;
esac
done < <(git diff HEAD -- "$file")
if $newbuild && $onlybuild; then
if $disable; then
message="Don't update $fullname to $version ($vercode)"
else
message="Update $fullname to $version ($vercode)"
fi
2013-12-31 10:18:04 +01:00
else
message="$fullname:"
fi
fi
2014-04-28 23:36:32 +02:00
message=${message//\"/\\\"}
commands+=("git add -- $file $extra && git commit -m \"$message\" -e -v")
done < <(git status --porcelain metadata)
2013-07-02 14:39:56 +02:00
[ -z "$commands" ] && exit 0
2014-01-15 10:12:47 +01:00
git reset >/dev/null
for cmd in "${commands[@]}"; do
eval "$cmd"
2014-01-15 10:12:47 +01:00
git reset >/dev/null
done