blob: a4e840593fd4ea6c481058d7a02f56c49e072d71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#!/bin/bash
#
# Git post-receive hook to update Patchwork patches after Git pushes
#
# Copyright © 2010 martin f. krafft <madduck@madduck.net>
# Released under the GNU General Public License v2 or later.
set -eu
#TODO: the state map should really live in the repo's git-config
STATE_MAP="refs/heads/master:Accepted"
#
# ignore all commits already present in these refs
# e.g.,
# EXCLUDE="refs/heads/upstream refs/heads/other-project"
#
EXCLUDE=""
PWDIR=/opt/patchwork/patchwork
do_exit=0
trap "do_exit=1" INT
get_patchwork_hash()
{
local hash
hash=$(git show -C $1 | python $PWDIR/parser.py --hash)
echo $hash
test -n "$hash"
}
get_patch_id()
{
local id
id=$($PWDIR/bin/pwclient info -h $1 2>/dev/null \
| sed -rne 's,- id[[:space:]]*: ,,p')
echo $id
test -n "$id"
}
set_patch_state()
{
$PWDIR/bin/pwclient update -s $2 -c $3 $1 2>&1
}
update_patches()
{
local cnt; cnt=0
for rev in $(git rev-parse --not ${EXCLUDE} |
git rev-list --stdin --no-merges --reverse ${1}..${2}); do
if [ "$do_exit" = 1 ]; then
echo "I: exiting..." >&2
break
fi
hash=$(get_patchwork_hash $rev) \
|| { echo "E: failed to hash rev $rev." >&2; continue; }
id=$(get_patch_id $hash) \
|| { echo "E: failed to find patch for rev $rev." >&2; continue; }
reason="$(set_patch_state $id $3 $rev)" \
|| { echo "E: failed to update patch #$id${reason:+: $reason}." >&2; continue; }
echo "I: patch #$id updated using rev $rev." >&2
cnt=$(($cnt + 1))
done
echo "I: $cnt patch(es) updated to state $3." >&2
}
while read oldrev newrev refname; do
found=0
for i in $STATE_MAP; do
key="${i%:*}"
if [ "$key" = "$refname" ]; then
update_patches $oldrev $newrev ${i#*:}
found=1
break
fi
done
if [ $found -eq 0 ]; then
echo "E: STATE_MAP has no mapping for branch $refname" >&2
fi
done
|