[Zodb-checkins] CVS: ZODB3 - setup.py:1.37

Fred L. Drake, Jr. fred@zope.com
Fri, 10 Jan 2003 10:18:09 -0500


Update of /cvs-repository/ZODB3
In directory cvs.zope.org:/tmp/cvs-serv6681

Modified Files:
	setup.py 
Log Message:
Create a component for the ZEO schema, and make sure it gets installed.

=== ZODB3/setup.py 1.36 => 1.37 ===
--- ZODB3/setup.py:1.36	Fri Jan 10 01:44:48 2003
+++ ZODB3/setup.py	Fri Jan 10 10:17:36 2003
@@ -172,6 +172,8 @@
         os.path.join("ZConfig", "tests", "library", "thing"),
         os.path.join("ZConfig", "tests", "library", "thing", "ext"),
         os.path.join("ZConfig", "tests", "library", "widget"),
+        "ZEO",
+        "ZODB",
         ]:
         outputdir = os.path.join(outputbase, inputdir)
         if not os.path.exists(outputdir):
@@ -179,14 +181,6 @@
         for pattern in ("*.conf", "*.xml", "*.txt"):
             for fn in glob.glob(os.path.join(inputdir, pattern)):
                 cmd.copy_file(fn, os.path.join(outputbase, fn))
-
-    for parts in [
-        ("ZODB", "component.xml"),
-        ("ZODB", "config.xml"),
-        ("ZEO", "schema.xml"),
-        ]:
-        fn = os.path.join(*parts)
-        cmd.copy_file(fn, os.path.join(outputbase, fn))
 
 class MyLibInstaller(install_lib):
     """Custom library installer, used to put hosttab in the right place."""