[Buildbot-commits] buildbot ChangeLog,1.448,1.449 Makefile,1.9,1.10

Brian Warner warner at users.sourceforge.net
Wed May 18 01:59:56 UTC 2005


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

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

make slave default to --keepalive=600

	* Makefile: improve permission-setting to not kick Arch so badly

	* buildbot/scripts/runner.py (SlaveOptions.optParameters): set a
	default --keepalive=600, since it doesn't hurt very much, and it's
	a hassle to discover that you need it.
	* buildbot/test/test_runner.py (Create.testSlave): test it


Index: ChangeLog
===================================================================
RCS file: /cvsroot/buildbot/buildbot/ChangeLog,v
retrieving revision 1.448
retrieving revision 1.449
diff -u -d -r1.448 -r1.449
--- ChangeLog	18 May 2005 01:03:48 -0000	1.448
+++ ChangeLog	18 May 2005 01:59:54 -0000	1.449
@@ -1,5 +1,12 @@
 2005-05-17  Brian Warner  <warner at lothar.com>
 
+	* Makefile: improve permission-setting to not kick Arch so badly
+
+	* buildbot/scripts/runner.py (SlaveOptions.optParameters): set a
+	default --keepalive=600, since it doesn't hurt very much, and it's
+	a hassle to discover that you need it.
+	* buildbot/test/test_runner.py (Create.testSlave): test it
+
 	* buildbot/status/words.py (IrcStatusBot.buildFinished): Teach the
 	IRC bot about EXCEPTION
 

Index: Makefile
===================================================================
RCS file: /cvsroot/buildbot/buildbot/Makefile,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- Makefile	18 May 2005 00:29:43 -0000	1.9
+++ Makefile	18 May 2005 01:59:54 -0000	1.10
@@ -30,13 +30,15 @@
 docs:
 	$(MAKE) -C docs buildbot.info
 apidocs:
-	PYTHONPATH=.:$(T) docs/epyrun -o docs/reference
+	PYTHONPATH=.:$(T) python docs/epyrun -o docs/reference
 paper:
 	$(MAKE) -C docs/PyCon-2003 all
 
 release: docs paper
-	find . -type d -exec chmod 0755 {} \;
-	find . -type f -exec chmod 0644 {} \;
+	chmod 0755 .
+	find buildbot contrib debian docs -type d -exec chmod 0755 {} \;
+	find bin buildbot contrib debian docs -type f -exec chmod 0644 {} \;
+	chmod 0644 ChangeLog MANIFEST* NEWS README* setup.py
 	chmod a+x bin/buildbot contrib/*.py debian/rules
 	rm -rf _trial_temp
 	python ./setup.py clean





More information about the Commits mailing list