[Checkins] SVN: zc.buildout/branches/2/ Focus description

Jim Fulton jim at zope.com
Sat Apr 30 08:58:32 EDT 2011


Log message for revision 121485:
  Focus description

Changed:
  A   zc.buildout/branches/2/READMEFIRST.txt
  U   zc.buildout/branches/2/setup.py

-=-
Added: zc.buildout/branches/2/READMEFIRST.txt
===================================================================
--- zc.buildout/branches/2/READMEFIRST.txt	                        (rev 0)
+++ zc.buildout/branches/2/READMEFIRST.txt	2011-04-30 12:58:32 UTC (rev 121485)
@@ -0,0 +1,18 @@
+This is buildout 2, which is in an experimental state.  At this time,
+buildout2 is primarily for existing buildout users who want to use
+buildout with Python 3.
+
+There is a new bootstrap script for this release at::
+
+  svn://svn.zope.org/repos/main/zc.buildout/branches/2/bootstrap/bootstrap.py
+
+To get it you can use::
+
+  svn cat svn://svn.zope.org/repos/main/zc.buildout/branches/2/bootstrap/bootstrap.py
+
+(Or use an ``svn`` external to the directory.)
+
+or::
+
+  wget http://svn.zope.org/*checkout*/zc.buildout/branches/2/bootstrap/bootstrap.py
+


Property changes on: zc.buildout/branches/2/READMEFIRST.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Modified: zc.buildout/branches/2/setup.py
===================================================================
--- zc.buildout/branches/2/setup.py	2011-04-30 12:43:27 UTC (rev 121484)
+++ zc.buildout/branches/2/setup.py	2011-04-30 12:58:32 UTC (rev 121485)
@@ -12,7 +12,7 @@
 #
 ##############################################################################
 name = "zc.buildout"
-version = "2.0.0a1-dev"
+version = "2.0.0a2dev"
 
 import os
 from setuptools import setup
@@ -20,43 +20,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-long_description=(
-        read('README.txt')
-        + '\n' +
-        read('SYSTEM_PYTHON_HELP.txt')
-        + '\n' +
-        'Detailed Documentation\n'
-        '**********************\n'
-        + '\n' +
-        read('src', 'zc', 'buildout', 'buildout.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'unzip.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'repeatable.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'download.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'downloadcache.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'extends-cache.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'setup.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'update.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'debugging.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'testing.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'easy_install.txt')
-        + '\n' +
-        read('src', 'zc', 'buildout', 'distribute.txt')
-        + '\n' +
-        read('CHANGES.txt')
-        + '\n' +
-        'Download\n'
-        '**********************\n'
-        )
+long_description=read('READMEFIRST.txt')
 
 entry_points = """
 [console_scripts]



More information about the checkins mailing list