[Zope-Checkins] CVS: Zope - setup.py:1.25

Richard Jones rjones@ekit-inc.com
Fri, 4 Apr 2003 00:04:17 -0500


Update of /cvs-repository/Zope
In directory cvs.zope.org:/tmp/cvs-serv1086

Modified Files:
	setup.py 
Log Message:
I've fixed the various scripts etc. in the CVS so that I can now install a ZEO client/server setup. The way it actually ended up working is:

- runzope.py and zopectl.py are moved to Zope/Startup/run.py and Zope/zdaemon/zopectl.py respectively
- bin/mkzopeinstance now takes a "-z/--zeo host:port" which sets up a custom_zodb.py in the new zope instance home
- bin/mkzeoinstance now overrides less, because...
- ZEO/mkzeoinst.py generates an additional script, runzeo, which is the "runner" for the ZEO server. Both it an the zeoctl script need to know about the ZOPE_HOME, so that's been added to the scripts (via the params)
- fixed setup.py so it installed ZEO/schema.xml



=== Zope/setup.py 1.24 => 1.25 ===
--- Zope/setup.py:1.24	Thu Apr  3 02:11:02 2003
+++ Zope/setup.py	Fri Apr  4 00:03:47 2003
@@ -632,7 +632,7 @@
     author=AUTHOR,
 
     packages=['ZEO', 'ZEO.tests', 'ZEO.zrpc'],
-    data_files=[['ZEO', ['ZEO/*.txt', 'ZEO/component.xml']]],
+    data_files=[['ZEO', ['ZEO/*.txt', 'ZEO/*.xml']]],
     )
 
 # ZConfig
@@ -1057,8 +1057,7 @@
     author=AUTHOR,
 
     data_files=installed_data_files,
-    scripts=["bin/runzope.py", "bin/zopectl.py",
-             "bin/mkzeoinstance", "bin/mkzopeinstance"],
+    scripts=["bin/mkzeoinstance", "bin/mkzopeinstance"],
     distclass=ZopeDistribution,
     )