<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># -*- python -*-
# ex: set syntax=python:

import os.path

#############################################################################
###### PROJECT CONFIGURATION

projectPath = os.path.join(os.getcwd(), '..')

__project = {}
__project["number"] = 0
__project["name"] = "GDAL"
__project["url"] = "http://www.gdal.org/"
__project["svnUrl"] = "http://svn.osgeo.org/gdal/"
__project["svnBranch"] = "trunk"

#############################################################################
###### BOT CONFIGURATION

__bot = {}

# General project information
__bot["name"] = "gdal"
__bot["dir"] = projectPath
__bot["url"] = "http://buildbot.osgeo.org"

# Buildmaster ports are calculated from project number
__bot["slavePort"] = 1500 + __project['number']
__bot["httpPort"]  = 8500 + __project['number']

# Nightly Scheduler time settings
__bot["nightlyHours"] = [ 3, 15 ]
__bot["nightlyMinutes"] = 0

#############################################################################
###### COMMON CONFIGURATION OBJECT

config = {}
config['project'] = __project
config['bot'] = __bot
config['quick'] = False # controls if -quick builders are enabled or not

#############################################################################
###### COMMIN SETTINGS FOR COMPILATION 

autoconfOptions = ['--with-python', '--without-ogpython',
                   '--without-libtool', '--with-libtiff=internal',
                   '--without-pg', '--with-sqlite', '--with-expat',
                   '--enable-debug','--with-xerces=/home/buildbot/gdal/usr',
                   '--with-geos=/home/buildbot/gdal/usr/bin/geos-config']

autoconfOptionsStable = ['--with-python', '--without-ngpython',
                         '--without-libtool', '--with-libtiff=internal',
                         '--without-pg', '--with-sqlite', '--with-expat']

# EOF

</pre></body></html>