echo "$WX_TEMP_DIR"
START_DIR="$PWD"
+SCRIPTDIR=${START_DIR}/scripts
WX_WEB_DIR=$WX_TEMP_DIR/wxWebSite
WX_SRC_DIR=$WX_TEMP_DIR/wxWidgets
+CURDATE=`date -I`
+
# first, grab the latest revision with specified tag
if [ ! -d $WX_TEMP_DIR ]; then
mkdir $WX_TEMP_DIR
fi
# this is where we will store the wxAll tarball we create
-if [ ! -d $DISTDIR ]; then
- mkdir $DISTDIR
+if [ ! -d $START_DIR/$DISTDIR ]; then
+ mkdir -p $START_DIR/$DISTDIR
fi
#re-bake the bakefiles
export APPDIR=$WX_TEMP_DIR/wxWidgets
export WXWIN=$WX_TEMP_DIR/wxWidgets
export VERSION=$BUILD_VERSION
+export SCRIPTDIR=${SCRIPTDIR}
+
+#remove old files
rm -rf $APPDIR/deliver/*
+rm -rf $START_DIR/$DIST_DIR/*
-tar czvf $START_DIR/$DIST_DIR/wxWidgets-$BUILD_VERSION-snapshot.tar.gz $APPDIR
+tar czf $START_DIR/$DIST_DIR/wxWidgets-snapshot-$BUILD_VERSION.tar.gz `basename $APPDIR`
#export DESTDIR=$STAGING_DIR
-cp $START_DIR/scripts/create_archives.sh $APPDIR/distrib/scripts
+cp $SCRIPTDIR/create_archives.sh $APPDIR/distrib/scripts
chmod +x $APPDIR/distrib/scripts/create_archives.sh
$APPDIR/distrib/scripts/create_archives.sh --all
cp $APPDIR/deliver/*.tar.gz $START_DIR/$DIST_DIR
cp $APPDIR/deliver/*.tar.bz2 $START_DIR/$DIST_DIR
-echo "Tarball located at: $WX_TARBALL"
+echo "Tarballs located at: $START_DIR/$DIST_DIR"
if [ ! -f $WX_TARBALL ]; then
echo "ERROR: wxAll tarball was not created by pre-flight.sh. Build cannot continue."
echo "Pre-flight complete. Ready for takeoff."
fi
+
+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
+ cp $START_DIR/$DIST_DIR/wx* ${FTPDIR}/files
+
+ 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
+ ##get install.txt files etc
+ ##.../docs/plat/install.txt goes to install-plat-2.7.0.txt
+ ## wince has a file down one dir
+ cp ${DOCDIR}/changes.txt $START_DIR/$DIST_DIR/changes-${BUILD_VERSION}.txt
+
+ for f in `find ${DOCDIR} -name install.txt` ; do
+ cp $f $START_DIR/$DIST_DIR/install-`echo $f | sed -e "s|${DOCDIR}||g" | sed -e "s|/install.txt||g"`-${BUILD_VERSION}.txt
+ done
+
+ for g in `find ${DOCDIR} -name readme.txt` ; do
+ cp $g $START_DIR/$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
+ done
+ ## copy files ...
+ mkdir ${FTPDIR}/
+ cp $START_DIR/$DIST_DIR/* ${FTPDIR}/
+
+fi
+
+md5sum ${FTPDIR}/wx* > ${FTPDIR}/MD5SUM
+
+## make sure updated at is really last
+sleep 10
+echo cvs checkout done at date -u > ${FTPDIR}/updated_at.txt
+
+echo "Delivery complete. Flying."