[Buildbot-commits] buildbot ChangeLog, 1.850, 1.851 MANIFEST.in, 1.25, 1.26 setup.py, 1.43, 1.44
Brian Warner
warner at users.sourceforge.net
Tue Apr 17 06:38:52 UTC 2007
Update of /cvsroot/buildbot/buildbot
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7812
Modified Files:
ChangeLog MANIFEST.in setup.py
Log Message:
[project @ update CREDITS]
Original author: warner at lothar.com
Date: 2007-04-17 06:38:12+00:00
Index: ChangeLog
===================================================================
RCS file: /cvsroot/buildbot/buildbot/ChangeLog,v
retrieving revision 1.850
retrieving revision 1.851
diff -u -d -r1.850 -r1.851
--- ChangeLog 15 Apr 2007 01:28:46 -0000 1.850
+++ ChangeLog 17 Apr 2007 06:38:49 -0000 1.851
@@ -1,3 +1,44 @@
+2007-04-13 Brian Warner <warner at lothar.com>
+
+ * buildbot/status/mail.py (MailNotifier): add the project name to
+ the subject line and message body, to make it easier to
+ distinguish email coming from different buildmasters. Thanks to
+ Benoit Sigoure for the patch.
+ * buildbot/test/test_status.py (Mail): update to match
+
+2007-03-24 Brian Warner <warner at lothar.com>
+
+ * buildbot/steps/transfer.py: open all files in 'b' binary mode to
+ avoid text-conversion problems between DOS/windows and unix.
+ Thanks to Phil Thompson for the patch. Fixes SF#1674927.
+
+2007-03-03 Brian Warner <warner at lothar.com>
+
+ * buildbot/status/html.py (_hush_pyflakes): hush a pyflakes
+ warning about the use of Waterfall here
+
+2007-03-01 Brian Warner <warner at lothar.com>
+
+ * buildbot/interfaces.py (IStatus.getBuilder): mention exceptions
+
+2007-02-28 Brian Warner <warner at lothar.com>
+
+ * buildbot/changes/p4poller.py (P4Source): apply change from Scott
+ Lamb to use a more optimal form of 'p4 changes', to reduce server
+ load. He reports that this optimization was added to p4d release
+ 2005.2, but it should work in all versions. Closes #27.
+ * buildbot/test/test_p4poller.py: match it
+
+2007-02-27 Brian Warner <warner at lothar.com>
+
+ * buildbot/status/web/*.py: move all web status stuff into a
+ separate directory, in anticipation of splitting it into smaller
+ pieces and adding more files. html.py was getting way too big.
+ * buildbot/status/classic.css: move it too
+ * setup.py: add the new sub-package
+ * buildbot/test/test_web.py: match the changes
+ * MANIFEST.in: handle the move of classic.css
+
2007-02-07 Brian Warner <warner at lothar.com>
* contrib/OS-X/*: add some launchd .plist files for automatically
Index: MANIFEST.in
===================================================================
RCS file: /cvsroot/buildbot/buildbot/MANIFEST.in,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- MANIFEST.in 15 Apr 2007 01:28:46 -0000 1.25
+++ MANIFEST.in 17 Apr 2007 06:38:49 -0000 1.26
@@ -7,7 +7,7 @@
include docs/epyrun docs/gen-reference
include buildbot/test/mail/* buildbot/test/subdir/*
include buildbot/scripts/sample.cfg
-include buildbot/status/classic.css
+include buildbot/status/web/classic.css
include buildbot/clients/debug.glade
include buildbot/buildbot.png
Index: setup.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/setup.py,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- setup.py 15 Apr 2007 01:28:46 -0000 1.43
+++ setup.py 17 Apr 2007 06:38:49 -0000 1.44
@@ -64,7 +64,7 @@
],
packages=["buildbot",
- "buildbot.status",
+ "buildbot.status", "buildbot.status.web",
"buildbot.changes",
"buildbot.steps",
"buildbot.process",
@@ -75,7 +75,7 @@
],
data_files=[("buildbot", ["buildbot/buildbot.png"]),
("buildbot/clients", ["buildbot/clients/debug.glade"]),
- ("buildbot/status", ["buildbot/status/classic.css"]),
+ ("buildbot/status/web", ["buildbot/status/web/classic.css"]),
("buildbot/scripts", ["buildbot/scripts/sample.cfg"]),
("buildbot/test/mail", testmsgs),
("buildbot/test/subdir", ["buildbot/test/subdir/emit.py"]),
More information about the Commits
mailing list