[Zope-Checkins] CVS: Zope/inst - setup.py:1.1.2.12

Chris McDonough chrism@zope.com
Thu, 2 Jan 2003 11:51:26 -0500


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

Modified Files:
      Tag: chrism-install-branch
	setup.py 
Log Message:
Changes to support ZConfig schema-devel branch.

This breaks the chrism-install-branch for new checkouts, as 1) I haven't added the Startup package to the branch for fear of adding it to the trunk and 2) I haven't changed the ZConfig package on the branch to use the schema-devel-branch code.  Hopefully, Fred can merge the ZConfig schema-devel-branch changes into the ZConfig head, so we don't need to keep track of that portion of this.  The Startup package needs to be added to Zope via repolinks and I need to think about that a bit. 

This checkin also invalidates older config files.


=== Zope/inst/setup.py 1.1.2.11 => 1.1.2.12 ===
--- Zope/inst/setup.py:1.1.2.11	Sun Nov 24 19:26:44 2002
+++ Zope/inst/setup.py	Thu Jan  2 11:50:54 2003
@@ -252,16 +252,6 @@
                   sources=['../Components/BTree/intSet.c'])]
 )
 
-setup(
-    name='Controller',
-    author=AUTHOR,
-    
-    packages=['Controller'],
-
-    data_files=[['Controller', ['Controller/directives.csv']]],
-    cmdclass={'install_data': install_data}
-)
-
 # DateTime
 setup(
     name='DateTime',
@@ -467,6 +457,16 @@
                            PYEXPAT_DIR + '/expat/xmltok/xmltok.c',
                            PYEXPAT_DIR + '/dcpyexpat.c'])]
 )
+
+
+# Startup
+setup(
+    name='Startup',
+    author=AUTHOR,
+    packages=['Startup', 'Startup.Controller', 'Startup.misc', 'Startup.nt'],
+    data_files=[ ['Startup', ['Startup/zopeschema.xml']] ],
+    cmdclass={'install_data': install_data}
+    )
 
 # TAL
 setup(