[Buildbot-commits] buildbot ChangeLog,1.351,1.352 Makefile,1.4,1.5

Brian Warner warner at users.sourceforge.net
Mon Apr 18 00:27:00 UTC 2005


Update of /cvsroot/buildbot/buildbot
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8250

Modified Files:
	ChangeLog Makefile 
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-42
Creator:  Brian Warner <warner at monolith.lothar.com>

merge doc updates [org.apestaart at thomas/buildbot--doc--0--patch-6]

Merge epydoc changes from Thomas, add some hacks of my own. No code
changes to the buildbot itself, although I hacked docs/epyrun a bit.


Index: ChangeLog
===================================================================
RCS file: /cvsroot/buildbot/buildbot/ChangeLog,v
retrieving revision 1.351
retrieving revision 1.352
diff -u -d -r1.351 -r1.352
--- ChangeLog	17 Apr 2005 12:17:48 -0000	1.351
+++ ChangeLog	18 Apr 2005 00:26:57 -0000	1.352
@@ -1,5 +1,45 @@
 2005-04-17  Brian Warner  <warner at lothar.com>
 
+	* docs/epyrun (addMod): when an import fails, say why
+
+	* Makefile: Add a 'docs' target, hack on the PYTHONPATH stuff
+
+2005-04-17  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+	* buildbot/process/base.py:
+	* buildbot/process/builder.py:
+	* buildbot/status/builder.py:
+	  new documentation while digging through the code
+
+2005-04-17  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+	* buildbot/changes/changes.py:
+	* buildbot/changes/p4poller.py:
+	* buildbot/interfaces.py:
+	* buildbot/process/base.py:
+	* buildbot/process/builder.py:
+	* buildbot/process/step.py:
+	* buildbot/process/step_twisted.py:
+	* buildbot/slave/bot.py:
+	* buildbot/slave/commands.py:
+	* buildbot/status/builder.py:
+	  fix all docstrings to make epydoc happy.  In the process of fixing
+	  some, I also moved pieces of docs, and removed some deprecated
+	  documentation
+
+2005-04-17  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+	* buildbot/process/builder.py:
+	* buildbot/process/interlock.py:
+	* buildbot/process/process_twisted.py:
+	* buildbot/process/step.py:
+	  BuildProcess -> Build, as it looks like that's what happened
+	* buildbot/process/base.py:
+	* buildbot/process/factory.py:
+	  update epydoc stuff
+
+2005-04-17  Brian Warner  <warner at lothar.com>
+
 	* buildbot/process/process_twisted.py (QuickTwistedBuildFactory):
 	update compile command to accomodate the Twisted split.. now
 	instead of './setup.py build_ext -i', you do './setup.py all

Index: Makefile
===================================================================
RCS file: /cvsroot/buildbot/buildbot/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Makefile	23 Nov 2004 10:55:21 -0000	1.4
+++ Makefile	18 Apr 2005 00:26:57 -0000	1.5
@@ -4,10 +4,11 @@
 
 BBBASE = ~/stuff/Projects/BuildBot/sourceforge
 ifdef SVN
-PP = PYTHONPATH=$(BBBASE):~/stuff/python/twisted/Twisted-SVN
+T=~/stuff/python/twisted/Twisted
 else
-PP = PYTHONPATH=$(BBBASE)
+T=
 endif
+PP = PYTHONPATH=$(BBBASE):$(T)
 
 .PHONY: test
 TRIALARGS=-v
@@ -25,6 +26,9 @@
 	 "snapshot build"
 	debuild binary
 
+.PHONY: docs
+docs:
+	PYTHONPATH=.:$(T) docs/epyrun -o docs/reference
 
 release:
 	python ./setup.py clean





More information about the Commits mailing list