2004-11-08 18:55:25 -05:00
|
|
|
#!/bin/bash
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
set -o errexit
|
|
|
|
|
2006-02-26 22:25:48 -05:00
|
|
|
set
|
|
|
|
|
2004-11-08 18:55:25 -05:00
|
|
|
# read the config variables from the file given on the command line
|
2006-02-26 22:25:48 -05:00
|
|
|
# . $1
|
2004-11-08 18:55:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
if [ $skipdocs != yes ]; then
|
|
|
|
# Regenerate the reST docs
|
|
|
|
echo "Regenerating the reST docs..."
|
|
|
|
cd docs
|
|
|
|
for x in *.txt; do
|
|
|
|
docutils-html $x `basename $x .txt`.html
|
|
|
|
done
|
|
|
|
cd -
|
|
|
|
for doc in CHANGES BUILD INSTALL MigrationGuide default; do
|
|
|
|
cp docs/$doc.* $STAGING_DIR
|
|
|
|
done
|
|
|
|
|
|
|
|
# build the doc and demo tarballs
|
|
|
|
distrib/makedemo
|
|
|
|
distrib/makedocs
|
2006-06-01 23:43:46 -04:00
|
|
|
mv dist/wxPython-docs-$VERSION.tar.bz2 $STAGING_DIR
|
|
|
|
mv dist/wxPython-demo-$VERSION.tar.bz2 $STAGING_DIR
|
2004-11-08 18:55:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
# build the new docs too
|
|
|
|
if [ $skipnewdocs != yes ]; then
|
|
|
|
docs/bin/everything
|
2006-06-01 23:43:46 -04:00
|
|
|
mv dist/wxPython-newdocs-$VERSION.tar.bz2 $STAGING_DIR
|
2004-11-08 18:55:25 -05:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|