1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-06 11:00:13 +02:00
fdroidserver/fd-commit

127 lines
2.6 KiB
Plaintext
Raw Normal View History

2014-07-05 13:01:17 +02:00
#!/bin/sh
2013-12-30 17:15:27 +01:00
#
# fd-commit - part of the FDroid 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
#
2014-01-28 14:07:19 +01:00
# Copyright (C) 2013-2014 Daniel Martí <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
2014-07-05 13:01:17 +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
2014-07-05 13:01:17 +02:00
[ -z "$line" ] && continue
case "$line" in
*\?\?*metadata/*.txt) new=true ;;
*M*metadata/*.txt) new=false ;;
esac
2014-07-05 13:01:17 +02:00
file=${line##* }
2014-04-28 23:36:32 +02:00
id=${file##*/}
id=${id%.txt*}
2014-07-05 13:01:17 +02:00
2014-04-28 23:36:32 +02:00
if [ $# -gt 0 ]; then
found=false
for arg in "$@"; do
if [ "$id" == "$arg" ]; then
found=true
break
fi
2014-04-28 23:36:32 +02:00
done
$found || continue
fi
2014-04-28 23:36:32 +02:00
[ -d metadata/$id ] && extra=metadata/$id || extra=
name= autoname=
while read l; do
2014-07-05 13:01:17 +02:00
case "$l" in
'Auto Name:'*) autoname=${l#*:} ;;
'Name:'*) name=${l#*:} ;;
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
2014-07-05 13:01:17 +02:00
while read l; do
2014-07-05 13:01:17 +02:00
case "$l" in
*"Maintainer Notes:"*) break ;;
"-Build:"*) onlybuild=false ;;
"+Build:"*)
$newbuild && onlybuild=false
newbuild=true
build=${l#*:}
version=${build%%,*}
build=${build#*,}
vercode=${build%%,*}
;;
'+'*"disable="*)
$newbuild && $onlybuild && disable=true
;;
esac
done << EOF
$(git diff HEAD -- "$file")
EOF
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//\"/\\\"}
2014-07-05 13:01:17 +02:00
commands="$commands%%git add -- $file $extra && git commit -m \"$message\" -e -v"
done << EOF
$(git status --porcelain metadata)
EOF
2013-07-02 14:39:56 +02:00
2014-07-05 13:01:17 +02:00
[ -z "$commands" ] && exit 0
2014-01-15 10:12:47 +01:00
git reset >/dev/null
2014-07-05 13:01:17 +02:00
IFS='%%'
for cmd in $commands; do
[ -z "$cmd" ] && continue
eval $cmd
2014-01-15 10:12:47 +01:00
git reset >/dev/null
done