summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-03-13 10:54:12 (GMT)
committerGeorg Brandl <georg@python.org>2010-03-13 10:54:12 (GMT)
commitfce7b868076ad9ee7005273669b742c98214ec79 (patch)
tree9b6328d0de09b1e98309f484015fc57a8f977a81 /Doc
parent3446583976e2eed07d70778baa54c5dca97f9d3e (diff)
downloadcpython-fce7b868076ad9ee7005273669b742c98214ec79.zip
cpython-fce7b868076ad9ee7005273669b742c98214ec79.tar.gz
cpython-fce7b868076ad9ee7005273669b742c98214ec79.tar.bz2
Bump externals versions for doc build.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Makefile8
-rw-r--r--Doc/README.txt12
-rw-r--r--Doc/make.bat8
3 files changed, 15 insertions, 13 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index cdc97a3..9df8e1d 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -40,19 +40,19 @@ help:
checkout:
@if [ ! -d tools/sphinx ]; then \
echo "Checking out Sphinx..."; \
- svn checkout $(SVNROOT)/external/Sphinx-0.6.3/sphinx tools/sphinx; \
+ svn checkout $(SVNROOT)/external/Sphinx-0.6.5/sphinx tools/sphinx; \
fi
@if [ ! -d tools/docutils ]; then \
echo "Checking out Docutils..."; \
- svn checkout $(SVNROOT)/external/docutils-0.5/docutils tools/docutils; \
+ svn checkout $(SVNROOT)/external/docutils-0.6/docutils tools/docutils; \
fi
@if [ ! -d tools/jinja2 ]; then \
echo "Checking out Jinja..."; \
- svn checkout $(SVNROOT)/external/Jinja-2.1.1/jinja2 tools/jinja2; \
+ svn checkout $(SVNROOT)/external/Jinja-2.3.1/jinja2 tools/jinja2; \
fi
@if [ ! -d tools/pygments ]; then \
echo "Checking out Pygments..."; \
- svn checkout $(SVNROOT)/external/Pygments-1.1.1/pygments tools/pygments; \
+ svn checkout $(SVNROOT)/external/Pygments-1.3.1/pygments tools/pygments; \
fi
update: clean checkout
diff --git a/Doc/README.txt b/Doc/README.txt
index 75f89a5..d09561a 100644
--- a/Doc/README.txt
+++ b/Doc/README.txt
@@ -72,25 +72,27 @@ A "make update" updates the Subversion checkouts in `tools/`.
Without make
------------
-You'll need to checkout the Sphinx package to the `tools/` directory::
+You'll need to install the Sphinx package, either by checking it out via ::
- svn co http://svn.python.org/projects/external/Sphinx-0.6.1/sphinx tools/sphinx
+ svn co http://svn.python.org/projects/external/Sphinx-0.6.5/sphinx tools/sphinx
+
+or by installing it from PyPI.
Then, you need to install Docutils, either by checking it out via ::
- svn co http://svn.python.org/projects/external/docutils-0.5/docutils tools/docutils
+ svn co http://svn.python.org/projects/external/docutils-0.6/docutils tools/docutils
or by installing it from http://docutils.sf.net/.
You also need Jinja2, either by checking it out via ::
- svn co http://svn.python.org/projects/external/Jinja-2.1.1/jinja2 tools/jinja2
+ svn co http://svn.python.org/projects/external/Jinja-2.3.1/jinja2 tools/jinja2
or by installing it from PyPI.
You can optionally also install Pygments, either as a checkout via ::
- svn co http://svn.python.org/projects/external/Pygments-1.1.1/pygments tools/pygments
+ svn co http://svn.python.org/projects/external/Pygments-1.3.1/pygments tools/pygments
or from PyPI at http://pypi.python.org/pypi/Pygments.
diff --git a/Doc/make.bat b/Doc/make.bat
index 8e2be01..7026951 100644
--- a/Doc/make.bat
+++ b/Doc/make.bat
@@ -34,10 +34,10 @@ echo.
goto end
:checkout
-svn co %SVNROOT%/external/Sphinx-0.6.3/sphinx tools/sphinx
-svn co %SVNROOT%/external/docutils-0.5/docutils tools/docutils
-svn co %SVNROOT%/external/Jinja-2.1.1/jinja2 tools/jinja2
-svn co %SVNROOT%/external/Pygments-1.1.1/pygments tools/pygments
+svn co %SVNROOT%/external/Sphinx-0.6.5/sphinx tools/sphinx
+svn co %SVNROOT%/external/docutils-0.6/docutils tools/docutils
+svn co %SVNROOT%/external/Jinja-2.3.1/jinja2 tools/jinja2
+svn co %SVNROOT%/external/Pygments-1.3.1/pygments tools/pygments
goto end
:update