[Checkins] SVN: Zope3.buildout/trunk/ - moving to a buildout that will feature a release mechanism

Christian Theune ct at gocept.com
Tue Feb 27 16:48:28 EST 2007


Log message for revision 72895:
   - moving to a buildout that will feature a release mechanism
  

Changed:
  A   Zope3.buildout/trunk/Makefile.in
  U   Zope3.buildout/trunk/buildout.cfg

-=-
Added: Zope3.buildout/trunk/Makefile.in
===================================================================
--- Zope3.buildout/trunk/Makefile.in	2007-02-27 21:31:10 UTC (rev 72894)
+++ Zope3.buildout/trunk/Makefile.in	2007-02-27 21:48:28 UTC (rev 72895)
@@ -0,0 +1,29 @@
+# Makefile.in for Zope 3.4
+#
+# This makefile provides two interesting targets:
+#
+#     build    build the software
+#     install  install the software
+
+default: build
+
+PYTHON=@PYTHON@
+
+prefix=@prefix@
+
+.PHONY: build
+
+build:
+	#$(PYTHON) install.py -q build
+	$(PYTHON) bootstrap.py
+	bin/buildout install test
+
+# The "install" target skips the distutils build step since that's
+# handled via the dependency on the build target.
+#
+install: build
+	#$(PYTHON) install.py -q install --skip-build --home "$(prefix)"
+	bin/buildout install zope zope:prefix=$(prefix)
+
+check test: build
+	bin/test


Property changes on: Zope3.buildout/trunk/Makefile.in
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: Zope3.buildout/trunk/buildout.cfg
===================================================================
--- Zope3.buildout/trunk/buildout.cfg	2007-02-27 21:31:10 UTC (rev 72894)
+++ Zope3.buildout/trunk/buildout.cfg	2007-02-27 21:48:28 UTC (rev 72895)
@@ -1,21 +1,12 @@
 [buildout]
-parts = instance test
 find-links = http://download.zope.org/distribution/
+download_cache = ./packages/
 
-[database]
-recipe = zc.recipe.filestorage
+[zope]
+recipe = zope.classiczoperecipe
+prefix = /opt/
 
-[instance]
-recipe = gocept.zope3instance
-database = database
-admin-user = gandalf
-admin-password = 123
-eggs = zope.app
-address = 127.0.0.1:8080
-
 [test]
 recipe = zc.recipe.testrunner
-; XXX Need to specify that all eggs should be tested ...
 eggs = zope.app
-working-directory = parts/instance
-defaults = ['--tests-pattern', '^f?tests$', '-v']
+defaults = ['--tests-pattern', '^f?tests$', '-v', '-u']



More information about the Checkins mailing list