]>
Commit | Line | Data |
---|---|---|
9f41fa22 CE |
1 | #!/bin/sh |
2 | ||
3 | CURDATE=`date -I` | |
fa24326f CE |
4 | WORKDIR=/home/bake/bkl-cronjob |
5 | FTPDIR=/home/ftp/pub | |
14fc1a0c | 6 | LD_LIBRARY_PATH=/usr/local/lib |
9f41fa22 CE |
7 | |
8 | update_from_cvs() | |
9 | { | |
10 | ( | |
fa24326f | 11 | cd ${WORKDIR}/wxWidgets && cvs -z3 update -P -d |
9f41fa22 | 12 | ) |
8e432792 CE |
13 | ( |
14 | cd ${WORKDIR}/wxGTK && cvs -z3 update -P | |
15 | ) | |
9f41fa22 CE |
16 | } |
17 | ||
18 | ||
19 | regenerate_makefiles() | |
20 | { | |
fa24326f | 21 | (cd ${WORKDIR}/wxWidgets/build/bakefiles && nice python -O ${WORKDIR}/bakefile/bin/bakefile_gen) |
9f41fa22 CE |
22 | } |
23 | ||
24 | ||
25 | do_package() | |
26 | { | |
27 | archtype=$1 | |
28 | format=$2 | |
29 | shift ; shift | |
30 | ||
fa24326f | 31 | rm -f ${WORKDIR}/archives/wx-mk-${format}-* |
9f41fa22 | 32 | |
fa24326f | 33 | cd ${WORKDIR}/wxWidgets |
9f41fa22 CE |
34 | |
35 | files="" | |
36 | for i in $* ; do | |
37 | files="$files `find -name "$i"`" | |
38 | done | |
39 | ||
40 | if test $archtype = tar ; then | |
41 | tar czf ../archives/wx-mk-${format}-${CURDATE}.tar.gz $files | |
42 | elif test $archtype = zip ; then | |
034e3041 | 43 | zip -l -q -9 ../archives/wx-mk-${format}-${CURDATE}.zip $files |
9f41fa22 CE |
44 | fi |
45 | ||
46 | cd .. | |
47 | } | |
48 | ||
49 | package_cvs() | |
50 | { | |
8e432792 | 51 | rm -f ${WORKDIR}/archives/wx-cvs-$1* |
fa24326f | 52 | cd ${WORKDIR}/ |
8e432792 CE |
53 | ##tar --exclude=*.ds* -jcf ./archives/test.tar.bz2 ./wxGTK |
54 | tar --exclude=*.ds* -jcf ./archives/wx-cvs-$1-${CURDATE}.tar.bz2 ./$2 | |
9f41fa22 CE |
55 | } |
56 | ||
57 | ||
58 | package_makefiles() | |
59 | { | |
60 | do_package tar autoconf Makefile.in autoconf_inc.m4 | |
61 | do_package zip borland makefile.bcc config.bcc | |
62 | do_package zip mingw makefile.gcc config.gcc | |
14fc1a0c | 63 | do_package zip dmars makefile.dmc config.dmc makefile.dms config.dms |
9f41fa22 CE |
64 | do_package zip watcom makefile.wat config.wat |
65 | do_package zip msvc makefile.vc config.vc | |
66 | do_package zip msvc6prj '*.dsp' '*.dsw' | |
67 | do_package zip evcprj '*.vcp' '*.vcw' | |
68 | } | |
69 | ||
70 | copy_files () | |
71 | { | |
72 | ##delete old files and then copy new ones, add a symlink | |
73 | ## CVS | |
f5b14075 | 74 | find ${FTPDIR}/CVS_HEAD/files -type f -name wx-cvs\* -mtime +6 | xargs rm -rf |
fa24326f | 75 | cp ${WORKDIR}/archives/wx-cvs-* ${FTPDIR}/CVS_HEAD/files |
9f41fa22 | 76 | |
a7c476dc | 77 | rm ${FTPDIR}/CVS_HEAD/wx* ${FTPDIR}/CVS_HEAD/MD5SUM |
f5b14075 | 78 | for f in `find ${FTPDIR}/CVS_HEAD/files -type f -name wx-cvs\* -mmin -601` ; do |
14fc1a0c CE |
79 | ln -s $f `echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||" ` |
80 | done | |
a7c476dc | 81 | md5sum ${FTPDIR}/CVS_HEAD/wx* > ${FTPDIR}/CVS_HEAD/MD5SUM |
fa24326f CE |
82 | ## make sure updated at is really last |
83 | sleep 10 | |
84 | echo cvs checkout done at `date -u` > ${FTPDIR}/CVS_HEAD/updated_at.txt | |
9f41fa22 CE |
85 | |
86 | ## Makefiles | |
fa24326f CE |
87 | find ${FTPDIR}/CVS_Makefiles/files -type f -name wx-mk\* -mtime +3 | xargs rm -rf |
88 | cp ${WORKDIR}/archives/wx-mk-* ${FTPDIR}/CVS_Makefiles/files | |
9f41fa22 | 89 | |
a7c476dc VZ |
90 | rm ${FTPDIR}/CVS_Makefiles/wx* ${FTPDIR}/CVS_Makefiles/MD5SUM |
91 | ##there must be an easier way of doing these links... | |
fa24326f | 92 | for f in `find ${FTPDIR}/CVS_Makefiles/files -type f -name wx-mk\* -mmin -601` ; do |
9f41fa22 | 93 | ln -s $f `echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||" ` |
9f41fa22 | 94 | done |
a7c476dc | 95 | md5sum ${FTPDIR}/CVS_Makefiles/wx* > ${FTPDIR}/CVS_Makefiles/MD5SUM |
fa24326f CE |
96 | sleep 10 |
97 | echo CVS Makefiles generated from bakefiles last updated at `date -u` > ${FTPDIR}/CVS_Makefiles/updated_at.txt | |
14fc1a0c CE |
98 | |
99 | ||
100 | ## Docs... | |
bc70ac6d JS |
101 | find ${FTPDIR}/CVS_Docs/files -type f -name wxWidgets-Do\* -mtime +3 | xargs rm -rf |
102 | cp ${WORKDIR}/archives/wxWidgets-Docs-* ${FTPDIR}/CVS_Docs/files | |
14fc1a0c | 103 | |
a7c476dc VZ |
104 | rm ${FTPDIR}/CVS_Docs/wx* ${FTPDIR}/CVS_Docs/MD5SUM |
105 | ##there must be an easier way of doing these links... | |
bc70ac6d | 106 | for f in `find ${FTPDIR}/CVS_Docs/files -type f -name wxWidgets-Do\* -mmin -601` ; do |
14fc1a0c CE |
107 | ln -s $f `echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||" ` |
108 | done | |
a7c476dc | 109 | md5sum ${FTPDIR}/CVS_Docs/wx* > ${FTPDIR}/CVS_Docs/MD5SUM |
14fc1a0c CE |
110 | sleep 10 |
111 | echo CVS Documentation generated from bakefiles last updated at `date -u` > ${FTPDIR}/CVS_Docs/updated_at.txt | |
112 | } | |
113 | ||
114 | do_texrtf () | |
115 | { | |
116 | ||
117 | ##parameters : subdir_of_tex index.tex dir_under_wxWidgets | |
118 | rm ${WORKDIR}/archives/html/$1/* | |
119 | /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 | |
120 | cp ${WORKDIR}/wxWidgets/$3/docs/latex/$1/*.gif ${WORKDIR}/archives/html/$1 | |
121 | cp ${WORKDIR}/wxWidgets/$3/docs/latex/$1/*.css ${WORKDIR}/archives/html/$1 | |
122 | cd ${WORKDIR}/archives/html/$1 | |
0d727861 CE |
123 | zip -l -q -9 ${WORKDIR}/archives/htb/$1.htb *.html *.css wx.hhc wx.hhp wx.hhk |
124 | zip -q -9 ${WORKDIR}/archives/htb/$1.htb *.gif | |
9f41fa22 CE |
125 | } |
126 | ||
14fc1a0c CE |
127 | ##this one for tex2rtf as its latex docs aren't in latex... |
128 | do_util_texrtf () | |
129 | { | |
130 | ##parameters : subdir_of_tex index.tex | |
131 | rm ${WORKDIR}/archives/html/$1/* | |
132 | /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 | |
133 | cp ${WORKDIR}/wxWidgets/utils/$1/docs/*.gif ${WORKDIR}/archives/html/$1 | |
134 | cp ${WORKDIR}/wxWidgets/utils/$1/docs/*.css ${WORKDIR}/archives/html/$1 | |
135 | cd ${WORKDIR}/archives/html/$1 | |
0d727861 CE |
136 | zip -l -q -9 ${WORKDIR}/archives/htb/$1.htb *.html *.css wx.hhc wx.hhp wx.hhk |
137 | zip -q -9 ${WORKDIR}/archives/htb/$1.htb *.gif | |
14fc1a0c | 138 | } |
9f41fa22 | 139 | |
14fc1a0c CE |
140 | do_docs () |
141 | { | |
142 | ##remove files, then regenerate | |
bc70ac6d | 143 | rm ${WORKDIR}/archives/wxWidgets-Docs* |
14fc1a0c CE |
144 | rm ${WORKDIR}/archives/htb/*.* |
145 | ||
146 | ######### dir index.tex rootdir | |
147 | do_texrtf wx manual.tex | |
148 | do_texrtf book book.tex | |
149 | do_texrtf svg dcsvg.tex contrib | |
150 | do_texrtf ogl ogl.tex contrib | |
151 | do_texrtf mmedia mmedia.tex contrib | |
152 | do_texrtf gizmos manual.tex contrib | |
153 | do_texrtf fl fl.tex contrib | |
154 | do_util_texrtf tex2rtf tex2rtf.tex | |
155 | ||
156 | cd ${WORKDIR}/archives/ | |
bc70ac6d JS |
157 | tar zcvf ${WORKDIR}/archives/wxWidgets-Docs-HTML-${CURDATE}.tar.gz html/wx/*.html html/wx/*.gif html/wx/*.css |
158 | # TODO: include the extra HTML docs into the above archive. | |
159 | # TODO: we need to add the version number to the doc archives | |
160 | # tar zcvf ${WORKDIR}/archives/wxWidgets-Docs-Extra-HTML-${CURDATE}.tar.gz `find . -name 'wx' -prune -o -name '*.html' -print` | |
14fc1a0c | 161 | |
bc70ac6d JS |
162 | tar zcvf ${WORKDIR}/archives/wxWidgets-Docs-HTB-${CURDATE}.tar.gz htb/*.htb |
163 | # tar zcvf ${WORKDIR}/archives/wxWidgets-Docs-Extra-HTB-${CURDATE}.tar.gz --exclude wx.htb htb/*.htb | |
14fc1a0c CE |
164 | |
165 | ##remove .con files | |
166 | rm ${WORKDIR}/*.con | |
167 | ||
168 | } | |
169 | ||
170 | ||
171 | add_win_files () | |
172 | { | |
bc70ac6d JS |
173 | ### starts with wxWidgets-Docs-xxx.zip |
174 | for f in `find ${WORKDIR}/archives/win/ -name wx\*.zip ` ; do | |
175 | mv $f ${WORKDIR}/archives/`basename $f | tr -d ".zip"`-${CURDATE}.zip | |
14fc1a0c CE |
176 | done |
177 | ||
8e432792 | 178 | rm ${WORKDIR}/archives/*.exe |
bc70ac6d JS |
179 | for f in `find ${WORKDIR}/archives/win/ -name wx\*.exe ` ; do |
180 | mv $f ${WORKDIR}/archives/`basename $f | tr -d ".exe"`-${CURDATE}.exe | |
14fc1a0c CE |
181 | done |
182 | ||
183 | } | |
9f41fa22 CE |
184 | |
185 | update_from_cvs | |
186 | regenerate_makefiles | |
187 | package_makefiles | |
8e432792 CE |
188 | package_cvs All wxWidgets |
189 | package_cvs Gtk wxGTK | |
9f41fa22 | 190 | |
14fc1a0c CE |
191 | do_docs |
192 | add_win_files | |
9f41fa22 | 193 | |
14fc1a0c | 194 | copy_files |
9f41fa22 | 195 | |
14fc1a0c | 196 | exit 0 |