[Buildbot-commits] buildbot ChangeLog, 1.970, 1.971 setup.py, 1.45, 1.46

Brian Warner warner at users.sourceforge.net
Mon Oct 1 02:31:02 UTC 2007


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

Modified Files:
	ChangeLog setup.py 
Log Message:
[project @ setup.py: update URL, install all test mail files]

Original author: warner at lothar.com
Date: 2007-10-01 02:30:01+00:00

Index: ChangeLog
===================================================================
RCS file: /cvsroot/buildbot/buildbot/ChangeLog,v
retrieving revision 1.970
retrieving revision 1.971
diff -u -d -r1.970 -r1.971
--- ChangeLog	1 Oct 2007 02:22:24 -0000	1.970
+++ ChangeLog	1 Oct 2007 02:31:00 -0000	1.971
@@ -1,5 +1,7 @@
 2007-09-30  Brian Warner  <warner at lothar.com>
 
+	* setup.py: install all test files from buildbot/test/mail/* . Also
+	update URL to point at buildbot.net
 	* MANIFEST.in: update with new files
 
 	* buildbot/status/web/baseweb.py (WebStatus.setupSite): ugh, yes

Index: setup.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/setup.py,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- setup.py	13 Aug 2007 17:22:44 -0000	1.45
+++ setup.py	1 Oct 2007 02:31:00 -0000	1.46
@@ -1,6 +1,6 @@
 #! /usr/bin/python
 
-import sys, os
+import sys, os, re
 from distutils.core import setup
 from buildbot import version
 
@@ -41,7 +41,7 @@
 for f in os.listdir("buildbot/test/mail"):
     if f.endswith("~"):
         continue
-    if f.startswith("msg") or f.startswith("syncmail"):
+    if re.search(r'\.\d+$', f):
         testmsgs.append("buildbot/test/mail/%s" % f)
 
 setup(name="buildbot",
@@ -50,7 +50,7 @@
       long_description=long_description,
       author="Brian Warner",
       author_email="warner-buildbot at lothar.com",
-      url="http://buildbot.sourceforge.net/",
+      url="http://buildbot.net/",
       license="GNU GPL",
       # does this classifiers= mean that this can't be installed on 2.2/2.3?
       classifiers=[





More information about the Commits mailing list