Switch to bzip2 for compression
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39523 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -24,14 +24,14 @@ if [ $skipdocs != yes ]; then
|
||||
# build the doc and demo tarballs
|
||||
distrib/makedemo
|
||||
distrib/makedocs
|
||||
mv dist/wxPython-docs-$VERSION.tar.gz $STAGING_DIR
|
||||
mv dist/wxPython-demo-$VERSION.tar.gz $STAGING_DIR
|
||||
mv dist/wxPython-docs-$VERSION.tar.bz2 $STAGING_DIR
|
||||
mv dist/wxPython-demo-$VERSION.tar.bz2 $STAGING_DIR
|
||||
|
||||
|
||||
# build the new docs too
|
||||
if [ $skipnewdocs != yes ]; then
|
||||
docs/bin/everything
|
||||
mv dist/wxPython-newdocs-$VERSION.tar.gz $STAGING_DIR
|
||||
mv dist/wxPython-newdocs-$VERSION.tar.bz2 $STAGING_DIR
|
||||
fi
|
||||
fi
|
||||
|
||||
|
@@ -23,9 +23,9 @@ if [ $skiposx != yes ]; then
|
||||
echo "Copying source files and build script..."
|
||||
ssh root@$host "mkdir -p $OSX_BUILD && rm -rf $OSX_BUILD/* || true"
|
||||
|
||||
scp $STAGING_DIR/wxPython-src-$VERSION.tar.gz \
|
||||
$STAGING_DIR/wxPython-docs-$VERSION.tar.gz \
|
||||
$STAGING_DIR/wxPython-demo-$VERSION.tar.gz \
|
||||
scp $STAGING_DIR/wxPython-src-$VERSION.tar.bz2 \
|
||||
$STAGING_DIR/wxPython-docs-$VERSION.tar.bz2 \
|
||||
$STAGING_DIR/wxPython-demo-$VERSION.tar.bz2 \
|
||||
distrib/all/do-build-osx \
|
||||
root@$host:$OSX_BUILD
|
||||
|
||||
|
@@ -18,7 +18,7 @@ if [ $skipwin != yes ]; then
|
||||
fi
|
||||
|
||||
echo "Copying source file and build script..."
|
||||
scp $STAGING_DIR/wxPython-src-$VERSION.tar.gz \
|
||||
scp $STAGING_DIR/wxPython-src-$VERSION.tar.bz2 \
|
||||
distrib/all/do-build-windows \
|
||||
$WIN_HOST:$WIN_BUILD
|
||||
|
||||
|
@@ -39,10 +39,10 @@ echo "which gcc = " `which gcc`
|
||||
#exit 0
|
||||
|
||||
# untar the source
|
||||
echo "Unarchiving wxPython-src-$VERSION.tar.gz"
|
||||
echo "Unarchiving wxPython-src-$VERSION.tar.bz2"
|
||||
cd $DESTDIR
|
||||
tar xzf wxPython-src-$VERSION.tar.gz
|
||||
rm wxPython-src-$VERSION.tar.gz
|
||||
tar xjf wxPython-src-$VERSION.tar.bz2
|
||||
rm wxPython-src-$VERSION.tar.bz2
|
||||
|
||||
|
||||
echo "Invoking wxPythonOSX build script..."
|
||||
@@ -63,8 +63,8 @@ cd $DESTDIR
|
||||
if [ $SKIPCLEAN != yes ]; then
|
||||
echo "Cleaning up..."
|
||||
rm -r $WXDIR || true
|
||||
rm wxPython-docs-$VERSION.tar.gz
|
||||
rm wxPython-demo-$VERSION.tar.gz
|
||||
rm wxPython-docs-$VERSION.tar.bz2
|
||||
rm wxPython-demo-$VERSION.tar.bz2
|
||||
fi
|
||||
|
||||
echo "-=-=-=- Goodbye! -=-=-=-"
|
||||
|
@@ -69,7 +69,7 @@ for dir in SPECS BUILD RPMS SOURCES SRPMS tmp; do
|
||||
fi
|
||||
done
|
||||
|
||||
cp wxPython-src-$VERSION.tar.gz $rpmtop/SOURCES
|
||||
cp wxPython-src-$VERSION.tar.bz2 $rpmtop/SOURCES
|
||||
|
||||
echo "******************** PYVER = " $PYVER
|
||||
for ver in $PYVER; do
|
||||
@@ -93,7 +93,7 @@ if [ $SKIPCLEAN != yes ]; then
|
||||
rm -rf $rpmtop
|
||||
|
||||
echo "Cleaning up..."
|
||||
rm *.spec *.tar.gz
|
||||
rm *.spec *.tar.bz2
|
||||
fi
|
||||
|
||||
echo "-=-=-=- Goodbye! -=-=-=-"
|
||||
|
@@ -50,10 +50,10 @@ fi
|
||||
|
||||
|
||||
# untar the source
|
||||
echo "Unarchiving wxPython-src-$VERSION.tar.gz"
|
||||
echo "Unarchiving wxPython-src-$VERSION.tar.bz2"
|
||||
cd $DESTDIR
|
||||
tar xzf wxPython-src-$VERSION.tar.gz
|
||||
rm wxPython-src-$VERSION.tar.gz
|
||||
tar xjf wxPython-src-$VERSION.tar.bz2
|
||||
rm wxPython-src-$VERSION.tar.bz2
|
||||
|
||||
|
||||
# Fix line endings
|
||||
|
Reference in New Issue
Block a user