[Checkins] SVN: zc.buildout/trunk/ Updated release info.

Jim Fulton jim at zope.com
Thu Sep 14 19:26:40 EDT 2006


Log message for revision 70183:
  Updated release info.
  

Changed:
  A   zc.buildout/trunk/CHANGES.txt
  U   zc.buildout/trunk/README.txt
  U   zc.buildout/trunk/setup.py

-=-
Added: zc.buildout/trunk/CHANGES.txt
===================================================================
--- zc.buildout/trunk/CHANGES.txt	2006-09-14 20:39:46 UTC (rev 70182)
+++ zc.buildout/trunk/CHANGES.txt	2006-09-14 23:26:39 UTC (rev 70183)
@@ -0,0 +1,102 @@
+Status
+******
+The buildout system is under active development. Some near term
+priorities include:
+
+- Fixing `bugs <https://launchpad.net/products/zc.buildout/+bugs>`_
+
+- Making it easier to implement recipes by separating install and update.
+
+- Making buildouts more 
+  `repeatable <https://features.launchpad.net/products/zc.buildout/+spec/repeatable>`_
+
+
+- Adding support for making distributions from buildouts
+
+- Better error reporing
+
+- Handling of egg extras
+
+- More recipes
+
+Change History
+**************
+
+1.0.0b5
+=======
+
+Refactored to do more work in buildout and less work in easy_install.
+This makes things go a little faster, makes errors a little easier to
+handle, and allows extensions (like the sftp extension) to influence
+more of the process. This was done to fix a problem in using the sftp
+support.
+
+1.0.0b4
+=======
+
+- Added an **experimental** extensions mechanism, mainly to support
+  adding sftp support to buildouts that need it.
+
+- Fixed buildout self-updating on Windows.
+
+1.0.0b3
+=======
+
+- Added a help option (-h, --help)
+
+- Increased the default level of verbosity.
+
+- Buildouts now automatically update themselves to new versions of
+  zc.buildout and setuptools.
+
+- Added Windows support.
+
+- Added a recipe API for generating user errors.
+
+- No-longer generate a py_zc.buildout script.
+
+- Fixed some bugs in variable substitutions.  
+
+  The characters "-", "." and " ", weren't allowed in section or
+  option names.
+
+  Substitutions with invalid names were ignored, which caused
+  missleading failures downstream.
+
+- Improved error handling.  No longer show tracebacks for user errors.
+
+- Now require a recipe option (and therefore a section) for every part.
+
+- Expanded the easy_install module API to:
+
+  - Allow extra paths to be provided
+
+  - Specify explicit entry points
+
+  - Specify entry-point arguments
+
+1.0.0b2
+=======
+
+Added support for specifying some build_ext options when installing eggs
+from source distributions.
+
+1.0.0b1
+=======
+
+- Changed the bootstrapping code to only install setuptools and
+  zc.buildout. The bootstrap code no-longer runs the buildout itself.
+  This was to fix a bug that caused parts to be recreated
+  unnecessarily because the recipe signature in the initial buildout
+  reflected temporary locations for setuptools and zc.buildout.
+
+- Now create a minimal setup.py if it doesn't exist and issue a
+  warning that it is being created.
+
+- Fixed bug in saving installed configuration data.  %'s and extra
+  spaces weren't quoted.
+
+1.0.0a1
+=======
+
+Initial public version


Property changes on: zc.buildout/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zc.buildout/trunk/README.txt
===================================================================
--- zc.buildout/trunk/README.txt	2006-09-14 20:39:46 UTC (rev 70182)
+++ zc.buildout/trunk/README.txt	2006-09-14 23:26:39 UTC (rev 70183)
@@ -1,6 +1,6 @@
-=============
+*************
 Zope Buildout
-=============
+*************
 
 .. contents::
 
@@ -89,7 +89,7 @@
 and substitution extensions.  
 
 Installation
-============
+************
 
 There are two ways to install zc,buildout
 
@@ -106,7 +106,7 @@
    running the bootstrap script.
 
 More information
-================
+****************
 
 The detailed documentation for the various parts of buildout can be
 found in the following files:
@@ -121,13 +121,13 @@
 
 
 Download
-========
+********
 
 You can download zc.buildout and many buildout recipes from the
 `Python Package Index <http://www.python.org/pypi>`_.
 
 Recipes
-=======
+*******
 
 Existing recipes include:
 
@@ -152,7 +152,7 @@
    Zope 3 instance creayed by the zope3instance recipe.
 
 Buildout examples
-=================
+*****************
 
 Some simple buildout examples:
 
@@ -167,92 +167,12 @@
    specified everything needed to create a Zope 3 installation with
    the zc.sharing package installed in development mode.
 
-Status
-======
+Questions and Bug Reporting
+***************************
 
-The buildout system is under active development. Some near term
-priorities include:
+Please send questions and comments to the  
+`distutils SIG mailing list <mailto://distutils-sig@python.org>`_.
 
-- Better error reporing
+Report bugs using the `zc.buildout Launchpad Bug Tracker
+<https://launchpad.net/products/zc.buildout/+bugs>`_.
 
-- Windows support
-
-- Handling of egg extras
-
-- More recipes
-
-Questions
-=========
-
-You can send questions to jim at zope.com.
-
-Change History
-==============
-
-1.0.0b4
--------
-
-Added an **experimental** extensions mechamism, mainly to support
-adding sftp support to buildouts that need it.
-
-1.0.0b3
--------
-
-- Added a help option (-h, --help)
-
-- Increased the default level of verbosity.
-
-- Buildouts now automatically update themselves to new versions of
-  zc.buildout and setuptools.
-
-- Added Windows support.
-
-- Added a recipe API for generating user errors.
-
-- No-longer generate a py_zc.buildout script.
-
-- Fixed some bugs in variable substitutions.  
-
-  The characters "-", "." and " ", weren't allowed in section or
-  option names.
-
-  Substitutions with invalid names were ignored, which caused
-  missleading failures downstream.
-
-- Improved error handling.  No longer show tracebacks for user errors.
-
-- Now require a recipe option (and therefore a section) for every part.
-
-- Expanded the easy_install module API to:
-
-  - Allow extra paths to be provided
-
-  - Specify explicit entry points
-
-  - Specify entry-point arguments
-
-1.0.0b2
--------
-
-Added support for specifying some build_ext options when installing eggs
-from source distributions.
-
-1.0.0b1
--------
-
-- Changed the bootstrapping code to only install setuptools and
-  zc.buildout. The bootstrap code no-longer runs the buildout itself.
-  This was to fix a bug that caused parts to be recreated
-  unnecessarily because the recipe signature in the initial buildout
-  reflected temporary locations for setuptools and zc.buildout.
-
-- Now create a minimal setup.py if it doesn't exist and issue a
-  warning that it is being created.
-
-- Fixed bug in saving installed configuration data.  %'s and extra
-  spaces weren't quoted.
-
-1.0.0a1
--------
-
-Initial public version

Modified: zc.buildout/trunk/setup.py
===================================================================
--- zc.buildout/trunk/setup.py	2006-09-14 20:39:46 UTC (rev 70182)
+++ zc.buildout/trunk/setup.py	2006-09-14 23:26:39 UTC (rev 70183)
@@ -1,3 +1,4 @@
+import os
 from setuptools import setup, find_packages
 
 name = "zc.buildout"
@@ -3,9 +4,20 @@
 setup(
     name = name,
-    version = "1.0.0b3",
+    version = "1.0.0b5",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "System for managing development buildouts",
-    long_description=open('README.txt').read(),
+    long_description=(
+        open('README.txt').read()
+        + '\n' +
+        open('CHANGES.txt').read()
+        + '\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        open(os.path.join('src', 'zc', 'buildout', 'buildout.txt')).read()
+        + '\n' +
+        open(os.path.join('src', 'zc', 'buildout', 'update.txt')).read()
+        ),
     license = "ZPL 2.1",
     keywords = "development build",



More information about the Checkins mailing list