mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-4.1-post-commit
into pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-4.1
This commit is contained in:
commit
36ea2e3091
1 changed files with 35 additions and 21 deletions
|
@ -26,6 +26,13 @@ then
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
IS_MERGE=`bk changes -r+ -k -m`
|
||||||
|
if [ "$IS_MERGE" = "" ]
|
||||||
|
then
|
||||||
|
echo Merge changeset, not sending mails
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
CHANGESET=`bk -R prs -r+ -h -d':P:::I:' ChangeSet`
|
CHANGESET=`bk -R prs -r+ -h -d':P:::I:' ChangeSet`
|
||||||
CSETKEY=`bk -R prs -r+ -h -d':KEY:' ChangeSet`
|
CSETKEY=`bk -R prs -r+ -h -d':KEY:' ChangeSet`
|
||||||
#
|
#
|
||||||
|
@ -41,42 +48,49 @@ WL=`bk -R prs -r+ -h -d':C:' ChangeSet | \
|
||||||
s/.*\(WL#[0-9][0-9]*\)/ \1/p'`
|
s/.*\(WL#[0-9][0-9]*\)/ \1/p'`
|
||||||
if [ "$BUG" = "" ]
|
if [ "$BUG" = "" ]
|
||||||
then
|
then
|
||||||
TO=dev-public@mysql.com
|
# TO=dev-public@mysql.com
|
||||||
BS=""
|
BS=""
|
||||||
BH=""
|
BH=""
|
||||||
else
|
else
|
||||||
TO=dev-bugs@mysql.com
|
# TO=dev-bugs@mysql.com
|
||||||
BS=" BUG#$BUG"
|
BS=" BUG#$BUG"
|
||||||
# need newline here
|
# need newline here
|
||||||
BH="X-Bug: $BUG
|
BH="X-Bug: $BUG
|
||||||
"
|
"
|
||||||
fi
|
fi
|
||||||
#++
|
##++
|
||||||
# dev-public@ / dev-bugs@
|
## dev-public@ / dev-bugs@
|
||||||
#--
|
##--
|
||||||
echo "Commit successful, notifying developers at $TO"
|
# echo "Commit successful, notifying developers at $TO"
|
||||||
(
|
# (
|
||||||
cat <<EOF
|
# cat <<EOF
|
||||||
List-ID: <bk.mysql-$VERSION>
|
#List-ID: <bk.mysql-$VERSION>
|
||||||
From: $FROM
|
#From: $FROM
|
||||||
To: $TO
|
#To: $TO
|
||||||
Subject: bk commit - $VERSION tree ($CHANGESET)${BS}${WL}
|
#Subject: bk commit - $VERSION tree ($CHANGESET)${BS}${WL}
|
||||||
X-CSetKey: <$CSETKEY>
|
#X-CSetKey: <$CSETKEY>
|
||||||
$BH
|
#$BH
|
||||||
EOF
|
#EOF
|
||||||
bk changes -v -r+
|
# bk changes -v -r+
|
||||||
bk cset -r+ -d
|
# bk cset -r+ -d
|
||||||
) | head -n $LIMIT | /usr/sbin/sendmail -t
|
# ) | head -n $LIMIT | /usr/sbin/sendmail -t
|
||||||
|
|
||||||
#++
|
#++
|
||||||
# commits@ mail
|
# commits@ or dev-private@ mail
|
||||||
#--
|
#--
|
||||||
echo "Notifying commits list at $COMMITS"
|
|
||||||
|
TO="commits"
|
||||||
|
if [ -f .tree-is-private ]
|
||||||
|
then
|
||||||
|
TO="dev-private"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Notifying $TO list at $TO"
|
||||||
(
|
(
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
List-ID: <bk.mysql-$VERSION>
|
List-ID: <bk.mysql-$VERSION>
|
||||||
From: $FROM
|
From: $FROM
|
||||||
To: $COMMITS
|
To: $TO@mysql.com
|
||||||
Subject: bk commit into $VERSION tree ($CHANGESET)$BS
|
Subject: bk commit into $VERSION tree ($CHANGESET)$BS
|
||||||
X-CSetKey: <$CSETKEY>
|
X-CSetKey: <$CSETKEY>
|
||||||
$BH
|
$BH
|
||||||
|
|
Loading…
Reference in a new issue