[Checkins] SVN: Zope2.buildout/trunk/ Initial project layout

Philipp von Weitershausen philikon at philikon.de
Sun Jun 3 11:53:46 EDT 2007


Log message for revision 76247:
  Initial project layout
  

Changed:
  A   Zope2.buildout/trunk/buildout.cfg
  A   Zope2.buildout/trunk/include/
  A   Zope2.buildout/trunk/setup.py
  A   Zope2.buildout/trunk/src/

-=-
Added: Zope2.buildout/trunk/buildout.cfg
===================================================================
--- Zope2.buildout/trunk/buildout.cfg	                        (rev 0)
+++ Zope2.buildout/trunk/buildout.cfg	2007-06-03 15:53:45 UTC (rev 76247)
@@ -0,0 +1,8 @@
+[buildout]
+develop = .
+parts = test
+find-links = http://download.zope.org/distribution/
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = Zope2


Property changes on: Zope2.buildout/trunk/include
___________________________________________________________________
Name: svn:externals
   + ExtensionClass  svn://svn.zope.org/repos/main/Zope/trunk/lib/python/ExtensionClass



Added: Zope2.buildout/trunk/setup.py
===================================================================
--- Zope2.buildout/trunk/setup.py	                        (rev 0)
+++ Zope2.buildout/trunk/setup.py	2007-06-03 15:53:45 UTC (rev 76247)
@@ -0,0 +1,224 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Setup for the Acquisition egg package
+"""
+import os
+from setuptools import setup, find_packages, Extension
+
+setup(name='Zope2',
+      version = '2.11.0a1',
+      url='http://zope.org',
+      license='ZPL 2.1',
+      description='',
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      long_description='',
+      
+	  packages=find_packages('src'),
+	  package_dir={'': 'src'},
+
+      ext_modules=[
+
+    # AccessControl
+    Extension(name='AccessControl.cAccessControl',
+              include_dirs=EXTENSIONCLASS_INCLUDEDIRS+['Acquisition'],
+              sources=['AccessControl/cAccessControl.c'],
+              depends=['ExtensionClass/ExtensionClass.h',
+                       'ExtensionClass/pickle/pickle.c',
+                       'Acquisition/Acquisition.h']),
+
+    # DocumentTemplate
+    Extension(name='DocumentTemplate.cDocumentTemplate',
+              include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
+              sources=['DocumentTemplate/cDocumentTemplate.c']),
+
+    Extension(name='MethodObject._MethodObject',
+              include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
+              sources=["MethodObject/_MethodObject.c"],
+              depends=["ExtensionClass/ExtensionClass.h"]),
+    Extension(name='MultiMapping._MultiMapping',
+              include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
+              sources=["MultiMapping/_MultiMapping.c"],
+              depends=["ExtensionClass/ExtensionClass.h"]),
+    Extension(name='ThreadLock._ThreadLock',
+              include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
+              sources=["ThreadLock/_ThreadLock.c"],
+              depends=["ExtensionClass/ExtensionClass.h"]),
+    Extension(name='Missing._Missing',
+              include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
+              sources=["Missing/_Missing.c"],
+              depends=["ExtensionClass/ExtensionClass.h"]),
+    Extension(name='Record._Record',
+              include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
+              sources=["Record/_Record.c"],
+              depends=["ExtensionClass/ExtensionClass.h"]),
+    Extension(name='ComputedAttribute._ComputedAttribute',
+              include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
+              sources=["ComputedAttribute/_ComputedAttribute.c"],
+              depends=["ExtensionClass/ExtensionClass.h"]),
+
+    # initgroups
+    Extension(name='initgroups._initgroups',
+              sources=['initgroups/_initgroups.c']),
+
+    # indexes
+    Extension(name='Products.PluginIndexes.TextIndex.Splitter.ZopeSplitter.ZopeSplitter',
+              sources=['Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src/ZopeSplitter.c']),
+    Extension(name='Products.PluginIndexes.TextIndex.Splitter.ISO_8859_1_Splitter.ISO_8859_1_Splitter',
+              sources=['Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src/ISO_8859_1_Splitter.c']),
+    Extension(name='Products.PluginIndexes.TextIndex.Splitter.UnicodeSplitter.UnicodeSplitter',
+              sources=['Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/src/UnicodeSplitter.c']),
+    Extension(name='Products.ZCTextIndex.stopper',
+              sources=['Products/ZCTextIndex/stopper.c']),
+    Extension(name='Products.ZCTextIndex.okascore',
+              sources=['Products/ZCTextIndex/okascore.c']),
+
+    Extension(name = 'Persistence._Persistence',
+              include_dirs = ['.', 'persistent', 'ExtensionClass'],
+              sources = ['Persistence/_Persistence.c'],
+              depends = ['persistent/cPersistence.h',
+                         'ExtensionClass/ExtensionClass.h']
+              ),
+    ]
+
+##       ext_modules=[Extension("Acquisition._Acquisition",
+##                              [os.path.join('src', 'Acquisition',
+##                                            '_Acquisition.c')],
+##                              include_dirs=['include', 'src']),
+##                    ],
+      install_requires=['ExtensionClass',
+                        'Acquisition',
+                        'ZODB3',
+                        'RestrictedPython',
+                        'docutils',
+                        'zdaemon',
+                        'zope.annotation',
+                        'zope.app.EXTERNALS.txt',
+                        'zope.app.__init__.py',
+                        'zope.app.annotation',
+                        'zope.app.apidoc',
+                        'zope.app.applicationcontrol',
+                        'zope.app.appsetup',
+                        'zope.app.authentication',
+                        'zope.app.basicskin',
+                        'zope.app.broken',
+                        'zope.app.cache',
+                        'zope.app.component',
+                        'zope.app.container',
+                        'zope.app.content',
+                        'zope.app.content_types',
+                        'zope.app.copypastemove',
+                        'zope.app.datetimeutils',
+                        'zope.app.debug',
+                        'zope.app.decorator',
+                        'zope.app.dependable',
+                        'zope.app.dtmlpage',
+                        'zope.app.dublincore',
+                        'zope.app.error',
+                        'zope.app.event',
+                        'zope.app.exception',
+                        'zope.app.file',
+                        'zope.app.filerepresentation',
+                        'zope.app.folder',
+                        'zope.app.form',
+                        'zope.app.ftests',
+                        'zope.app.generations',
+                        'zope.app.http',
+                        'zope.app.i18n',
+                        'zope.app.interface',
+                        'zope.app.intid',
+                        'zope.app.introspector',
+                        'zope.app.keyreference',
+                        'zope.app.layers',
+                        'zope.app.locales',
+                        'zope.app.location',
+                        'zope.app.mail',
+                        'zope.app.onlinehelp',
+                        'zope.app.pagetemplate',
+                        'zope.app.preference',
+                        'zope.app.preview',
+                        'zope.app.principalannotation',
+                        'zope.app.publication',
+                        'zope.app.publisher',
+                        'zope.app.rdb',
+                        'zope.app.renderer',
+                        'zope.app.rotterdam',
+                        'zope.app.schema',
+                        'zope.app.security',
+                        'zope.app.servicenames',
+                        'zope.app.session',
+                        'zope.app.site',
+                        'zope.app.size',
+                        'zope.app.skins',
+                        'zope.app.sqlscript',
+                        'zope.app.testing',
+                        'zope.app.tests',
+                        'zope.app.timezones',
+                        'zope.app.traversing',
+                        'zope.app.tree',
+                        'zope.app.undo',
+                        'zope.app.wfmc',
+                        'zope.app.wsgi',
+                        'zope.app.zapi',
+                        'zope.app.zopeappgenerations',
+                        'zope.app.zptpage',
+                        'zope.cachedescriptors',
+                        'zope.component',
+                        'zope.configuration',
+                        'zope.contentprovider',
+                        'zope.contenttype',
+                        'zope.copypastemove',
+                        'zope.testbrowser',
+                        'zope.datetime',
+                        'zope.deferredimport',
+                        'zope.deprecation',
+                        'zope.dottedname',
+                        'zope.dublincore',
+                        'zope.exceptions',
+                        'zope.event',
+                        'zope.formlib',
+                        'zope.lifecycleevent',
+                        'zope.security',
+                        'zope.testing',
+                        'zope.decorator',
+                        'zope.filerepresentation',
+                        'zope.hookable',
+                        'zope.location',
+                        'zope.sendmail',
+                        'zope.thread',
+                        'zope.modulealias',
+                        'zope.server',
+                        'zope.size',
+                        'zope.traversing',
+                        'zope.viewlet',
+                        'zope.documenttemplate',
+                        'zope.proxy',
+                        'zope.structuredtext',
+                        'zope.publisher',
+                        'zope.tal',
+                        'zope.tales',
+                        'zope.rdb',
+                        'zope.wfmc',
+                        'zope.i18n',
+                        'zope.i18nmessageid',
+                        'zope.index',
+                        'zope.interface',
+                        'zope.pagetemplate',
+                        'zope.schema',
+                        ],
+      include_package_data=True,
+      zip_safe=False,
+      )
+
+


Property changes on: Zope2.buildout/trunk/setup.py
___________________________________________________________________
Name: svn:eol-style
   + native


Property changes on: Zope2.buildout/trunk/src
___________________________________________________________________
Name: svn:externals
   + AccessControl		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/AccessControl
App			svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/App
ComputedAttribute	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/ComputedAttribute
DateTime		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/DateTime
DocumentTemplate	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/DocumentTemplate
Globals		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Globals
HelpSys		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/HelpSys
Interface	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Interface
Lifetime	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Lifetime
MethodObject	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/MethodObject
Missing		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Missing
MultiMapping	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/MultiMapping
OFS		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/OFS
Persistence	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Persistence
Products	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Products
Record		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Record
Shared		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Shared
Signals		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Signals
StructuredText	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/StructuredText
TAL		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/TAL
Testing		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Testing
ThreadLock	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/ThreadLock
TreeDisplay	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/TreeDisplay
ZClasses	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/ZClasses
ZPublisher	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/ZPublisher
ZServer		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/ZServer
ZTUtils		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/ZTUtils
Zope2		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/Zope2
ZopeUndo	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/ZopeUndo
initgroups	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/initgroups
mechanize	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/mechanize
nt_svcutils	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/nt_svcutils
reStructuredText	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/reStructuredText
tempstorage	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/tempstorage
webdav		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/webdav
zExceptions	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/zExceptions
zLOG		svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/zLOG
zodbcode	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/zodbcode




More information about the Checkins mailing list