jhbuild-3.5.91/ 0000755 0001750 0001750 00000000000 12021725614 013154 5 ustar 00fred fred 0000000 0000000 jhbuild-3.5.91/buildbot/ 0000755 0001750 0001750 00000000000 12021725614 014760 5 ustar 00fred fred 0000000 0000000 jhbuild-3.5.91/buildbot/master.cfg 0000644 0001750 0001750 00000006203 11243013407 016730 0 ustar 00fred fred 0000000 0000000 # -*- python -*-
# ex: set syntax=python:
# This is a sample buildmaster config file. It must be installed as
# 'master.cfg' in your buildmaster's base directory (although the filename
# can be changed with the --basedir option to 'mktap buildbot master').
# It has one job: define a dictionary named BuildmasterConfig. This
# dictionary has a variety of keys to control different aspects of the
# buildmaster. They are documented in docs/config.xhtml .
import buildbot
# This is the dictionary that the buildmaster pays attention to. We also use
# a shorter alias to save typing.
c = BuildmasterConfig = {}
# 'slavePortnum' defines the TCP port to listen on. This must match the value
# configured into the buildslaves (with their --master option)
c['slavePortnum'] = 9070
####### STATUS TARGETS
# '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 mail
# c['status'].append(mail.MailNotifier(fromaddr="buildbot@localhost",
# extraRecipients=["builds@example.com"],
# sendToInterestedUsers=False))
#
# from buildbot.status import words
# c['status'].append(words.IRC(host="irc.example.com", nick="bb",
# channels=["#example"]))
#
# from buildbot.status import client
# c['status'].append(client.PBListener(9988))
####### DEBUGGING OPTIONS
# if you set 'debugPassword', then you can connect to the buildmaster with
# the diagnostic tool in contrib/debugclient.py . From this tool, you can
# manually force builds and inject changes, which may be useful for testing
# your buildmaster without actually commiting changes to your repository (or
# before you have a functioning 'sources' set up). The debug tool uses the
# same port number as the slaves do: 'slavePortnum'.
#c['debugPassword'] = "debugpassword"
# if you set 'manhole', you can ssh into the buildmaster and get an
# interactive python shell, which may be useful for debugging buildbot
# internals. It is probably only useful for buildbot developers. You can also
# use an authorized_keys file, or plain telnet.
#from buildbot import manhole
#c['manhole'] = manhole.PasswordManhole("tcp:9999:interface=127.0.0.1",
# "admin", "password")
####### PROJECT IDENTITY
# the 'projectName' string will be used to describe the project that this
# buildbot is working on. For example, it is used as the title of the
# waterfall HTML page. The 'projectURL' string will be used to provide a link
# from buildbot HTML pages to your project's home page.
c['projectName'] = "GNOME Buildbot"
c['projectURL'] = "http://www.gnome.org"
# the 'buildbotURL' string should point to the location where the buildbot's
# internal web server (usually the html.Waterfall 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'] = "http://localhost:8080/"
jhbuild-3.5.91/buildbot/Makefile.am 0000644 0001750 0001750 00000002263 11303203552 017011 0 ustar 00fred fred 0000000 0000000 buildbotdir = $(pkgdatadir)/buildbot
buildbot_DATA = \
master.cfg \
template.html
buildbothtmldir = $(pkgdatadir)/buildbot/public_html
buildbothtml_DATA = \
public_html/bar.png \
public_html/building.png \
public_html/cyan-bar.png \
public_html/download.png \
public_html/emptyimg.png \
public_html/error.png \
public_html/feed-atom.png \
public_html/feed.png \
public_html/figure.png \
public_html/foot-16.png \
public_html/foot.png \
public_html/general_bg.png \
public_html/general_separator.png \
public_html/gnome-16.png \
public_html/gnome-64.png \
public_html/gnome-gtp.png \
public_html/green-bar.png \
public_html/idle.png \
public_html/images.jpeg \
public_html/index.html \
public_html/info.png \
public_html/lgo.css \
public_html/logo.png \
public_html/nobody.png \
public_html/offline.png \
public_html/purple-bar.png \
public_html/red-bar.png \
public_html/robot.png \
public_html/robots.txt \
public_html/star.png \
public_html/t.png \
public_html/tab_left.png \
public_html/tab_right.png \
public_html/top-header-gradient.png \
public_html/warn.png \
public_html/webpage.png
EXTRA_DIST = \
AUTHORS \
$(buildbot_DATA) \
$(buildbothtml_DATA)
jhbuild-3.5.91/buildbot/template.html 0000644 0001750 0001750 00000003555 11243013407 017464 0 ustar 00fred fred 0000000 0000000