[Checkins] SVN: gocept.bsquare/branches/pcardune-setup/src/gocept/bsquare/master.py win32 seems to be picky about the svn.exe location... allow to specify that easily with svnbin

Adam Groszer agroszer at gmail.com
Sat Apr 25 13:59:00 EDT 2009


Log message for revision 99489:
  win32 seems to be picky about the svn.exe location... allow to specify that easily with svnbin

Changed:
  U   gocept.bsquare/branches/pcardune-setup/src/gocept/bsquare/master.py

-=-
Modified: gocept.bsquare/branches/pcardune-setup/src/gocept/bsquare/master.py
===================================================================
--- gocept.bsquare/branches/pcardune-setup/src/gocept/bsquare/master.py	2009-04-25 15:16:37 UTC (rev 99488)
+++ gocept.bsquare/branches/pcardune-setup/src/gocept/bsquare/master.py	2009-04-25 17:59:00 UTC (rev 99489)
@@ -52,7 +52,8 @@
               svnuser = None, svnpasswd = None,
               pollinterval = 30, nightlyhour=3,
               poller = None, makefactory = make_factory,
-              maxConcurrent = 2):
+              maxConcurrent = 2,
+              svnbin = 'svn'):
     """Creates a buildout master configuration.
 
     The configuration returned is almost functional. You just need to add
@@ -74,6 +75,8 @@
           first when there is none for a project
         * bsquare reverts to make_factory as last
     * maxConcurrent: maximum number of concurrent builds
+    * svnbin: passed directly to SVNPoller (win32 seems to be picky about
+                                            svn location)
 
     """
     c = {}
@@ -83,7 +86,8 @@
                                        split_file=split_file,
                                        svnuser=svnuser,
                                        svnpasswd=svnpasswd,
-                                       pollinterval=pollinterval)
+                                       pollinterval=pollinterval,
+                                       svnbin=svnbin)
     else:
         c['change_source'] = poller
     c['schedulers'] = []



More information about the Checkins mailing list