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     which python version to use." 
  40     echo "   skipcopy       Don't copy the files for the tarball from the workspace" 
  41     echo "   skiptar        Don't build the tarball" 
  42     echo "   skiprpm        Don't build the RPM" 
  43     echo "   skipclean      Don't do the cleanup at the end" 
  44     echo "   speconly       Do nothing but write the RPM spec file" 
  45     echo "   srpm           Only make the SRPM" 
  56 ver2
=`echo ${version} | cut -c 1,2,3` 
  57 tarver
=${tarname}-${version} 
  59 python
=${pythonbin}${pyver} 
  60 if [ ! -e ${python} ]; then 
  61     echo "${python} not found!" 
  67     echo "*** Writing ${distdir}/wxPython.spec" 
  69         | sed s
:@PYTHON@
:${python}:g \
 
  70         | sed s
:@PYVER@
:${pyver}:g \
 
  71         | sed s
:@TARNAME@
:${tarname}:g \
 
  72         | sed s
:@VERSION@
:${version}:g \
 
  73         | sed s
:@VER2@
:${ver2}:g \
 
  74         > ${distdir}/wxPython.spec
 
  81         skipcopy
)  skipcopy
=1                          ;; 
  82         skipclean
) skipclean
=1                         ;; 
  83         skiptar
)   skiptar
=1; skipcopy
=1               ;; 
  85         speconly
)  makespec
; exit 0                    ;; 
  88         *)  echo "Unknown flag \"${flag}\"" 
  95 #---------------------------------------------------------------------- 
 100 if [ ! -d ${builddir} ]; then 
 104 if [ ! -d ${distdir} ]; then 
 108 for dir 
in SOURCES SPECS BUILD RPMS SRPMS
; do 
 109     if [ ! -d ${rpmtop}/${dir} ]; then 
 110         mkdir -p ${rpmtop}/${dir} 
 115 #---------------------------------------------------------------------- 
 116 # Copy the sources from my CVS workspace 
 119     RMFILES
=`find . -name "$1"` 
 120     if [ "$RMFILES" != "" ]; then 
 126 if [ -z "${skipcopy}" ]; then 
 127     echo "*** Copying CVS tree" 
 128     pushd ${builddir} > /dev
/null
 
 129     if [ -e ${tarver} ]; then 
 134     # copy root dir contents 
 135     cp -pf --link ${wxdir}/* ${tarver} > /dev
/null 
2>&1 
 137     # copy all top dirs except CVS, build, demos, samples, utils, and wxPython 
 138     for d 
in art build contrib debian distrib docs include lib locale misc patches src
; do 
 139         if [ -e ${wxdir}/$d ]; then 
 140             cp -Rpf --link ${wxdir}/$d ${tarver} #> /dev/null 2>&1 
 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 
 151     # now do the same thing for wxPython, skipping it's build dirs and such 
 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 
 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 
 161     for dir 
in wxPython
/distrib
/msw
; do 
 162         cp -pf --link ${wxdir}/${dir}/.
[a
-zA-Z]* ${tarver}/${dir}  > /dev
/null 
2>&1 
 165     echo "*** Removing uneeded stuff from copy of CVS tree" 
 166     pushd ${tarver} > /dev
/null
 
 173     rm -rf distrib
/msw
/tmake
 
 177     rm -rf contrib
/samples
 
 186     cleanup 
"core.[0-9]*" 
 188     # ports that are not supported yet 
 195     rm -f wxPython
/wx
/*  > /dev
/null 
2>&1 
 202 #---------------------------------------------------------------------- 
 203 # Make the spec file and copy to ${builddir}/${tarver} so it will be 
 204 # in the tar file when it's built 
 206 # TODO?  Output all combinations of spec files to put in the tar file?? 
 209 cp ${distdir}/wxPython.spec 
${builddir}/${tarver}/wxPython.spec
 
 212 #---------------------------------------------------------------------- 
 215 if [ -z "${skiptar}" ]; then 
 216     echo "*** Creating language catalogs..." 
 217     pushd ${builddir}/${tarver}/locale 
> /dev
/null
 
 221     echo "*** Creating tarball..." 
 222     cp distrib
/README
.1st.txt 
${builddir}/${tarver} 
 223     pushd ${builddir} > /dev
/null
 
 224     tar cvf 
${distdir}/${tarver}.
tar ${tarver} > /dev
/null
 
 226     echo "*** Compressing..." 
 227     if [ -e ${distdir}/${tarver}.
tar.gz 
]; then 
 228         rm ${distdir}/${tarver}.
tar.gz
 
 230     gzip --best ${distdir}/${tarver}.
tar 
 235 #---------------------------------------------------------------------- 
 238 if [ -z "${skiprpm}" ]; then 
 239     echo "*** Building RPMs..." 
 240     cp ${distdir}/${tarver}.
tar.gz 
${rpmtop}/SOURCES
 
 242     if [ "${srpmonly}" = "1" ]; then 
 244             --define "_topdir ${rpmtop}" \
 
 245             --define "_tmppath ${builddir}" \
 
 246             --define "release 1" \
 
 247             ${distdir}/wxPython.spec
 
 248         if [ "$?" != "0" ]; then 
 249             echo "*** RPM failure, exiting." 
 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." 
 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." 
 277     echo "*** Moving RPMs to ${distdir}" 
 278     mv -f `find ${rpmtop} -name "wxPython*.rpm"` ${distdir} 
 281 #---------------------------------------------------------------------- 
 284 if [ -z ${skipclean} ]; then 
 285     echo "*** Cleaning up"