[Checkins] SVN: zope.app.component/trunk/ finished buildout

Bernd Dorn bernd.dorn at lovelysystems.com
Tue Mar 27 12:10:05 EDT 2007


Log message for revision 73795:
  finished buildout

Changed:
  U   zope.app.component/trunk/bootstrap.py
  U   zope.app.component/trunk/buildout.cfg
  U   zope.app.component/trunk/setup.py

-=-
Modified: zope.app.component/trunk/bootstrap.py
===================================================================
--- zope.app.component/trunk/bootstrap.py	2007-03-27 16:05:25 UTC (rev 73794)
+++ zope.app.component/trunk/bootstrap.py	2007-03-27 16:10:04 UTC (rev 73795)
@@ -36,6 +36,7 @@
     cmd = '"%s"' % cmd # work around spawn lamosity on windows
 
 ws = pkg_resources.working_set
+import pdb;pdb.set_trace()
 assert os.spawnle(
     os.P_WAIT, sys.executable, sys.executable,
     '-c', cmd, '-mqNxd', tmpeggs, 'zc.buildout',

Modified: zope.app.component/trunk/buildout.cfg
===================================================================
--- zope.app.component/trunk/buildout.cfg	2007-03-27 16:05:25 UTC (rev 73794)
+++ zope.app.component/trunk/buildout.cfg	2007-03-27 16:10:04 UTC (rev 73795)
@@ -1,35 +1,9 @@
 [buildout]
 develop = . 
-        ../zope.annotation
-        ../zope.app.broken
-        ../zope.app.component
-        ../zope.app.container
-        ../zope.app.interface
-        ../zope.app.module
-        ../zope.app.publication
-        ../zope.app.publisher
-        ../zope.app.testing
-        ../zope.app.zapi
-        ../zope.dublincore
-        ../zope.filerepresentation
-        ../zope.i18n
-        ../zope.location
-        ../zope.security
-        ../zope.traversing
-        ../zope.app.appsetup
-        ../zope.app.applicationcontrol
-        ../zope.app.http
-        ../zope.app.dependable
-        ../zope.app.error
-        ../zope.app.authentication
-        ../zope.app.security
-        ../zope.app.exception
-
 parts = test
 
-#find-links = http://download.zope.org/distribution/
-
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.app.component
+defaults = ['--tests-pattern', '^f?tests$']
+eggs = zope.app.component [test, back35]
 

Modified: zope.app.component/trunk/setup.py
===================================================================
--- zope.app.component/trunk/setup.py	2007-03-27 16:05:25 UTC (rev 73794)
+++ zope.app.component/trunk/setup.py	2007-03-27 16:10:04 UTC (rev 73795)
@@ -12,20 +12,40 @@
       package_dir = {'': 'src'},
 
       namespace_packages=['zope', 'zope.app'],
+      extras_require=dict(test=['zope.app.testing',
+                                'zope.app.securitypolicy',
+                                'zope.app.zcmlfiles',
+                                'zope.modulealias',
+                                'zope.app.schema',
+                                'zope.testbrowser',
+                                ],
+                          back35=['zope.app.layers']),
       include_package_data = True,
-      install_requires=['zope.component',
+      install_requires=['setuptools',
+                        'zope.annotation',
+                        'zope.app.container',
+                        'zope.app.interface',
+                        'zope.app.pagetemplate',
+                        'zope.app.security',
+                        'zope.cachedescriptors',
+                        'zope.component [hook]',
+                        'zope.configuration',
+                        'zope.deferredimport',
+                        'zope.deprecation',
+                        'zope.event',
+                        'zope.exceptions',
+                        'zope.filerepresentation',
+                        'zope.formlib',
+                        'zope.i18nmessageid',
                         'zope.interface',
-                        'zope.exceptions',
+                        'zope.lifecycleevent',
+                        'zope.location',
+                        'zope.publisher',
+                        'zope.schema',
                         'zope.security',
-                        'zope.app.container',
-                        #'zope.app.interface',
-                        #'zope.app.i18n',
-                        #'zope.schema',
-                        #'zope.app.module',
-                        #'zope.traversing',
-                        #'zope.deferredimport',
-                        #'zope.deprecation',
-                        #'zope.lifecycleevent',
+                        'zope.thread',
+                        'zope.traversing',
+                        'ZODB3',
                         ],
       zip_safe = False,
       )



More information about the Checkins mailing list