]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/makerpm
Ensure item is valid before using it.
[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
357262e4 29tarname=wxPythonSrc
1e4a197e 30rpmflag=-ba
4726eec6
RD
31
32#----------------------------------------------------------------------
33# Check parameters
34
59455c67
RD
35function usage {
36 echo "Usage: $0 py_version [command flags...]"
4726eec6
RD
37 echo " py_version String to append to $pythonbin (which python"
38 echo " version to use.)"
39 echo ""
40 echo "command flags:"
1e4a197e 41 echo " skipcopy Don't copy the files for the tarball from the workspace"
4726eec6
RD
42 echo " skiptar Don't build the tarball"
43 echo " skiprpm Don't build the RPM (but why?)"
44 echo " skipclean Don't do the cleanup at the end"
1e4a197e
RD
45 echo " gtk2 Build using wxGTK2 and Unicode"
46 echo " x11 Build using wxX11"
4726eec6 47 echo " speconly Do nothing but write the RPM spec file"
1e4a197e
RD
48 echo " srpm Only make the SRPM"
49# echo " smp Add SMP=2 to the envivonment to speed wxGTK build"
4726eec6
RD
50}
51
1e4a197e 52if [ $# -lt 2 ]; then
59455c67 53 usage
4726eec6
RD
54 exit 1
55fi
56
59455c67
RD
57pyver=$1
58shift
4726eec6 59
b817523b 60ver2=`echo ${version} | cut -c 1,2,3`
357262e4
RD
61tarver=${tarname}-${version}
62
4726eec6
RD
63python=${pythonbin}${pyver}
64if [ ! -e ${python} ]; then
65 echo "${python} not found!"
f6bcfd97
BP
66 exit 1
67fi
68
69
4726eec6
RD
70function makespec {
71 echo "*** Writing ${distdir}/wxPython${port}.spec"
72 cat ${spectemplate} \
73 | sed s:@PYTHON@:${python}:g \
74 | sed s:@PYVER@:${pyver}:g \
4726eec6
RD
75 | sed s:@PORT@:${port}:g \
76 | sed s:@LCPORT@:${lcport}:g \
77 | sed s:@TARNAME@:${tarname}:g \
357262e4 78 | sed s:@VERSION@:${version}:g \
b817523b 79 | sed s:@VER2@:${ver2}:g \
1e4a197e 80 | sed s:@UNICODE@:${unicode}:g \
4726eec6
RD
81 > ${distdir}/wxPython${port}.spec
82}
83
84
85
86for flag in $*; do
87 case ${flag} in
1e4a197e
RD
88 skipcopy) skipcopy=1 ;;
89 skipclean) skipclean=1 ;;
90 skiptar) skiptar=1 ;;
91 skiprpm) skiprpm=1 ;;
92 gtk2) unicode=1; port=GTK2; lcport=gtk2 ;;
93 x11) port=X11; lcport=x11 ;;
94 smp) export SMP=2 ;;
95 speconly) makespec; exit 0 ;;
96 srpm) rpmflag=-bs; ;;
4726eec6
RD
97
98 *) echo "Unknown flag \"${flag}\""
59455c67 99 usage
4726eec6
RD
100 exit 1
101 esac
102done
103
f6bcfd97 104
4726eec6
RD
105#----------------------------------------------------------------------
106# Setup build dirs
107
108echo "*** Setting up"
109
110if [ ! -d ${builddir} ]; then
111 mkdir -p ${builddir}
112fi
113
114if [ ! -d ${distdir} ]; then
115 mkdir -p ${distdir}
116fi
117
118for dir in SOURCES SPECS BUILD RPMS SRPMS; do
119 if [ ! -d ${rpmtop}/${dir} ]; then
120 mkdir -p ${rpmtop}/${dir}
121 fi
122done
123
124
125#----------------------------------------------------------------------
1e4a197e 126# Copy the sources from my CVS workspace
4726eec6 127
59455c67
RD
128function cleanup {
129 RMFILES=`find . -name "$1"`
130 if [ "$RMFILES" != "" ]; then
131 rm -rf $RMFILES
132 fi
133}
134
135
1e4a197e
RD
136if [ -z "${skipcopy}" ]; then
137 echo "*** Copying CVS tree"
4726eec6
RD
138 pushd ${builddir} > /dev/null
139 if [ -e ${tarver} ]; then
1e4a197e 140 rm -rf ${tarver}
4726eec6 141 fi
1e4a197e
RD
142 mkdir -p ${tarver}
143
144 # copy root dir contents
145 cp -pf --link ${wxdir}/* ${tarver} > /dev/null 2>&1
4726eec6 146
1e4a197e 147 # copy all top dirs except CVS, build, demos, utils, samples, and wxPython
59455c67 148 for d in art build contrib debian distrib docs include lib locale misc patches src; do
1fded56b
RD
149 if [ -e ${wxdir}/$d ]; then
150 cp -Rpf --link ${wxdir}/$d ${tarver} #> /dev/null 2>&1
151 fi
1e4a197e
RD
152 done
153
154 # now do the same thing for wxPython, skipping it's build dirs and such
155 mkdir ${tarver}/wxPython
156 cp -pf --link ${wxdir}/wxPython/* ${tarver}/wxPython > /dev/null 2>&1
59455c67 157 for d in contrib demo distrib distutils docs include licence samples scripts src SWIG wx wxPython; do
1e4a197e
RD
158 cp -Rpf --link ${wxdir}/wxPython/$d ${tarver}/wxPython #> /dev/null 2>&1
159 done
160
59455c67
RD
161# cp -Rpf --link ${wxdir}/* ${tarver} > /dev/null 2>&1
162# rm -r ${tarver}/bld*
163# rm -r ${tarver}/wxPython/build*
164# rm -r ${tarver}/wxPython/_build_rpm
1e4a197e
RD
165
166 echo "*** Removing uneeded stuff from copy of CVS tree"
4726eec6 167 pushd ${tarver} > /dev/null
59455c67
RD
168 cleanup .cvsignore
169 cleanup CVS
170 cleanup CVSROOT
171 rm BuildCVS.txt
4726eec6 172 rm *.spec
b817523b
RD
173 rm -rf docs/html
174 rm -rf docs/latex
1e4a197e
RD
175 rm -rf contrib/docs
176 rm -rf contrib/samples
177 rm locale/*.mo
59455c67
RD
178 cleanup ".#*"
179 cleanup "*~"
180 cleanup "*.pyc"
181 cleanup core
182 cleanup "core.[0-9]*"
1e4a197e 183
59455c67 184 rm -f wxPython/wx/* > /dev/null 2>&1
1e4a197e 185 rm wxPython/demo/.setup.sh
59455c67 186 rm -r wxPython/docs/xml-raw
4726eec6
RD
187
188 popd > /dev/null
189 popd > /dev/null
190fi
191
192
193#----------------------------------------------------------------------
357262e4
RD
194# Make the spec file and copy to ${builddir}/${tarver} so it will be
195# in the tar file when it's built
4726eec6 196
73c7ae5a
RD
197# TODO? Output all combinations of spec files to put in the tar file??
198
357262e4
RD
199makespec
200cp ${distdir}/wxPython${port}.spec ${builddir}/${tarver}/wxPython${port}.spec
4726eec6
RD
201
202
203#----------------------------------------------------------------------
204# Build the tar file
205
206if [ -z "${skiptar}" ]; then
1e4a197e
RD
207 echo "*** Creating language catalogs..."
208 pushd ${builddir}/${tarver}/locale > /dev/null
209 make allmo
210 popd > /dev/null
211
4726eec6 212 echo "*** Creating tarball..."
1e4a197e 213 cp distrib/README.1st.txt ${builddir}/${tarver}
4726eec6
RD
214 pushd ${builddir} > /dev/null
215 tar cvf ${distdir}/${tarver}.tar ${tarver} > /dev/null
1e4a197e 216
4726eec6
RD
217 echo "*** Compressing..."
218 if [ -e ${distdir}/${tarver}.tar.gz ]; then
219 rm ${distdir}/${tarver}.tar.gz
220 fi
221 gzip --best ${distdir}/${tarver}.tar
222 popd > /dev/null
223fi
224
225
226#----------------------------------------------------------------------
227# build the RPM
228
229if [ -z "${skiprpm}" ]; then
230 echo "*** Building RPMs..."
231 cp ${distdir}/${tarver}.tar.gz ${rpmtop}/SOURCES
1e4a197e 232 rpmbuild ${rpmflag} \
4726eec6
RD
233 --define "_topdir ${rpmtop}" \
234 --define "_tmppath ${builddir}" \
235 ${distdir}/wxPython${port}.spec
236 if [ "$?" != "0" ]; then
237 echo "*** RPM failure, exiting."
238 exit 1
239 else
357262e4 240 echo "*** Moving RPMs to ${distdir}"
4726eec6
RD
241 mv -f `find ${rpmtop} -name "wxPython*.rpm"` ${distdir}
242 fi
243fi
244
245#----------------------------------------------------------------------
246# Cleanup
247
248if [ -z ${skipclean} ]; then
249 echo "*** Cleaning up"
250 rm -rf ${rpmtop}
251 rm -rf ${builddir}
252fi
f6bcfd97
BP
253
254
255