]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/makerpm
Fix "warning: operation on 'y' may be undefined".
[wxWidgets.git] / wxPython / distrib / makerpm
CommitLineData
f6bcfd97 1#!/bin/bash
4726eec6
RD
2#----------------------------------------------------------------------
3# Build an RPM containing both wxGTK and wxPython
f6bcfd97 4
59455c67
RD
5##set -o xtrace
6
4726eec6
RD
7spectemplate=distrib/wxPythonFull.spec.in
8
9if [ ! -d wxPython -o ! -e ${spectemplate} ]; then
10 echo "Please run this script from the root wxPython directory."
f6bcfd97
BP
11 exit 1
12fi
13
4726eec6
RD
14
15#----------------------------------------------------------------------
16# Initialization
17
59455c67 18version=`python -c "import setup;print setup.VERSION"`
1e4a197e
RD
19wxpdir=`pwd`
20wxdir=${wxpdir}/..
21distdir=${wxpdir}/dist
22builddir=${wxpdir}/_build_rpm
4726eec6 23rpmtop=${builddir}/rpmtop
1e4a197e 24cvsroot=:pserver:anoncvs@cvs.wxwindows.org:/pack/cvsroots/wxwindows
4726eec6
RD
25pythonbin=/usr/bin/python
26port=GTK
27lcport=gtk
1e4a197e 28unicode=0
70934952
RD
29tarname=wxPython-src
30srpmonly=0
4726eec6
RD
31
32#----------------------------------------------------------------------
33# Check parameters
34
59455c67
RD
35function usage {
36 echo "Usage: $0 py_version [command flags...]"
70934952 37 echo " py_version which python version to use."
4726eec6
RD
38 echo ""
39 echo "command flags:"
1e4a197e 40 echo " skipcopy Don't copy the files for the tarball from the workspace"
4726eec6 41 echo " skiptar Don't build the tarball"
fda33067 42 echo " skiprpm Don't build the RPM"
4726eec6
RD
43 echo " skipclean Don't do the cleanup at the end"
44 echo " speconly Do nothing but write the RPM spec file"
1e4a197e 45 echo " srpm Only make the SRPM"
4726eec6
RD
46}
47
978cadd0 48if [ $# -lt 1 ]; then
59455c67 49 usage
4726eec6
RD
50 exit 1
51fi
52
59455c67
RD
53pyver=$1
54shift
4726eec6 55
b817523b 56ver2=`echo ${version} | cut -c 1,2,3`
357262e4
RD
57tarver=${tarname}-${version}
58
4726eec6
RD
59python=${pythonbin}${pyver}
60if [ ! -e ${python} ]; then
61 echo "${python} not found!"
f6bcfd97
BP
62 exit 1
63fi
64
65
4726eec6 66function makespec {
70934952 67 echo "*** Writing ${distdir}/wxPython.spec"
4726eec6
RD
68 cat ${spectemplate} \
69 | sed s:@PYTHON@:${python}:g \
70 | sed s:@PYVER@:${pyver}:g \
4726eec6 71 | sed s:@TARNAME@:${tarname}:g \
357262e4 72 | sed s:@VERSION@:${version}:g \
b817523b 73 | sed s:@VER2@:${ver2}:g \
70934952 74 > ${distdir}/wxPython.spec
4726eec6
RD
75}
76
77
78
79for flag in $*; do
80 case ${flag} in
1e4a197e
RD
81 skipcopy) skipcopy=1 ;;
82 skipclean) skipclean=1 ;;
fda33067 83 skiptar) skiptar=1; skipcopy=1 ;;
1e4a197e 84 skiprpm) skiprpm=1 ;;
1e4a197e 85 speconly) makespec; exit 0 ;;
70934952 86 srpm) srpmonly=1; ;;
4726eec6
RD
87
88 *) echo "Unknown flag \"${flag}\""
59455c67 89 usage
4726eec6
RD
90 exit 1
91 esac
92done
93
f6bcfd97 94
4726eec6
RD
95#----------------------------------------------------------------------
96# Setup build dirs
97
98echo "*** Setting up"
99
100if [ ! -d ${builddir} ]; then
101 mkdir -p ${builddir}
102fi
103
104if [ ! -d ${distdir} ]; then
105 mkdir -p ${distdir}
106fi
107
108for dir in SOURCES SPECS BUILD RPMS SRPMS; do
109 if [ ! -d ${rpmtop}/${dir} ]; then
110 mkdir -p ${rpmtop}/${dir}
111 fi
112done
113
114
115#----------------------------------------------------------------------
1e4a197e 116# Copy the sources from my CVS workspace
4726eec6 117
59455c67
RD
118function cleanup {
119 RMFILES=`find . -name "$1"`
120 if [ "$RMFILES" != "" ]; then
121 rm -rf $RMFILES
122 fi
123}
124
125
1e4a197e
RD
126if [ -z "${skipcopy}" ]; then
127 echo "*** Copying CVS tree"
4726eec6
RD
128 pushd ${builddir} > /dev/null
129 if [ -e ${tarver} ]; then
1e4a197e 130 rm -rf ${tarver}
4726eec6 131 fi
1e4a197e
RD
132 mkdir -p ${tarver}
133
134 # copy root dir contents
135 cp -pf --link ${wxdir}/* ${tarver} > /dev/null 2>&1
4726eec6 136
70934952 137 # copy all top dirs except CVS, build, demos, samples, utils, and wxPython
59455c67 138 for d in art build contrib debian distrib docs include lib locale misc patches src; do
1fded56b
RD
139 if [ -e ${wxdir}/$d ]; then
140 cp -Rpf --link ${wxdir}/$d ${tarver} #> /dev/null 2>&1
141 fi
1e4a197e 142 done
0552ce06 143
36e91097
RD
144# # and tex2rtf too
145# mkdir ${tarver}/utils
146# cp -Rpf --link ${wxdir}/utils/tex2rtf ${tarver}/utils
147# # tex2rtf needs these files
148# mkdir ${tarver}/samples
149# cp -Rpf --link ${wxdir}/samples/sample.* ${tarver}/samples
1e4a197e
RD
150
151 # now do the same thing for wxPython, skipping it's build dirs and such
6e83b721
RD
152 for dir in `grep -v '#' ${wxdir}/wxPython/distrib/DIRLIST`; do
153 mkdir ${tarver}/${dir}
154 ##echo "cp -pf --link ${wxdir}/${dir}/* ${tarver}/${dir}"
155 cp -pf --link ${wxdir}/${dir}/* ${tarver}/${dir} > /dev/null 2>&1
1e4a197e
RD
156 done
157
f1860ca7
RD
158 # using DIRLIST as above will normally skip any files starting
159 # with a dot, but there are a few .files that we do want to
160 # copy...
161 for dir in wxPython/distrib/msw; do
162 cp -pf --link ${wxdir}/${dir}/.[a-zA-Z]* ${tarver}/${dir} > /dev/null 2>&1
163 done
164
1e4a197e 165 echo "*** Removing uneeded stuff from copy of CVS tree"
4726eec6 166 pushd ${tarver} > /dev/null
59455c67
RD
167 cleanup .cvsignore
168 cleanup CVS
169 cleanup CVSROOT
170 rm BuildCVS.txt
70934952 171 rm -f ChangeLog
4726eec6 172 rm *.spec
70934952 173 rm -rf distrib/msw/tmake
b817523b
RD
174 rm -rf docs/html
175 rm -rf docs/latex
1e4a197e
RD
176 rm -rf contrib/docs
177 rm -rf contrib/samples
178 rm locale/*.mo
59455c67 179 cleanup ".#*"
70934952 180 cleanup "#*#"
59455c67 181 cleanup "*~"
1ab1deab
RD
182 cleanup "*.orig"
183 cleanup "*.rej"
59455c67
RD
184 cleanup "*.pyc"
185 cleanup core
186 cleanup "core.[0-9]*"
1e4a197e 187
70934952
RD
188 # ports that are not supported yet
189 cleanup cocoa
190 cleanup mgl
191 cleanup motif
192 cleanup os2
193 cleanup x11
194
59455c67 195 rm -f wxPython/wx/* > /dev/null 2>&1
4726eec6
RD
196
197 popd > /dev/null
198 popd > /dev/null
199fi
200
201
202#----------------------------------------------------------------------
357262e4
RD
203# Make the spec file and copy to ${builddir}/${tarver} so it will be
204# in the tar file when it's built
4726eec6 205
73c7ae5a
RD
206# TODO? Output all combinations of spec files to put in the tar file??
207
357262e4 208makespec
70934952 209cp ${distdir}/wxPython.spec ${builddir}/${tarver}/wxPython.spec
4726eec6
RD
210
211
212#----------------------------------------------------------------------
213# Build the tar file
214
215if [ -z "${skiptar}" ]; then
1e4a197e
RD
216 echo "*** Creating language catalogs..."
217 pushd ${builddir}/${tarver}/locale > /dev/null
218 make allmo
219 popd > /dev/null
220
4726eec6 221 echo "*** Creating tarball..."
1e4a197e 222 cp distrib/README.1st.txt ${builddir}/${tarver}
4726eec6
RD
223 pushd ${builddir} > /dev/null
224 tar cvf ${distdir}/${tarver}.tar ${tarver} > /dev/null
1e4a197e 225
4726eec6
RD
226 echo "*** Compressing..."
227 if [ -e ${distdir}/${tarver}.tar.gz ]; then
228 rm ${distdir}/${tarver}.tar.gz
229 fi
230 gzip --best ${distdir}/${tarver}.tar
231 popd > /dev/null
232fi
233
234
235#----------------------------------------------------------------------
236# build the RPM
237
238if [ -z "${skiprpm}" ]; then
239 echo "*** Building RPMs..."
240 cp ${distdir}/${tarver}.tar.gz ${rpmtop}/SOURCES
70934952
RD
241
242 if [ "${srpmonly}" = "1" ]; then
243 rpmbuild -bs \
244 --define "_topdir ${rpmtop}" \
245 --define "_tmppath ${builddir}" \
0552ce06 246 --define "release 1" \
70934952
RD
247 ${distdir}/wxPython.spec
248 if [ "$?" != "0" ]; then
249 echo "*** RPM failure, exiting."
250 exit 1
251 fi
252
253 else
254 rpmbuild -ba \
255 --define "_topdir ${rpmtop}" \
256 --define "_tmppath ${builddir}" \
257 --define "port gtk" --define "unicode 0" \
258 --define "pyver ${pyver}" \
259 ${distdir}/wxPython.spec
260 if [ "$?" != "0" ]; then
261 echo "*** RPM failure, exiting."
262 exit 1
263 fi
264
265 rpmbuild -ba \
266 --define "_topdir ${rpmtop}" \
267 --define "_tmppath ${builddir}" \
268 --define "port gtk2" --define "unicode 1" \
269 --define "pyver ${pyver}" \
270 ${distdir}/wxPython.spec
271 if [ "$?" != "0" ]; then
272 echo "*** RPM failure, exiting."
273 exit 1
274 fi
4726eec6 275 fi
70934952
RD
276
277 echo "*** Moving RPMs to ${distdir}"
278 mv -f `find ${rpmtop} -name "wxPython*.rpm"` ${distdir}
4726eec6
RD
279fi
280
281#----------------------------------------------------------------------
282# Cleanup
283
284if [ -z ${skipclean} ]; then
285 echo "*** Cleaning up"
286 rm -rf ${rpmtop}
287 rm -rf ${builddir}
288fi
f6bcfd97
BP
289
290
291