diff options
author | Fred Drake <fdrake@acm.org> | 1998-04-13 21:55:56 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-04-13 21:55:56 (GMT) |
commit | e3ae5198a33676e236bc22011874248043d52517 (patch) | |
tree | 34bfaf90b6aa376cf19de4a207407b24269cf643 /Doc/tools | |
parent | f5013f1f0c1eec01b8007f16d91f4a53da866553 (diff) | |
download | cpython-e3ae5198a33676e236bc22011874248043d52517.zip cpython-e3ae5198a33676e236bc22011874248043d52517.tar.gz cpython-e3ae5198a33676e236bc22011874248043d52517.tar.bz2 |
Update to use the new release number. Will generalize in the next round.
Diffstat (limited to 'Doc/tools')
-rwxr-xr-x | Doc/tools/mktarball.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/tools/mktarball.sh b/Doc/tools/mktarball.sh index 6e7ea81..cd8bd8f 100755 --- a/Doc/tools/mktarball.sh +++ b/Doc/tools/mktarball.sh @@ -12,30 +12,30 @@ # # with [tag]: generate from the named tag -VERSION=1.5 +RELEASE=1.5.1 TEMPDIR=tmp.$$ MYDIR=`pwd` TAG="$1" -mkdirhier $TEMPDIR/Python-$VERSION/Doc || exit $? +mkdirhier $TEMPDIR/Python-$RELEASE/Doc || exit $? if [ "$TAG" ] ; then - cvs export -r $TAG -d $TEMPDIR/Python-$VERSION/Doc python/dist/src/Doc \ + cvs export -r $TAG -d $TEMPDIR/Python-$RELEASE/Doc python/dist/src/Doc \ || exit $? else - cvs checkout -d $TEMPDIR/Python-$VERSION/Doc python/dist/src/Doc || exit $? + cvs checkout -d $TEMPDIR/Python-$RELEASE/Doc python/dist/src/Doc || exit $? rm -r `find $TEMPDIR -name CVS -print` || exit $? fi -rm -f `find $TEMPDIR/Python-$VERSION -name .cvsignore -print` +rm -f `find $TEMPDIR/Python-$RELEASE -name .cvsignore -print` -rm -f $TEMPDIR/Python-$VERSION/Doc/ref/ref.pdf -rm -f $TEMPDIR/Python-$VERSION/Doc/ref/ref.ps +rm -f $TEMPDIR/Python-$RELEASE/Doc/ref/ref.pdf +rm -f $TEMPDIR/Python-$RELEASE/Doc/ref/ref.ps cd $TEMPDIR -(tar cf - Python-$VERSION | gzip -9 >$MYDIR/latex-$VERSION.tar.gz) || exit $? +(tar cf - Python-$RELEASE | gzip -9 >$MYDIR/latex-$RELEASE.tar.gz) || exit $? cd $MYDIR rm -r $TEMPDIR || exit $? |