daily build of docs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32324 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2005-02-23 16:36:08 +00:00
parent f677733ce3
commit 14fc1a0c5c

View File

@@ -3,6 +3,7 @@
CURDATE=`date -I`
WORKDIR=/home/bake/bkl-cronjob
FTPDIR=/home/ftp/pub
LD_LIBRARY_PATH=/usr/local/lib
update_from_cvs()
{
@@ -37,7 +38,6 @@ do_package()
tar czf ../archives/wx-mk-${format}-${CURDATE}.tar.gz $files
elif test $archtype = zip ; then
zip -l -q -9 ../archives/wx-mk-${format}-${CURDATE}.zip $files
# (-l translates to DOS line endings)
fi
cd ..
@@ -56,7 +56,7 @@ package_makefiles()
do_package tar autoconf Makefile.in autoconf_inc.m4
do_package zip borland makefile.bcc config.bcc
do_package zip mingw makefile.gcc config.gcc
do_package zip dmars makefile.dmc config.dmc
do_package zip dmars makefile.dmc config.dmc makefile.dms config.dms
do_package zip watcom makefile.wat config.wat
do_package zip msvc makefile.vc config.vc
do_package zip msvc6prj '*.dsp' '*.dsw'
@@ -70,8 +70,10 @@ copy_files ()
find ${FTPDIR}/CVS_HEAD/files -type f -name wx-cvs\*.tar.bz2 -mtime +6 | xargs rm -rf
cp ${WORKDIR}/archives/wx-cvs-* ${FTPDIR}/CVS_HEAD/files
rm ${FTPDIR}/CVS_HEAD/wx-cvs.tar.bz2
ln -s ${FTPDIR}/CVS_HEAD/files/wx-cvs-${CURDATE}.tar.bz2 ${FTPDIR}/CVS_HEAD/wx-cvs.tar.bz2
rm ${FTPDIR}/CVS_HEAD/wx*
for f in `find ${FTPDIR}/CVS_Makefiles/files -type f -name wx-cvs\* -mmin -601` ; do
ln -s $f `echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||" `
done
## make sure updated at is really last
sleep 10
echo cvs checkout done at `date -u` > ${FTPDIR}/CVS_HEAD/updated_at.txt
@@ -84,20 +86,98 @@ rm ${FTPDIR}/CVS_Makefiles/wx*
##there musrt be an easier way of doing these links...
for f in `find ${FTPDIR}/CVS_Makefiles/files -type f -name wx-mk\* -mmin -601` ; do
ln -s $f `echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||" `
# echo $f
# echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||"
done
sleep 10
echo CVS Makefiles generated from bakefiles last updated at `date -u` > ${FTPDIR}/CVS_Makefiles/updated_at.txt
## Docs...
find ${FTPDIR}/CVS_Docs/files -type f -name wx-do\* -mtime +3 | xargs rm -rf
cp ${WORKDIR}/archives/wx-docs-* ${FTPDIR}/CVS_Docs/files
rm ${FTPDIR}/CVS_Docs/wx*
##there musrt be an easier way of doing these links...
for f in `find ${FTPDIR}/CVS_Docs/files -type f -name wx-do\* -mmin -601` ; do
ln -s $f `echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||" `
done
sleep 10
echo CVS Documentation generated from bakefiles last updated at `date -u` > ${FTPDIR}/CVS_Docs/updated_at.txt
}
do_texrtf ()
{
##parameters : subdir_of_tex index.tex dir_under_wxWidgets
rm ${WORKDIR}/archives/html/$1/*
/usr/local/bin/tex2rtf ${WORKDIR}/wxWidgets/$3/docs/latex/$1/$2 ${WORKDIR}/archives/html/$1/$1 -twice -html -macros ${WORKDIR}/wxWidgets/docs/latex/wx/tex2rtf_css.ini
cp ${WORKDIR}/wxWidgets/$3/docs/latex/$1/*.gif ${WORKDIR}/archives/html/$1
cp ${WORKDIR}/wxWidgets/$3/docs/latex/$1/*.css ${WORKDIR}/archives/html/$1
cd ${WORKDIR}/archives/html/$1
zip -l -q -9 ${WORKDIR}/archives/htb/$1.htb *.html *.gif *.css wx.hhc wx.hhp wx.hhk
}
##this one for tex2rtf as its latex docs aren't in latex...
do_util_texrtf ()
{
##parameters : subdir_of_tex index.tex
rm ${WORKDIR}/archives/html/$1/*
/usr/local/bin/tex2rtf ${WORKDIR}/wxWidgets/utils/$1/docs/$2 ${WORKDIR}/archives/html/$1/$1 -twice -html -macros ${WORKDIR}/wxWidgets/docs/latex/wx/tex2rtf_css.ini
cp ${WORKDIR}/wxWidgets/utils/$1/docs/*.gif ${WORKDIR}/archives/html/$1
cp ${WORKDIR}/wxWidgets/utils/$1/docs/*.css ${WORKDIR}/archives/html/$1
cd ${WORKDIR}/archives/html/$1
zip -l -q -9 ${WORKDIR}/archives/htb/$1.htb *.html *.gif *.css wx.hhc wx.hhp wx.hhk
}
do_docs ()
{
##remove files, then regenerate
rm ${WORKDIR}/archives/wx-docs*
rm ${WORKDIR}/archives/htb/*.*
######### dir index.tex rootdir
do_texrtf wx manual.tex
do_texrtf book book.tex
do_texrtf svg dcsvg.tex contrib
do_texrtf ogl ogl.tex contrib
do_texrtf mmedia mmedia.tex contrib
do_texrtf gizmos manual.tex contrib
do_texrtf fl fl.tex contrib
do_util_texrtf tex2rtf tex2rtf.tex
cd ${WORKDIR}/archives/
tar zcvf ${WORKDIR}/archives/wx-docs-html-${CURDATE}.tar.gz html/wx/*.html html/wx/*.gif html/wx/*.css
tar zcvf ${WORKDIR}/archives/wx-docs-extra-html-${CURDATE}.tar.gz `find . -name 'wx' -prune -o -name '*.html' -print`
tar zcvf ${WORKDIR}/archives/wx-docs-htb-${CURDATE}.tar.gz htb/wx.htb
tar zcvf ${WORKDIR}/archives/wx-docs-extra-htb-${CURDATE}.tar.gz --exclude wx.htb htb/*.htb
##remove .con files
rm ${WORKDIR}/*.con
}
add_win_files ()
{
### starts with wx-docs-xxx.zip
for f in `find ${WORKDIR}/archives/win/ -name wx\*.ZIP ` ; do
mv $f ${WORKDIR}/archives/`basename $f | tr -d ".ZIP"`-${CURDATE}.zip
done
for f in `find ${WORKDIR}/archives/win/ -name wx\*.EXE ` ; do
mv $f ${WORKDIR}/archives/`basename $f | tr -d ".EXE"`-${CURDATE}.exe
done
}
update_from_cvs
regenerate_makefiles
package_makefiles
package_cvs
do_docs
add_win_files
copy_files
exit 0