List:Commits« Previous MessageNext Message »
From:Ignacio Galarza Date:September 13 2006 4:03pm
Subject:bk commit into 5.0 tree (iggy:1.2234)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of iggy. When iggy does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2006-09-13 12:03:29-04:00, iggy@stripped +2 -0
  These bitKeeper changes will allow Windows to be used as a primary development platform.

  BitKeeper/etc/ignore@stripped, 2006-09-13 12:03:26-04:00, iggy@stripped +17 -0
    Exclude files created during the Windows build process.

  BitKeeper/triggers/post-commit@stripped, 2006-09-13 12:03:27-04:00, iggy@stripped +9 -3
    post-commit trigger writes emails to file in the BitKeeper/tmp directory before sending in case of failure.
    Now uses bk sendmail instead of hardcoded /usr/sbin/sendmail to send message.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	iggy
# Host:	rolltop.ignatz42.dyndns.org
# Root:	/mnt/storeage/winbkfix/my50-winbkfix

--- 1.227/BitKeeper/etc/ignore	2006-09-13 12:03:34 -04:00
+++ 1.228/BitKeeper/etc/ignore	2006-09-13 12:03:34 -04:00
@@ -25,6 +25,23 @@
 *.so
 *.so.*
 *.spec
+*.vcproj
+*.cmake
+*.user
+*.old
+CMakeCache.txt
+cmakecache.txt
+MySql.ncb
+MySql.sln
+MySql.suo
+*/debug/*
+*/release/*
+*/*.dir/*
+CMakeFiles/*
+support-files/*.ini
+win/configure.data
+win/vs8cache.txt
+win/vs71cache.txt
 */*_pure_*warnings
 */.pure
 *~

--- 1.38/BitKeeper/triggers/post-commit	2006-09-13 12:03:34 -04:00
+++ 1.39/BitKeeper/triggers/post-commit	2006-09-13 12:03:34 -04:00
@@ -6,6 +6,7 @@
 DOCS=docs-commit@stripped
 LIMIT=10000
 VERSION="5.0"
+BKROOT=`bk root`
 
 if [ "$REAL_EMAIL" = "" ]
 then
@@ -58,7 +59,9 @@
 EOF
   bk changes -v -r+
   bk cset -r+ -d
- ) | /usr/sbin/sendmail -t
+ ) > $BKROOT/BitKeeper/tmp/dev_public.txt
+
+bk sendmail -t < $BKROOT/BitKeeper/tmp/dev_public.txt
 
 #++
 # commits@ mail
@@ -82,7 +85,9 @@
 EOF
   bk changes -v -r+
   bk cset -r+ -d
- ) | head -n $LIMIT | /usr/sbin/sendmail -t
+ ) | head -n $LIMIT > $BKROOT/BitKeeper/tmp/commits.txt
+
+bk sendmail -t < $BKROOT/BitKeeper/tmp/commits.txt
 
 #++
 # docs-commit@ mail
@@ -102,7 +107,8 @@
 EOF
   bk changes -v -r+
   bk cset -r+ -d
- ) | /usr/sbin/sendmail -t
+ ) > $BKROOT/BitKeeper/tmp/docs.txt
+ bk sendmail -t < $BKROOT/BitKeeper/tmp/docs.txt
  fi
 
 else
Thread
bk commit into 5.0 tree (iggy:1.2234)Ignacio Galarza13 Sep