[Buildbot-commits] buildbot/buildbot/steps dummy.py, 1.2, 1.3 python_twisted.py, 1.1, 1.2 shell.py, 1.2, 1.3 source.py, 1.1, 1.2 transfer.py, 1.2, 1.3
Brian Warner
warner at users.sourceforge.net
Sun Sep 17 20:35:51 UTC 2006
- Previous message (by thread): [Buildbot-commits] buildbot/buildbot/process buildstep.py, NONE, 1.1 factory.py, 1.14, 1.15 step.py, 1.108, NONE
- Next message (by thread): [Buildbot-commits] buildbot/buildbot/test runutils.py, 1.15, 1.16 test_steps.py, 1.29, 1.30 test_web.py, 1.36, 1.37
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/buildbot/buildbot/buildbot/steps
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25940/buildbot/steps
Modified Files:
dummy.py python_twisted.py shell.py source.py transfer.py
Log Message:
[project @ move b.p.step to b.p.buildstep, leaving step.py just for backwards compability]
Original author: warner at lothar.com
Date: 2006-09-17 19:47:55
Index: dummy.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/dummy.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- dummy.py 15 Sep 2006 14:49:58 -0000 1.2
+++ dummy.py 17 Sep 2006 20:35:49 -0000 1.3
@@ -1,7 +1,7 @@
from twisted.internet import reactor
-from buildbot.process.step import BuildStep, LoggingBuildStep
-from buildbot.process.step import LoggedRemoteCommand
+from buildbot.process.buildstep import BuildStep, LoggingBuildStep
+from buildbot.process.buildstep import LoggedRemoteCommand
from buildbot.status.builder import SUCCESS, FAILURE
class Dummy(BuildStep):
Index: python_twisted.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/python_twisted.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- python_twisted.py 15 Sep 2006 14:47:03 -0000 1.1
+++ python_twisted.py 17 Sep 2006 20:35:49 -0000 1.2
@@ -4,8 +4,8 @@
from buildbot.status import tests, builder
from buildbot.status.builder import SUCCESS, FAILURE, WARNINGS, SKIPPED
-from buildbot.process.step import LogLineObserver, OutputProgressObserver
-from buildbot.process.step import RemoteShellCommand
+from buildbot.process.buildstep import LogLineObserver, OutputProgressObserver
+from buildbot.process.buildstep import RemoteShellCommand
from buildbot.steps.shell import ShellCommand
try:
Index: shell.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/shell.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shell.py 15 Sep 2006 14:49:58 -0000 1.2
+++ shell.py 17 Sep 2006 20:35:49 -0000 1.3
@@ -3,7 +3,7 @@
import types, re
from twisted.python import log
from buildbot import util
-from buildbot.process.step import LoggingBuildStep, RemoteShellCommand
+from buildbot.process.buildstep import LoggingBuildStep, RemoteShellCommand
from buildbot.status.builder import SUCCESS, WARNINGS, FAILURE
class _BuildPropertyDictionary:
Index: source.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/source.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- source.py 9 Sep 2006 06:20:51 -0000 1.1
+++ source.py 17 Sep 2006 20:35:49 -0000 1.2
@@ -3,7 +3,7 @@
import warnings
from email.Utils import formatdate
from twisted.python import log
-from buildbot.process.step import LoggingBuildStep, LoggedRemoteCommand
+from buildbot.process.buildstep import LoggingBuildStep, LoggedRemoteCommand
from buildbot.interfaces import BuildSlaveTooOldError
from buildbot.status.builder import SKIPPED
Index: transfer.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/transfer.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- transfer.py 15 Sep 2006 14:49:33 -0000 1.2
+++ transfer.py 17 Sep 2006 20:35:49 -0000 1.3
@@ -4,8 +4,8 @@
from twisted.internet import reactor
from twisted.spread import pb
from twisted.python import log
-from buildbot.process.step import RemoteCommand, BuildStep
-from buildbot.process.step import SUCCESS, FAILURE
+from buildbot.process.buildstep import RemoteCommand, BuildStep
+from buildbot.process.buildstep import SUCCESS, FAILURE
class _FileIO(pb.Referenceable):
- Previous message (by thread): [Buildbot-commits] buildbot/buildbot/process buildstep.py, NONE, 1.1 factory.py, 1.14, 1.15 step.py, 1.108, NONE
- Next message (by thread): [Buildbot-commits] buildbot/buildbot/test runutils.py, 1.15, 1.16 test_steps.py, 1.29, 1.30 test_web.py, 1.36, 1.37
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Commits
mailing list