[Zope3-checkins] SVN: Zope3/trunk/releases/Zope Now that we can use
relative path names, we can check in a Zope map
Jim Fulton
jim at zope.com
Fri Jun 10 07:52:43 EDT 2005
Log message for revision 30733:
Now that we can use relative path names, we can check in a Zope map
that gets files from a checkout. This makes creating (especially
testing) releases easier.
Changed:
A Zope3/trunk/releases/Zope-test.py
A Zope3/trunk/releases/Zope.cfg
A Zope3/trunk/releases/Zope.map
-=-
Added: Zope3/trunk/releases/Zope-test.py
===================================================================
--- Zope3/trunk/releases/Zope-test.py 2005-06-10 11:15:50 UTC (rev 30732)
+++ Zope3/trunk/releases/Zope-test.py 2005-06-10 11:52:43 UTC (rev 30733)
@@ -0,0 +1,22 @@
+
+import os, sys
+
+def do(command):
+ print command
+ if os.system(command):
+ sys.exit(1)
+
+
+do('rm -rf Zope-0.0.0*')
+do('../../zpkgtools/bin/zpkg -caCZope.cfg Zope')
+do('tar xozf Zope-0.0.0.tgz')
+os.chdir('Zope-0.0.0')
+do('./configure --prefix `pwd`/z')
+do('make install')
+os.chdir('z')
+do("bin/zopetest '!(ZEO|ZODB|BTrees)'")
+do("bin/mkzopeinstance -d`pwd`/../i -uadmin:123")
+os.chdir('../i')
+do("bin/test")
+
+
Property changes on: Zope3/trunk/releases/Zope-test.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: Zope3/trunk/releases/Zope.cfg
===================================================================
--- Zope3/trunk/releases/Zope.cfg 2005-06-10 11:15:50 UTC (rev 30732)
+++ Zope3/trunk/releases/Zope.cfg 2005-06-10 11:52:43 UTC (rev 30733)
@@ -0,0 +1,6 @@
+# zpkg config file
+#
+# To getnerate a Zope release, use:
+#
+resource-map Zope.map
+resource-map svn://svn.zope.org/repos/main/ReleaseSupport/trunk/PackageMaps/support.map
Property changes on: Zope3/trunk/releases/Zope.cfg
___________________________________________________________________
Name: svn:eol-style
+ native
Added: Zope3/trunk/releases/Zope.map
===================================================================
--- Zope3/trunk/releases/Zope.map 2005-06-10 11:15:50 UTC (rev 30732)
+++ Zope3/trunk/releases/Zope.map 2005-06-10 11:52:43 UTC (rev 30733)
@@ -0,0 +1,42 @@
+# These packages are used to provide the Zope 3 distributions.
+# This package map can be addressed as
+#
+# svn://svn.zope.org/repos/main/ReleaseSupport/trunk/PackageMaps/zope3.map
+
+# These packages are the Zope 3 components.
+#
+docutils ../src/docutils
+pytz ../src/pytz
+zodbcode ../src/zodbcode
+zope ../src/zope
+# Child packages of Zope are handled separately when constructing Zope
+# distributions; this tells where to find all of them.
+zope.* ../src/zope/
+
+# Related components for use with Zope 3:
+buddydemo ../src/buddydemo
+z3checkins ../src/z3checkins
+
+# These packages are copied from the ZConfig, zdaemon, and ZODB projects:
+#
+BTrees ../src/BTrees
+persistent ../src/persistent
+transaction ../src/transaction
+ThreadedAsync ../src/ThreadedAsync
+ZEO ../src/ZEO
+ZODB ../src/ZODB
+
+RestrictedPython ../src/RestrictedPython
+ZConfig ../src/ZConfig
+zdaemon ../src/zdaemon
+
+
+# These packages are the release collections based on the Zope 3
+# project; they define what goes into the Zope X3 and related
+# releases.
+#
+Zope ../releases/Zope
+ZopeInterface ../releases/ZopeInterface
+Workflow ../releases/Workflow
+ZPT ../releases/ZPT
+
Property changes on: Zope3/trunk/releases/Zope.map
___________________________________________________________________
Name: svn:eol-style
+ native
More information about the Zope3-Checkins
mailing list