2006-03-02 15:23:54 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
2006-07-05 00:37:42 -04:00
|
|
|
if [ "$VERSION" = "" ]; then
|
|
|
|
echo "Including build-environ.cfg"
|
2007-03-30 04:09:16 -04:00
|
|
|
. `dirname $0`/build-environ.cfg
|
2006-07-05 00:37:42 -04:00
|
|
|
fi
|
|
|
|
|
2006-03-02 15:23:54 -05:00
|
|
|
# first, grab the latest revision with specified tag
|
|
|
|
if [ ! -d $WX_TEMP_DIR ]; then
|
|
|
|
mkdir $WX_TEMP_DIR
|
|
|
|
fi
|
|
|
|
|
|
|
|
# just do an update if we started a build but it failed somewhere
|
|
|
|
if [ ! -d $WX_WEB_DIR ]; then
|
2007-04-02 13:42:42 -04:00
|
|
|
cd $WX_TEMP_DIR
|
2006-03-02 15:23:54 -05:00
|
|
|
echo "Grabbing wxWebSite sources..."
|
2007-06-25 07:14:05 -04:00
|
|
|
svn co https://svn.wxwidgets.org/svn/wxWebSite/trunk wxWebSite
|
2006-03-02 15:23:54 -05:00
|
|
|
else
|
|
|
|
cd $WX_WEB_DIR
|
2007-07-03 03:58:08 -04:00
|
|
|
svn cleanup
|
2007-06-25 07:14:05 -04:00
|
|
|
svn up
|
2006-03-02 15:23:54 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d $WX_SRC_DIR ]; then
|
2006-09-07 08:46:08 -04:00
|
|
|
cd $WX_TEMP_DIR
|
2006-03-02 15:23:54 -05:00
|
|
|
echo "Grabbing wx CVS with tag $BUILD_TAG"
|
2007-07-03 03:51:47 -04:00
|
|
|
svn co https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk/ wxWidgets
|
2006-11-27 08:36:18 -05:00
|
|
|
cd $WX_SRC_DIR
|
2006-03-02 15:23:54 -05:00
|
|
|
else
|
2007-04-02 13:42:42 -04:00
|
|
|
cd $WX_SRC_DIR
|
2007-07-03 03:58:08 -04:00
|
|
|
svn cleanup
|
2007-06-25 07:14:05 -04:00
|
|
|
svn up
|
2006-03-02 15:23:54 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
# this is where we will store the wxAll tarball we create
|
2007-04-02 13:42:42 -04:00
|
|
|
if [ ! -d $DIST_DIR ]; then
|
|
|
|
mkdir -p $DIST_DIR
|
2006-03-02 15:23:54 -05:00
|
|
|
fi
|
2007-04-02 13:42:42 -04:00
|
|
|
echo saving to $DIST_DIR
|
2006-03-02 15:23:54 -05:00
|
|
|
|
|
|
|
#re-bake the bakefiles
|
|
|
|
if [ $rebake = "yes" ]; then
|
2006-09-07 08:46:08 -04:00
|
|
|
if [ ! -d $WX_SRC_DIR/build/bakefiles ]; then
|
|
|
|
mkdir $WX_SRC_DIR/build/bakefiles
|
|
|
|
fi
|
|
|
|
|
2006-03-02 15:23:54 -05:00
|
|
|
cd $WX_SRC_DIR/build/bakefiles
|
2006-08-09 04:43:47 -04:00
|
|
|
# always rebuild the bakefiles to avoid conflicts with cvs
|
|
|
|
## better to not use unix2dos on the wxWidgets tree so we don't get the conflicts
|
|
|
|
##fix this -B gave an option not recognised error (sf bug 1537221)...
|
|
|
|
rm .ba*
|
2007-04-02 14:14:37 -04:00
|
|
|
bakefile_gen -d ../../distrib/scripts/Bakefiles.release.bkgen
|
2006-03-02 15:23:54 -05:00
|
|
|
fi
|
|
|
|
|
2006-03-07 01:13:59 -05:00
|
|
|
# Now generate the mega tarball with everything. We will push this to our build machines.
|
2006-03-02 15:23:54 -05:00
|
|
|
cd $WX_TEMP_DIR
|
2006-07-05 00:37:42 -04:00
|
|
|
export APPDIR=$WX_TEMP_DIR/wxWidgets
|
|
|
|
export WXWIN=$WX_TEMP_DIR/wxWidgets
|
|
|
|
export VERSION=$BUILD_VERSION
|
2006-07-21 05:10:35 -04:00
|
|
|
export SCRIPTDIR=${SCRIPTDIR}
|
2007-04-02 13:42:42 -04:00
|
|
|
export DIST_DIR=${DIST_DIR}
|
2006-07-21 05:10:35 -04:00
|
|
|
|
2006-07-20 06:52:18 -04:00
|
|
|
#remove old files
|
2006-07-05 00:37:42 -04:00
|
|
|
rm -rf $APPDIR/deliver/*
|
2007-04-02 13:42:42 -04:00
|
|
|
rm -rf $DIST_DIR/*
|
2006-09-07 08:46:08 -04:00
|
|
|
|
2007-04-02 13:42:42 -04:00
|
|
|
tar czf $DIST_DIR/wxWidgets-snapshot-$BUILD_VERSION.tar.gz $WX_TEMP_DIR
|
2006-07-05 00:37:42 -04:00
|
|
|
|
2006-07-21 05:10:35 -04:00
|
|
|
cp $SCRIPTDIR/create_archives.sh $APPDIR/distrib/scripts
|
2006-07-05 00:37:42 -04:00
|
|
|
chmod +x $APPDIR/distrib/scripts/create_archives.sh
|
2009-02-14 07:09:30 -05:00
|
|
|
$APPDIR/distrib/scripts/create_archives.sh --wxall --wxmsw
|
2006-07-05 00:37:42 -04:00
|
|
|
|
2007-04-02 13:42:42 -04:00
|
|
|
echo "Tarballs located at: $DIST_DIR"
|
2006-03-02 15:23:54 -05:00
|
|
|
|
|
|
|
if [ ! -f $WX_TARBALL ]; then
|
|
|
|
echo "ERROR: wxAll tarball was not created by pre-flight.sh. Build cannot continue."
|
|
|
|
exit 1
|
|
|
|
else
|
2007-04-02 13:42:42 -04:00
|
|
|
cd $DIST_DIR
|
2006-07-05 00:37:42 -04:00
|
|
|
#cp $WX_TARBALL $STAGING_DIR
|
|
|
|
#cp -r $WX_WEB_DIR $STAGING_DIR
|
2006-03-02 15:23:54 -05:00
|
|
|
|
|
|
|
echo "Pre-flight complete. Ready for takeoff."
|
|
|
|
fi
|
2006-07-18 02:56:23 -04:00
|
|
|
|
|
|
|
if [ "$KIND" = "daily" ]; then
|
|
|
|
##delete old files and then copy new ones, add a symlink
|
|
|
|
find ${FTPDIR}/files -type f -name wx\* -mtime +6 | xargs rm -rf
|
2007-04-02 13:42:42 -04:00
|
|
|
cp $DIST_DIR/wx* ${FTPDIR}/files
|
2006-07-18 02:56:23 -04:00
|
|
|
|
|
|
|
rm -f ${FTPDIR}/wx* ${FTPDIR}/MD5SUM
|
|
|
|
for f in `find ${FTPDIR}/files -type f -name wx\* -mmin -601` ; do
|
|
|
|
ln -s $f `echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||" `
|
|
|
|
done
|
|
|
|
else
|
|
|
|
## not a daily build
|
2006-07-19 06:31:08 -04:00
|
|
|
##get install.txt files etc
|
|
|
|
##.../docs/plat/install.txt goes to install-plat-2.7.0.txt
|
|
|
|
## wince has a file down one dir
|
2007-04-02 13:42:42 -04:00
|
|
|
cp ${DOCDIR}/changes.txt $DIST_DIR/changes-${BUILD_VERSION}.txt
|
2006-07-19 06:31:08 -04:00
|
|
|
|
|
|
|
for f in `find ${DOCDIR} -name install.txt` ; do
|
2007-04-02 13:42:42 -04:00
|
|
|
cp $f $DIST_DIR/install-`echo $f | sed -e "s|${DOCDIR}||g" | sed -e "s|/install.txt||g"`-${BUILD_VERSION}.txt
|
2006-07-19 06:31:08 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
for g in `find ${DOCDIR} -name readme.txt` ; do
|
2007-04-02 13:42:42 -04:00
|
|
|
cp $g $DIST_DIR/readme-`echo $g | sed -e "s|${DOCDIR}||g" | sed -e "s|msw/wince|wince|g" | sed -e "s|/readme.txt||g"`-${BUILD_VERSION}.txt
|
2006-07-19 06:31:08 -04:00
|
|
|
done
|
2006-11-07 13:47:12 -05:00
|
|
|
# Rename double readme
|
2007-04-02 13:42:42 -04:00
|
|
|
mv $DIST_DIR/readme-readme.txt-${BUILD_VERSION}.txt $DIST_DIR/readme-${BUILD_VERSION}.txt
|
2006-07-19 06:31:08 -04:00
|
|
|
## copy files ...
|
2006-07-18 02:56:23 -04:00
|
|
|
mkdir ${FTPDIR}/
|
2007-04-02 13:42:42 -04:00
|
|
|
cp $DIST_DIR/* ${FTPDIR}/
|
2006-07-19 06:31:08 -04:00
|
|
|
|
2006-07-18 02:56:23 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
md5sum ${FTPDIR}/wx* > ${FTPDIR}/MD5SUM
|
|
|
|
|
|
|
|
## make sure updated at is really last
|
|
|
|
sleep 10
|
2007-07-05 05:07:05 -04:00
|
|
|
echo svn checkout done at `date -u` > ${FTPDIR}/updated_at.txt
|
2006-07-18 02:56:23 -04:00
|
|
|
|
|
|
|
echo "Delivery complete. Flying."
|