2 #---------------------------------------------------------------------- 
   3 # Build an RPM containing both wxGTK and wxPython 
   7 spectemplate
=distrib
/wxPythonFull.spec.
in 
   9 if [ ! -d wxPython 
-o ! -e ${spectemplate} ]; then 
  10     echo "Please run this script from the root wxPython directory." 
  15 #---------------------------------------------------------------------- 
  18 version
=`python -c "import setup;print setup.VERSION"` 
  21 distdir
=${wxpdir}/dist
 
  22 builddir
=${wxpdir}/_build_rpm
 
  23 rpmtop
=${builddir}/rpmtop
 
  24 cvsroot
=:pserver
:anoncvs@cvs.wxwindows.org
:/pack
/cvsroots
/wxwindows
 
  25 pythonbin
=/usr
/bin
/python
 
  32 #---------------------------------------------------------------------- 
  36     echo "Usage: $0 py_version [command flags...]" 
  37     echo "   py_version     String to append to $pythonbin (which python" 
  38     echo "                  version to use.)" 
  41     echo "   skipcopy       Don't copy the files for the tarball from the workspace" 
  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" 
  45     echo "   gtk2           Build using wxGTK2 and Unicode" 
  46     echo "   x11            Build using wxX11" 
  47     echo "   speconly       Do nothing but write the RPM spec file" 
  48     echo "   srpm           Only make the SRPM" 
  49 #    echo "   smp            Add SMP=2 to the envivonment to speed wxGTK build" 
  60 ver2
=`echo ${version} | cut -c 1,2,3` 
  61 tarver
=${tarname}-${version} 
  63 python
=${pythonbin}${pyver} 
  64 if [ ! -e ${python} ]; then 
  65     echo "${python} not found!" 
  71     echo "*** Writing ${distdir}/wxPython${port}.spec" 
  73         | sed s
:@PYTHON@
:${python}:g \
 
  74         | sed s
:@PYVER@
:${pyver}:g \
 
  75         | sed s
:@PORT@
:${port}:g \
 
  76         | sed s
:@LCPORT@
:${lcport}:g \
 
  77         | sed s
:@TARNAME@
:${tarname}:g \
 
  78         | sed s
:@VERSION@
:${version}:g \
 
  79         | sed s
:@VER2@
:${ver2}:g \
 
  80         | sed s
:@UNICODE@
:${unicode}:g \
 
  81         > ${distdir}/wxPython
${port}.spec
 
  88         skipcopy
)  skipcopy
=1                          ;; 
  89         skipclean
) skipclean
=1                         ;; 
  92         gtk2
)      unicode
=1; port
=GTK2
; lcport
=gtk2   
;; 
  93         x11
)       port
=X11
; lcport
=x11                
;; 
  95         speconly
)  makespec
; exit 0                    ;; 
  98         *)  echo "Unknown flag \"${flag}\"" 
 105 #---------------------------------------------------------------------- 
 108 echo "*** Setting up" 
 110 if [ ! -d ${builddir} ]; then 
 114 if [ ! -d ${distdir} ]; then 
 118 for dir 
in SOURCES SPECS BUILD RPMS SRPMS
; do 
 119     if [ ! -d ${rpmtop}/${dir} ]; then 
 120         mkdir -p ${rpmtop}/${dir} 
 125 #---------------------------------------------------------------------- 
 126 # Copy the sources from my CVS workspace 
 129     RMFILES
=`find . -name "$1"` 
 130     if [ "$RMFILES" != "" ]; then 
 136 if [ -z "${skipcopy}" ]; then 
 137     echo "*** Copying CVS tree" 
 138     pushd ${builddir} > /dev
/null
 
 139     if [ -e ${tarver} ]; then 
 144     # copy root dir contents 
 145     cp -pf --link ${wxdir}/* ${tarver} > /dev
/null 
2>&1 
 147     # copy all top dirs except CVS, build, demos, utils, samples, and wxPython 
 148     for d 
in art build contrib debian distrib docs include lib locale misc patches src
; do 
 149         if [ -e ${wxdir}/$d ]; then 
 150             cp -Rpf --link ${wxdir}/$d ${tarver} #> /dev/null 2>&1 
 154     # now do the same thing for wxPython, skipping it's build dirs and such 
 155     for dir 
in `grep -v '#' ${wxdir}/wxPython/distrib/DIRLIST`; do 
 156         mkdir ${tarver}/${dir} 
 157         ##echo "cp -pf --link ${wxdir}/${dir}/* ${tarver}/${dir}" 
 158         cp -pf --link ${wxdir}/${dir}/* ${tarver}/${dir} > /dev
/null 
2>&1 
 161     # using DIRLIST as above will normally skip any files starting 
 162     # with a dot, but there are a few .files that we do want to 
 164     for dir 
in wxPython
/distrib
/msw
; do 
 165         cp -pf --link ${wxdir}/${dir}/.
[a
-zA-Z]* ${tarver}/${dir}  > /dev
/null 
2>&1 
 168     echo "*** Removing uneeded stuff from copy of CVS tree" 
 169     pushd ${tarver} > /dev
/null
 
 178     rm -rf contrib
/samples
 
 186     cleanup 
"core.[0-9]*" 
 188     rm -f wxPython
/wx
/*  > /dev
/null 
2>&1 
 195 #---------------------------------------------------------------------- 
 196 # Make the spec file and copy to ${builddir}/${tarver} so it will be 
 197 # in the tar file when it's built 
 199 # TODO?  Output all combinations of spec files to put in the tar file?? 
 202 cp ${distdir}/wxPython
${port}.spec 
${builddir}/${tarver}/wxPython
${port}.spec
 
 205 #---------------------------------------------------------------------- 
 208 if [ -z "${skiptar}" ]; then 
 209     echo "*** Creating language catalogs..." 
 210     pushd ${builddir}/${tarver}/locale 
> /dev
/null
 
 214     echo "*** Creating tarball..." 
 215     cp distrib
/README
.1st.txt 
${builddir}/${tarver} 
 216     pushd ${builddir} > /dev
/null
 
 217     tar cvf 
${distdir}/${tarver}.
tar ${tarver} > /dev
/null
 
 219     echo "*** Compressing..." 
 220     if [ -e ${distdir}/${tarver}.
tar.gz 
]; then 
 221         rm ${distdir}/${tarver}.
tar.gz
 
 223     gzip --best ${distdir}/${tarver}.
tar 
 228 #---------------------------------------------------------------------- 
 231 if [ -z "${skiprpm}" ]; then 
 232     echo "*** Building RPMs..." 
 233     cp ${distdir}/${tarver}.
tar.gz 
${rpmtop}/SOURCES
 
 234     rpmbuild 
${rpmflag} \
 
 235         --define "_topdir ${rpmtop}" \
 
 236         --define "_tmppath ${builddir}" \
 
 237         ${distdir}/wxPython
${port}.spec
 
 238     if [ "$?" != "0" ]; then 
 239         echo "*** RPM failure, exiting." 
 242         echo "*** Moving RPMs to ${distdir}" 
 243         mv -f `find ${rpmtop} -name "wxPython*.rpm"` ${distdir} 
 247 #---------------------------------------------------------------------- 
 250 if [ -z ${skipclean} ]; then 
 251     echo "*** Cleaning up"