]>
git.saurik.com Git - wxWidgets.git/blob - distrib/scripts/pre-flight.sh
3 if [ "$VERSION" = "" ]; then
4 echo "Including build-environ.cfg"
5 .
`dirname $0`/build
-environ.cfg
8 # first, grab the latest revision with specified tag
9 if [ ! -d $WX_TEMP_DIR ]; then
13 # just do an update if we started a build but it failed somewhere
14 if [ ! -d $WX_WEB_DIR ]; then
16 echo "Grabbing wxWebSite sources..."
17 svn co https
://svn.wxwidgets.org
/svn
/wxWebSite
/trunk wxWebSite
23 if [ ! -d $WX_SRC_DIR ]; then
25 echo "Grabbing wx CVS with tag $BUILD_TAG"
26 svn co https
://svn.wxwidgets.org
/svn
/wxWidgets
/trunk wxWidgets
33 # this is where we will store the wxAll tarball we create
34 if [ ! -d $DIST_DIR ]; then
37 echo saving to
$DIST_DIR
39 #re-bake the bakefiles
40 if [ $rebake = "yes" ]; then
41 if [ ! -d $WX_SRC_DIR/build
/bakefiles
]; then
42 mkdir $WX_SRC_DIR/build
/bakefiles
45 cd $WX_SRC_DIR/build
/bakefiles
46 # always rebuild the bakefiles to avoid conflicts with cvs
47 ## better to not use unix2dos on the wxWidgets tree so we don't get the conflicts
48 ##fix this -B gave an option not recognised error (sf bug 1537221)...
50 bakefile_gen
-d ..
/..
/distrib
/scripts
/Bakefiles.release.bkgen
53 # Now generate the mega tarball with everything. We will push this to our build machines.
55 export APPDIR
=$WX_TEMP_DIR/wxWidgets
56 export WXWIN
=$WX_TEMP_DIR/wxWidgets
57 export VERSION
=$BUILD_VERSION
58 export SCRIPTDIR
=${SCRIPTDIR}
59 export DIST_DIR
=${DIST_DIR}
62 rm -rf $APPDIR/deliver
/*
65 tar czf
$DIST_DIR/wxWidgets
-snapshot-$BUILD_VERSION.
tar.gz
$WX_TEMP_DIR
67 cp $SCRIPTDIR/create_archives.sh
$APPDIR/distrib
/scripts
68 chmod +x
$APPDIR/distrib
/scripts
/create_archives.sh
69 $APPDIR/distrib
/scripts
/create_archives.sh
--all
71 echo "Tarballs located at: $DIST_DIR"
73 if [ ! -f $WX_TARBALL ]; then
74 echo "ERROR: wxAll tarball was not created by pre-flight.sh. Build cannot continue."
78 #cp $WX_TARBALL $STAGING_DIR
79 #cp -r $WX_WEB_DIR $STAGING_DIR
81 echo "Pre-flight complete. Ready for takeoff."
84 if [ "$KIND" = "daily" ]; then
85 ##delete old files and then copy new ones, add a symlink
86 find ${FTPDIR}/files
-type f
-name wx\
* -mtime +6 | xargs rm -rf
87 cp $DIST_DIR/wx
* ${FTPDIR}/files
89 rm -f ${FTPDIR}/wx
* ${FTPDIR}/MD5SUM
90 for f
in `find ${FTPDIR}/files -type f -name wx\* -mmin -601` ; do
91 ln -s $f `echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||" `
95 ##get install.txt files etc
96 ##.../docs/plat/install.txt goes to install-plat-2.7.0.txt
97 ## wince has a file down one dir
98 cp ${DOCDIR}/changes.txt
$DIST_DIR/changes
-${BUILD_VERSION}.txt
100 for f
in `find ${DOCDIR} -name install.txt` ; do
101 cp $f $DIST_DIR/install-`echo $f | sed -e "s|${DOCDIR}||g" | sed -e "s|/install.txt||g"`-${BUILD_VERSION}.txt
104 for g
in `find ${DOCDIR} -name readme.txt` ; do
105 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
107 # Rename double readme
108 mv $DIST_DIR/readme
-readme.txt
-${BUILD_VERSION}.txt
$DIST_DIR/readme
-${BUILD_VERSION}.txt
111 cp $DIST_DIR/* ${FTPDIR}/
115 md5sum ${FTPDIR}/wx
* > ${FTPDIR}/MD5SUM
117 ## make sure updated at is really last
119 echo cvs checkout
done at `date -u` > ${FTPDIR}/updated_at.txt
121 echo "Delivery complete. Flying."