[Buildbot-commits] buildbot/buildbot/changes changes.py,1.25,1.26
Brian Warner
warner at users.sourceforge.net
Tue Jul 19 23:12:04 UTC 2005
- Previous message (by thread): [Buildbot-commits] buildbot/buildbot/status client.py,1.19,1.20 builder.py,1.60,1.61 mail.py,1.17,1.18 words.py,1.37,1.38 html.py,1.64,1.65
- Next message (by thread): [Buildbot-commits] buildbot/buildbot/process base.py,1.56,1.57
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/buildbot/buildbot/buildbot/changes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17398/buildbot/changes
Modified Files:
changes.py
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-239
Creator: Brian Warner <warner at monolith.lothar.com>
merge in build-on-branch code: Merged from warner at monolith.lothar.com--2005 (patch 0-18, 40-41)
Patches applied:
* warner at monolith.lothar.com--2005/buildbot--dev--0--patch-40
Merged from arch at buildbot.sf.net--2004 (patch 232-238)
* warner at monolith.lothar.com--2005/buildbot--dev--0--patch-41
Merged from local-usebranches (warner at monolith.lothar.com--2005/buildbot--usebranches--0( (patch 0-18)
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--base-0
tag of warner at monolith.lothar.com--2005/buildbot--dev--0--patch-38
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-1
rearrange build scheduling
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-2
replace ugly 4-tuple with a distinct SourceStamp class
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-3
document upcoming features, clean up CVS branch= argument
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-4
Merged from arch at buildbot.sf.net--2004 (patch 227-231), warner at monolith.lothar.com--2005 (patch 39)
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-5
implement per-Step Locks, add tests (which all fail)
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-6
implement scheduler.Dependent, add (failing) tests
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-7
make test_dependencies work
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-8
finish making Locks work, tests now pass
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-9
fix test failures when run against twisted >2.0.1
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-10
rename test_interlock.py to test_locks.py
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-11
add more Locks tests, add branch examples to manual
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-12
rewrite test_vc.py, create repositories in setUp rather than offline
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-13
make new tests work with twisted-1.3.0
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-14
implement/test build-on-branch for most VC systems
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-15
minor changes: test-case-name tags, init cleanup
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-16
Merged from arch at buildbot.sf.net--2004 (patch 232-233)
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-17
Merged from arch at buildbot.sf.net--2004 (patch 234-236)
* warner at monolith.lothar.com--2005/buildbot--usebranches--0--patch-18
Merged from arch at buildbot.sf.net--2004 (patch 237-238), warner at monolith.lothar.com--2005 (patch 40)
Index: changes.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/changes/changes.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- changes.py 24 May 2005 18:57:49 -0000 1.25
+++ changes.py 19 Jul 2005 23:12:01 -0000 1.26
@@ -178,7 +178,6 @@
service.MultiService.__init__(self)
self.changes = []
# self.basedir must be filled in by the parent
- # self.botmaster too
self.nextNumber = 1
def addSource(self, source):
@@ -205,7 +204,7 @@
change.number = self.nextNumber
self.nextNumber += 1
self.changes.append(change)
- self.botmaster.addChange(change)
+ self.parent.addChange(change)
# TODO: call pruneChanges after a while
def pruneChanges(self):
@@ -238,13 +237,11 @@
del d['parent']
del d['services'] # lose all children
del d['namedServices']
- del d['botmaster']
return d
def __setstate__(self, d):
self.__dict__ = d
# self.basedir must be set by the parent
- # self.botmaster too
self.services = [] # they'll be repopulated by readConfig
self.namedServices = {}
- Previous message (by thread): [Buildbot-commits] buildbot/buildbot/status client.py,1.19,1.20 builder.py,1.60,1.61 mail.py,1.17,1.18 words.py,1.37,1.38 html.py,1.64,1.65
- Next message (by thread): [Buildbot-commits] buildbot/buildbot/process base.py,1.56,1.57
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Commits
mailing list