mirror of
https://github.com/python/cpython.git
synced 2025-11-02 19:12:55 +00:00
- the .cvsignore files; these are only useful in the CVS tree - ref/ref.pdf - ref/ref.ps After compression, these last two account for about one-half MB, and half the tarball. They can be picked up from the appropriate format dist if needed.
42 lines
1,023 B
Bash
Executable file
42 lines
1,023 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# script to create the latex source distribution
|
|
# * should be modified to get the Python version number automatically
|
|
# from the Makefile or someplace.
|
|
#
|
|
# usage:
|
|
# ./mktarball.sh [tag]
|
|
#
|
|
# without [tag]: generate from the current version that's checked in
|
|
# (*NOT* what's in the current directory!)
|
|
#
|
|
# with [tag]: generate from the named tag
|
|
|
|
VERSION=1.5
|
|
|
|
TEMPDIR=tmp.$$
|
|
MYDIR=`pwd`
|
|
|
|
TAG="$1"
|
|
|
|
mkdirhier $TEMPDIR/Python-$VERSION/Doc || exit $?
|
|
if [ "$TAG" ] ; then
|
|
cvs export -r $TAG -d $TEMPDIR/Python-$VERSION/Doc python/dist/src/Doc \
|
|
|| exit $?
|
|
else
|
|
cvs checkout -d $TEMPDIR/Python-$VERSION/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 $TEMPDIR/Python-$VERSION/Doc/ref/ref.pdf
|
|
rm -f $TEMPDIR/Python-$VERSION/Doc/ref/ref.ps
|
|
|
|
cd $TEMPDIR
|
|
|
|
(tar cf - Python-$VERSION | gzip -9 >$MYDIR/latex-$VERSION.tar.gz) || exit $?
|
|
cd $MYDIR
|
|
rm -r $TEMPDIR || exit $?
|
|
|
|
exit 0
|