[Checkins] SVN: zc.recipe.zope3checkout/trunk/ More release info updates.

Jim Fulton jim at zope.com
Mon Jan 22 10:52:12 EST 2007


Log message for revision 72176:
  More release info updates.
  

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

-=-
Added: zc.recipe.zope3checkout/trunk/CHANGES.txt
===================================================================
--- zc.recipe.zope3checkout/trunk/CHANGES.txt	2007-01-22 15:45:59 UTC (rev 72175)
+++ zc.recipe.zope3checkout/trunk/CHANGES.txt	2007-01-22 15:52:11 UTC (rev 72176)
@@ -0,0 +1,21 @@
+Change History
+**************
+
+1.1 (2007-01-22)
+================
+
+Feature Changes
+---------------
+
+- Added an update method to work well with current buildout versions.
+
+Bugs Fixed
+----------
+
+- When updating installs, extensions and package-includes weren't
+  updated properly.
+
+1.0.dev_r68900
+==============
+
+Initial release.


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

Modified: zc.recipe.zope3checkout/trunk/README.txt
===================================================================
--- zc.recipe.zope3checkout/trunk/README.txt	2007-01-22 15:45:59 UTC (rev 72175)
+++ zc.recipe.zope3checkout/trunk/README.txt	2007-01-22 15:52:11 UTC (rev 72176)
@@ -1,5 +1,6 @@
-Zope 3 Checkout
-===============
+**********************
+Zope 3 Checkout Recipe
+**********************
 
 Recipe for creating a Zope 3 checkout in a buildout.
 

Modified: zc.recipe.zope3checkout/trunk/setup.py
===================================================================
--- zc.recipe.zope3checkout/trunk/setup.py	2007-01-22 15:45:59 UTC (rev 72175)
+++ zc.recipe.zope3checkout/trunk/setup.py	2007-01-22 15:52:11 UTC (rev 72176)
@@ -2,13 +2,23 @@
 
 name = "zc.recipe.zope3checkout"
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(
     name = name,
     version = "1.1",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "ZC Buildout recipe for installing a Zope 3 checkout",
-    long_description = open('README.txt').read(),
+    long_description=(
+        read('README.txt')
+        + '\n' +
+        read('CHANGES.txt')
+        + '\n' +
+        'Download\n'
+        '**********************\n'
+        ),
     license = "ZPL 2.1",
     keywords = "zope3 buildout",
     url='http://svn.zope.org/'+name,



More information about the Checkins mailing list