[Buildbot-commits] buildbot ChangeLog,1.445,1.446 Makefile,1.8,1.9
Brian Warner
warner at users.sourceforge.net
Wed May 18 00:29:45 UTC 2005
Update of /cvsroot/buildbot/buildbot
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32706
Modified Files:
ChangeLog Makefile
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-197
Creator: Brian Warner <warner at monolith.lothar.com>
minor updates
* buildbot/scripts/runner.py (makefile_sample): remove the leading
newline
* buildbot/status/mail.py (MailNotifier): oops, forgot to upcall
* Makefile: update some release-related stuff
Index: ChangeLog
===================================================================
RCS file: /cvsroot/buildbot/buildbot/ChangeLog,v
retrieving revision 1.445
retrieving revision 1.446
diff -u -d -r1.445 -r1.446
--- ChangeLog 17 May 2005 22:19:18 -0000 1.445
+++ ChangeLog 18 May 2005 00:29:43 -0000 1.446
@@ -1,5 +1,10 @@
2005-05-17 Brian Warner <warner at lothar.com>
+ * buildbot/scripts/runner.py (makefile_sample): remove the leading
+ newline
+ * buildbot/status/mail.py (MailNotifier): oops, forgot to upcall
+ * Makefile: update some release-related stuff
+
* buildbot/slave/commands.py (ShellCommand.kill): if somehow this
gets called when there isn't actually an active process, just end
the Command instead of blowing up. I don't know how it gets into
Index: Makefile
===================================================================
RCS file: /cvsroot/buildbot/buildbot/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- Makefile 11 May 2005 23:30:15 -0000 1.8
+++ Makefile 18 May 2005 00:29:43 -0000 1.9
@@ -26,12 +26,18 @@
"snapshot build"
debuild binary
-.PHONY: docs
+.PHONY: docs apidocs paper
docs:
+ $(MAKE) -C docs buildbot.info
+apidocs:
PYTHONPATH=.:$(T) docs/epyrun -o docs/reference
+paper:
+ $(MAKE) -C docs/PyCon-2003 all
-release:
- python ./setup.py clean
+release: docs paper
+ find . -type d -exec chmod 0755 {} \;
+ find . -type f -exec chmod 0644 {} \;
+ chmod a+x bin/buildbot contrib/*.py debian/rules
rm -rf _trial_temp
- make -C docs/PyCon-2003 all
+ python ./setup.py clean
python ./setup.py sdist
More information about the Commits
mailing list