[Checkins] SVN: Zope2.buildout/trunk/ many tests apparently require packages to be located in a deeper directory structure

Philipp von Weitershausen philikon at philikon.de
Sun Jun 3 13:19:54 EDT 2007


Log message for revision 76263:
  many tests apparently require packages to be located in a deeper directory structure
  (IOW, lib/python instead of src).
  Hrmpf
  

Changed:
  A   Zope2.buildout/trunk/lib/
  A   Zope2.buildout/trunk/lib/python/
  U   Zope2.buildout/trunk/setup.py
  D   Zope2.buildout/trunk/src/

-=-

Property changes on: Zope2.buildout/trunk/lib/python
___________________________________________________________________
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
initgroups	svn://svn.zope.org/repos/main/Zope/branches/Zope211-3.4-integration/lib/python/initgroups
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



Modified: Zope2.buildout/trunk/setup.py
===================================================================
--- Zope2.buildout/trunk/setup.py	2007-06-03 17:15:14 UTC (rev 76262)
+++ Zope2.buildout/trunk/setup.py	2007-06-03 17:19:53 UTC (rev 76263)
@@ -27,8 +27,8 @@
       author_email='zope-dev at zope.org',
       long_description='',
       
-	  packages=find_packages('src'),
-	  package_dir={'': 'src'},
+	  packages=find_packages('lib/python'),
+	  package_dir={'': 'lib/python'},
 
       ext_modules=[
 



More information about the Checkins mailing list