build a tarball when building the new docs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28378 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-07-22 01:01:58 +00:00
parent 477550dc0c
commit bc18250915

View File

@ -7,11 +7,14 @@ if [ ! -d wxPython ]; then # TODO: make this test more robust
exit 1 exit 1
fi fi
VERSION=`python -c "import setup;print setup.VERSION"`
# cleanup old build
rm -r docs/api/* rm -r docs/api/*
# build the docs
export PTYHONPATH=$PWD export PTYHONPATH=$PWD
epydoc --name wxPython \ epydoc --name wxPython \
--html \ --html \
--output docs/api \ --output docs/api \
@ -40,7 +43,19 @@ epydoc --name wxPython \
# TODO: # TODO:
# 1. Should rebuild the top-level docs too (but we need more of them first!) # 1. Should rebuild the top-level docs too (but we need more of them first!)
# 2. bundle it all up into a tarball
# 3. etc.
# bundle it all up into a tarball
DEST=wxPython-$VERSION/docs
mkdir -p _build_docs/$DEST
cp -R --link docs/api _build_docs/$DEST
cd _build_docs
rm -f ../dist/wxPythonNewDocs-$VERSION.tar.gz
tar cf ../dist/wxPythonNewDocs-$VERSION.tar $DEST
gzip -9 ../dist/wxPythonNewDocs-$VERSION.tar
# Cleanup
cd ..
rm -r _build_docs