[Checkins] SVN: Sandbox/baijum/z3hello/trunk/ Updated to use zc.zope3recipes

Baiju M baiju.m.mail at gmail.com
Wed Mar 21 05:21:03 EDT 2007


Log message for revision 73414:
  Updated to use zc.zope3recipes
  

Changed:
  U   Sandbox/baijum/z3hello/trunk/README.txt
  U   Sandbox/baijum/z3hello/trunk/buildout.cfg
  D   Sandbox/baijum/z3hello/trunk/recipes/
  U   Sandbox/baijum/z3hello/trunk/setup.py

-=-
Modified: Sandbox/baijum/z3hello/trunk/README.txt
===================================================================
--- Sandbox/baijum/z3hello/trunk/README.txt	2007-03-21 08:45:21 UTC (rev 73413)
+++ Sandbox/baijum/z3hello/trunk/README.txt	2007-03-21 09:21:03 UTC (rev 73414)
@@ -2,12 +2,20 @@
 z3hello
 *******
 
-A Zope 3 hello app using buildout.
+A Zope 3 hello application for demonstarting
+use of buildout and zc.zope3recipes for building
+application soley from eggs.
 
 Releases
 ********
 
 ==================
+0.2   (2007/03/19)
+==================
+
+Use zc.zope3recipes:app recipe
+
+==================
 0.1   (2007/03/19)
 ==================
 

Modified: Sandbox/baijum/z3hello/trunk/buildout.cfg
===================================================================
--- Sandbox/baijum/z3hello/trunk/buildout.cfg	2007-03-21 08:45:21 UTC (rev 73413)
+++ Sandbox/baijum/z3hello/trunk/buildout.cfg	2007-03-21 09:21:03 UTC (rev 73414)
@@ -1,16 +1,15 @@
 [buildout]
-develop = . recipes
+develop = .
 parts = helloapp instance test
 
 find-links = http://download.zope.org/distribution/
 
+[zope3]
+location =
+
 [helloapp]
-recipe = recipes:application
-site.zcml = <configure 
-                xmlns="http://namespaces.zope.org/zope"
-                i18n_domain="zope"
-                >
-            <include package="zope.app.zcmlfiles" />
+recipe = zc.zope3recipes:app
+site.zcml = <include package="zope.app.zcmlfiles" />
             <include package="zope.app.authentication" />
             <include package="zope.app.securitypolicy" />
             <include package="zope.app.twisted" />
@@ -36,7 +35,7 @@
                 role="zope.Manager"
                 principal="zope.manager"
                 />
-             </configure>
+
 eggs = z3hello
 
 [instance]

Modified: Sandbox/baijum/z3hello/trunk/setup.py
===================================================================
--- Sandbox/baijum/z3hello/trunk/setup.py	2007-03-21 08:45:21 UTC (rev 73413)
+++ Sandbox/baijum/z3hello/trunk/setup.py	2007-03-21 09:21:03 UTC (rev 73414)
@@ -18,15 +18,23 @@
 
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name = 'z3hello',
-      version = '0.1',
+      version = '0.2',
       url = 'http://svn.zope.org/Sandbox/baijum/z3hello/trunk',
       license = 'ZPL 2.1',
-      description = 'A Zope 3 hello app using buildout',
+      description = 'A Zope 3 hello app solely from eggs using zc.buildout',
       author = 'Zope Corporation and Contributors',
       author_email = 'zope3-dev at zope.org',
-      long_description = "",
-
+      long_description=(
+        read('README.txt')
+        + '\n' +
+        'Download\n'
+        '**********************\n'
+        ),
+ 
       packages = find_packages('src'),
       package_dir = {'': 'src'},
 



More information about the Checkins mailing list