mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
BK changes for
https://inside.mysql.com/wiki/MySQL's_Code_Reviews_Published_Externally BitKeeper/triggers/post-commit: 1) Add additional method of detecting merge changesets. 2) Remove code sending e-mail to dev-public@ or dev-bugs@. 3) Change code sending e-mail to commits@ to send to dev-private@ if a specific file is present in the BK root directory, denoting this tree as private.
This commit is contained in:
@ -26,6 +26,13 @@ then
|
||||
exit
|
||||
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`
|
||||
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'`
|
||||
if [ "$BUG" = "" ]
|
||||
then
|
||||
TO=dev-public@mysql.com
|
||||
# TO=dev-public@mysql.com
|
||||
BS=""
|
||||
BH=""
|
||||
else
|
||||
TO=dev-bugs@mysql.com
|
||||
# TO=dev-bugs@mysql.com
|
||||
BS=" BUG#$BUG"
|
||||
# need newline here
|
||||
BH="X-Bug: $BUG
|
||||
"
|
||||
fi
|
||||
#++
|
||||
# dev-public@ / dev-bugs@
|
||||
#--
|
||||
echo "Commit successful, notifying developers at $TO"
|
||||
(
|
||||
cat <<EOF
|
||||
List-ID: <bk.mysql-$VERSION>
|
||||
From: $FROM
|
||||
To: $TO
|
||||
Subject: bk commit - $VERSION tree ($CHANGESET)${BS}${WL}
|
||||
X-CSetKey: <$CSETKEY>
|
||||
$BH
|
||||
EOF
|
||||
bk changes -v -r+
|
||||
bk cset -r+ -d
|
||||
) | head -n $LIMIT | /usr/sbin/sendmail -t
|
||||
##++
|
||||
## dev-public@ / dev-bugs@
|
||||
##--
|
||||
# echo "Commit successful, notifying developers at $TO"
|
||||
# (
|
||||
# cat <<EOF
|
||||
#List-ID: <bk.mysql-$VERSION>
|
||||
#From: $FROM
|
||||
#To: $TO
|
||||
#Subject: bk commit - $VERSION tree ($CHANGESET)${BS}${WL}
|
||||
#X-CSetKey: <$CSETKEY>
|
||||
#$BH
|
||||
#EOF
|
||||
# bk changes -v -r+
|
||||
# bk cset -r+ -d
|
||||
# ) | 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
|
||||
List-ID: <bk.mysql-$VERSION>
|
||||
From: $FROM
|
||||
To: $COMMITS
|
||||
To: $TO@mysql.com
|
||||
Subject: bk commit into $VERSION tree ($CHANGESET)$BS
|
||||
X-CSetKey: <$CSETKEY>
|
||||
$BH
|
||||
|
Reference in New Issue
Block a user