2000-10-30 21:08:42 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
if [ ! -d wxPython ]; then
|
|
|
|
echo "Please run this script from the root wxPython directory."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2004-01-14 02:11:55 +00:00
|
|
|
VERSION=`python -c "import setup;print setup.VERSION"`
|
|
|
|
|
2000-10-30 21:08:42 +00:00
|
|
|
mkdir _distrib_tgz
|
2004-01-14 02:11:55 +00:00
|
|
|
mkdir _distrib_tgz/wxPython-$VERSION
|
2000-10-30 21:08:42 +00:00
|
|
|
|
2004-01-14 02:11:55 +00:00
|
|
|
cp -R demo _distrib_tgz/wxPython-$VERSION
|
|
|
|
cp -R samples _distrib_tgz/wxPython-$VERSION
|
2000-10-30 21:08:42 +00:00
|
|
|
|
|
|
|
# do some cleanup
|
2004-01-14 02:11:55 +00:00
|
|
|
rm -rf `find _distrib_tgz/wxPython-$VERSION -name CVS`
|
|
|
|
rm -f `find _distrib_tgz/wxPython-$VERSION -name "*.pyc"`
|
|
|
|
rm -f `find _distrib_tgz/wxPython-$VERSION -name .cvsignore`
|
|
|
|
rm -f `find _distrib_tgz/wxPython-$VERSION -name "core.[0-9]*"`
|
|
|
|
rm -f `find _distrib_tgz/wxPython-$VERSION -name "core"`
|
|
|
|
rm -f `find _distrib_tgz/wxPython-$VERSION -name wxPython`
|
|
|
|
rm -f `find _distrib_tgz/wxPython-$VERSION -name "*.o"`
|
|
|
|
rm -f `find _distrib_tgz/wxPython-$VERSION -name "*.so"`
|
|
|
|
rm -f `find _distrib_tgz/wxPython-$VERSION -name "*~"`
|
|
|
|
rm -f `find _distrib_tgz/wxPython-$VERSION -name ".#*"`
|
2000-10-30 21:08:42 +00:00
|
|
|
|
|
|
|
cd _distrib_tgz
|
|
|
|
|
2004-10-10 00:48:34 +00:00
|
|
|
tar cvf ../dist/wxPython-demo-$VERSION.tar wxPython-$VERSION
|
2005-12-30 23:02:03 +00:00
|
|
|
gzip -9 -f ../dist/wxPython-demo-$VERSION.tar
|
2000-10-30 21:08:42 +00:00
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -r _distrib_tgz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|