[pypy-svn] r70341 - pypy/trunk/pypy/doc

arigo at codespeak.net arigo at codespeak.net
Tue Dec 29 17:33:22 CET 2009


Author: arigo
Date: Tue Dec 29 17:33:21 2009
New Revision: 70341

Modified:
   pypy/trunk/pypy/doc/getting-started.txt
Log:
Document svn/pypy/trunk instead of svn/pypy/dist.
Give the appropriate warnings about checking that out.


Modified: pypy/trunk/pypy/doc/getting-started.txt
==============================================================================
--- pypy/trunk/pypy/doc/getting-started.txt	(original)
+++ pypy/trunk/pypy/doc/getting-started.txt	Tue Dec 29 17:33:21 2009
@@ -43,14 +43,23 @@
 If you choose to use subversion, you must issue the following command on your
 command line, DOS box, or terminal::
 
-    svn co http://codespeak.net/svn/pypy/dist pypy-dist
+    svn co http://codespeak.net/svn/pypy/trunk pypy-trunk
+
+This will check out the subversion head and place it into a directory
+named ``pypy-trunk``, and will get you the PyPy source in
+``pypy-trunk/pypy`` and documentation files in ``pypy-trunk/pypy/doc``.
+We try to ensure that the head is always stable, but it might
+occasionally be broken.  You may want to check out `our nightly tests:`_
+find a revision (5-digit number) that passed at least the
+``{own}`` and ``{applevel}`` tests (corresponding to a ``+`` sign on the
+line ``success``) and then check out using::
+
+    svn co -rXXXXX http://codespeak.net/svn/pypy/trunk pypy-trunk
+
+where XXXXX is the revision number.
+
+.. _`our nightly tests:`: http://codespeak.net:8099/summary?branch=<trunk>
 
-This will check out the most recent stable release from subversion and
-place it into a directory named ``pypy-dist``, and will get you the PyPy
-source in ``pypy-dist/pypy`` and documentation files in
-``pypy-dist/pypy/doc``.  If you would prefer to check out the "cutting edge"
-version of PyPy - which may not always be stable! - then check out
-from ``http://codespeak.net/svn/pypy/trunk`` intead.
 
 Where to go from here
 ----------------------



More information about the Pypy-commit mailing list