This file is indexed.

/usr/share/python-ase/doc/development/master.cfg is in python-ase-doc 3.12.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
# -*- python -*-
# ex: set syntax=python:

import sys

####### global settings
baseURL = "https://svn.fysik.dtu.dk/projects/ase/"

# we want latest, more imporant builders first
# in order to easily select a slice of them to run!

builders_Linux = [
    '2.7 gcc fedora 18 x86_64',
    '2.7 gcc fedora 17 x86_64',
    '2.7 gcc ubuntu 12.04 x86_64',
    #'2.6 gcc redhat 6 x86_64',
    #'2.4 gcc redhat 5 x86_64',
    # custom builders
    '2.6 gcc niflheim 6 x86_64',
    '2.4 gcc niflheim 5 x86_64',
    ]
# limit builders here
builders_Linux = builders_Linux[:]

builders_Darwin = [
    '2.7 gcc darwin 10.8 x86_64',
    ]
builders_Darwin = builders_Darwin[:]

builders_Windows = [
    '2.7 msc windows 7 AMD64',
    #'2.7 msc windows 7 x86',
    ]
builders_Windows = builders_Windows[:]

builders_all = builders_Linux + builders_Darwin + builders_Windows

builders_active = []

slavesep = '+'

def get_slave_name(label=''):
    import platform
    from distutils import sysconfig
    name = ''
    if ''.join(platform.win32_ver()):
        name += platform.system().lower()  # windows
        name += slavesep + platform.win32_ver()[0]  # 7, 8, ...
    # flatten ('', ('', '', ''), '')
    elif ''.join([item for sublist in platform.mac_ver() for item in sublist]):
        name += platform.system().lower()  # darwin
        name += slavesep + platform.mac_ver()[0]  # 10.8, ...
    elif 'redhat' in platform.dist() or 'centos' in platform.dist():
        name += platform.dist()[0]
        # major RHEL ver only
        name += slavesep + platform.dist()[1].split('.')[0]
    else:
        name += platform.dist()[0]  # fedora, ubuntu, ...
        name += slavesep + platform.dist()[1].lower()
    name += slavesep + platform.machine()
    name += slavesep + platform.python_compiler().split()[0].lower()
    name += slavesep + sysconfig.get_python_version()
    if label:
        name += ' ' + label
    return name

try:
    from buildbot_ase import slaves
    from buildbot_ase import ASE_BB_PORT, ASE_BW_PORT
    print get_slave_name()
except ImportError:
    print get_slave_name()
    sys.exit()
    slaves = (
        # examples buildslave, password
        ('darwin+10.8+x86_64+gcc+2.7 homebrew', 'password'),
        ('fedora+18+x86_64+gcc+2.7 stock', 'password'),
        ('ubuntu+12.04+x86_64+gcc+2.7 stock', 'password'),
        ('windows+7+AMD64+msc+2.7 pythonxy', 'password'),
        ('windows+7+x86+msc+2.7 pythonxy', 'password'),
        )
slavenames_all = [s[0] for s in slaves]

print slaves

####### CONFIG

from buildbot.config import BuilderConfig

# This is a sample buildmaster config file. It must be installed as
# 'master.cfg' in your buildmaster's base directory.

# This is the dictionary that the buildmaster pays attention to. We also use
# a shorter alias to save typing.
c = BuildmasterConfig = {}

####### BUILDSLAVES

from buildbot.buildslave import BuildSlave

# The 'slaves' list defines the set of recognized buildslaves. Each element is
# a BuildSlave object, specifying a unique slave name and password.  The same
# slave name and password must be configured on the slave.
c['slaves'] = [BuildSlave(s[0], s[1]) for s in slaves]

# 'slavePortnum' defines the TCP port to listen on for connections from slaves.
# This must match the value configured into the buildslaves (with their
# --master option)
c['slavePortnum'] = ASE_BB_PORT

####### CHANGESOURCES

from buildbot.changes.svnpoller import SVNPoller, split_file_branches

# http://buildbot.net/buildbot/docs/latest/manual/cfg-changesources.html

# the 'change_source' setting tells the buildmaster how it should find out
# about source code changes.

c['change_source'] = []

svnpoller = SVNPoller(svnurl = baseURL,
                      #svnuser = "foo",
                      #svnpasswd = "bar",
                      pollinterval = 1 * 15 * 60,  # 15 min
                      split_file = split_file_branches)

c['change_source'] = svnpoller

####### SCHEDULERS

from buildbot.schedulers.basic import SingleBranchScheduler
from buildbot.changes import filter

# http://buildbot.net/buildbot/docs/latest/manual/cfg-schedulers.html

# Configure the Schedulers, which decide how to react to incoming changes.

c['schedulers'] = []

# define the dynamic scheduler for trunk
builders = ['trunk' + ' ' + b for b in builders_all]
trunkscheduler = SingleBranchScheduler(
    name = "trunkscheduler",
    change_filter = filter.ChangeFilter(branch = None),
    # The Scheduler will wait for this many seconds before starting the build
    treeStableTimer = None,
    builderNames = builders,
    )
for b in builders:
    if b not in builders_active:
        builders_active.append(b)

# define the available schedulers
c['schedulers'] = [
    trunkscheduler,
    ]

# This is how to enable a branch to be run by niflheim and windows builders
# define the dynamic scheduler for a branch
if 0:
    branch = 'branches/aep1'
    branchname = branch.replace('/', '>')  # replace with a special char
    builders = [branchname + ' ' + b for b in builders_all if 'niflheim' in b or 'windows' in b]
    c['schedulers'].append(
        SingleBranchScheduler(
            name = branch + "scheduler",
            change_filter = filter.ChangeFilter(branch = branch),
            builderNames=builders,
            ))
    for b in builders:
        if b not in builders_active:
            builders_active.append(b)

try:
    from buildbot.schedulers.forcesched import ForceScheduler
    builders = builders_active  # all builders
    trunkforcescheduler = ForceScheduler(
        name="trunkforcescheduler",
        builderNames=builders,
        )
    c['schedulers'].append(trunkforcescheduler)
except ImportError:
    pass
 
####### BUILDERS

from buildbot.process.factory import BuildFactory
from buildbot.steps.source import SVN
from buildbot.steps.shell import ShellCommand

# http://buildbot.net/buildbot/docs/latest/manual/cfg-buildsteps.html

# The 'builders' list defines the Builders, which tell Buildbot how to perform a build:
# what steps, and which slaves can execute them.  Note that any particular build will
# only take place on one slave.

cleanall = ShellCommand(name = "clean",
                        command = ["python", "setup.py", "clean", "--all"], 
                        haltOnFailure = True,
                        description = "clean",
                        )

test = ShellCommand(name = "test",
                    command = ["python", "setup.py", "test"], 
                    haltOnFailure = True,
                    description = "test",
                    #env = {'PYTHONPATH': '.:${PYTHONPATH}',
                    #       'PATH': './tools:${PATH}'})
                    )

c['builders'] = []

# automatically configured builders
for b in builders_active:
    branch, python, compiler, system, systemver, bitness = b.split()
    branch = branch.replace('>', '/')  # restore path
    f = BuildFactory()
    # BuildFactory steps may be dependent on system (fedora, windows, ..)
    f.addStep(
        SVN(baseURL = baseURL,
            mode = "clobber",
            #username = "foo",
            #password = "bar",
            haltOnFailure = True,
            defaultBranch = branch,
            ))
    # python version assert
    assertstr = "from distutils.sysconfig import get_python_version as v; assert v() == "
    assertstr += "'" + python + "'"
    f.addStep(
        ShellCommand(name = "assert python",
                     command = ["python", "-c", assertstr], 
                     haltOnFailure = True,
                     description = "assert python",
                     ))
    f.addStep(cleanall)
    f.addStep(test)
    if system == 'windows':  # build msi on windows
        f.addStep(
            ShellCommand(name = "bdist_msi",
                         command = ["python", "setup.py", "bdist_msi"], 
                         haltOnFailure = True,
                         description = "bdist_msi",
                         ))
    slavenames = []
    for s in slavenames_all:
        ssystem = s.split()[0].split(slavesep)[0]
        ssystemver = s.split()[0].split(slavesep)[1]
        spython = s.split()[0].split(slavesep)[-1]
        if system == ssystem and systemver == ssystemver and python == spython:
            slavenames.append(s)
    if len(slavenames) > 0:
        c['builders'].append(
            BuilderConfig(name=b,
                          slavenames=slavenames,
                          factory=f,
                          # http://trac.buildbot.net/ticket/928
                          # http://localhost:8010/waterfall?category=2.7
                          #tags=[branch, python, compiler, system, systemver, bitness],
                          category=python,
                          ))

####### STATUS TARGETS

# http://buildbot.net/buildbot/docs/latest/manual/cfg-statustargets.html

# 'status' is a list of Status Targets. The results of each build will be
# pushed to these targets. buildbot/status/*.py has a variety to choose from,
# including web pages, email senders, and IRC bots.

c['status'] = []

from buildbot.status import html
from buildbot.status.web import authz, auth

authz_cfg=authz.Authz(
    # change any of these to True to enable; see the manual for more
    # options
    #auth=auth.BasicAuth([("ase","ase")]),  # we don't want that!
    gracefulShutdown = False,
    forceBuild = 'auth', # use this to test your slave once it is set up
    forceAllBuilds = False,
    pingBuilder = False,
    stopBuild = False,
    stopAllBuilds = False,
    cancelPendingBuild = False,
)
c['status'].append(html.WebStatus(http_port=ASE_BW_PORT, authz=authz_cfg))

if 1:  # one notification per builder!
    from buildbot.status import mail
    m = mail.MailNotifier(
                          mode=("change", "failing", "warnings", "exception"),
                          fromaddr="ase-developers@listserv.fysik.dtu.dk",
                          extraRecipients=["ase-svncheckins@listserv.fysik.dtu.dk"],
                          relayhost="mail.fysik.dtu.dk",
                          sendToInterestedUsers=False)
    c['status'].append(m)

####### PROJECT IDENTITY

# the 'title' string will appear at the top of this buildbot
# installation's html.WebStatus home page (linked to the
# 'titleURL') and is embedded in the title of the waterfall HTML page.

c['title'] = "ASE"
c['titleURL'] = "https://wiki.fysik.dtu.dk/ase/"

# the 'buildbotURL' string should point to the location where the buildbot's
# internal web server (usually the html.WebStatus page) is visible. This
# typically uses the port number set in the Waterfall 'status' entry, but
# with an externally-visible host name which the buildbot cannot figure out
# without some help.

c['buildbotURL'] = "https://ase-buildbot.fysik.dtu.dk/"

####### DB URL

c['db'] = {
    # This specifies what database buildbot uses to store its state.  You can leave
    # this at its default for all but the largest installations.
    'db_url' : "sqlite:///state.sqlite",
}