summaryrefslogtreecommitdiff
path: root/BitKeeper/triggers/post-outgoing
blob: 214aa658f8750668b2cf6c31ec6dcdaa57b8425f (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
#!/bin/sh

LIST=openzaurus-cvslogs@lists.sf.net


if [ X"$BK_STATUS" = XDRYRUN -o X"$BK_STATUS" = XNOTHING ]
then exit 0
fi

if [ "$BK_SIDE" = server ]
then U=$BKD_USER
     H=$BKD_HOST
     R=$BKD_ROOT
else U=$BK_USER
     H=$BK_HOST
     R=$BK_ROOT
fi
R_OUT=`echo $BKD_ROOT | sed "s,.*/,,"`

if !(echo $BKD_HOST|grep -q bitkeeper.com)
then exit 0
fi

if [ $BK_SIDE != client ]
then exit 0
fi

echo "Sending notification mail to $LIST..."

(
    echo ${U}@${H} fired the $BK_TRIGGER trigger in $R_OUT
    case "$BK_TRIGGER" in
        pre-outgoing)   VERB=Sending;;
        post-outgoing)  VERB=Sent;;
        pre-incoming)   VERB=Receiving;;
        post-incoming)  VERB=Received;;
        pre-resolve)    VERB=Resolving;;
        pre-commit)     VERB=Committing;;
        post-commit)    VERB=Committed;;
        pre-apply)      VERB=Applying;;
    esac
    if [ X"$BK_PENDING" != X ]
    then (
         echo $VERB the following deltas
         echo
         bk prs - < $BK_PENDING
         ) | sed 's/^/    /'
    fi
    if [ X"$BK_CSETLIST" != X ]
    then (
         echo $VERB the following changesets
         echo
         BK_CSETLIST=BitKeeper/etc/csets-in
         bk changes -v - < $BK_CSETLIST
         ) | sed 's/^/    /'
    fi
    if [ X"$BK_CSETS" != X ]
    then (
         echo $VERB the following changesets
         echo
         bk changes -v -r$BK_CSETS
         ) | sed 's/^/    /'
    fi
) | mail -s "${U}@${H}:${R} - $BK_EVENT" $LIST