Skip to content

Commit f98b9cb

Browse files
committed
Merged tools, system, filesystem from trunk at 41106
[SVN r41109]
2 parents 2fbc320 + 696ff5c commit f98b9cb

File tree

117 files changed

+7143
-4440
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+7143
-4440
lines changed

.gitmodules

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[submodule "system"]
2+
path = libs/system
3+
url = ../system.git
4+
fetchRecurseSubmodules = on-demand
15
[submodule "multi_array"]
26
path = libs/multi_array
37
url = ../multi_array.git
@@ -282,3 +286,7 @@
282286
path = libs/pool
283287
url = ../pool.git
284288
fetchRecurseSubmodules = on-demand
289+
[submodule "litre"]
290+
path = tools/litre
291+
url = ../litre.git
292+
fetchRecurseSubmodules = on-demand

libs/filesystem

libs/system

Submodule system added at bc0ea8a

libs/wave

Submodule wave updated from 733cd58 to 31e219a

tools/bcp

Submodule bcp updated from af596bf to 040634e

tools/boostbook

tools/build

Submodule build updated from 5af6d49 to 8f3a7c6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
c = BuildmasterConfig = {}
2+
3+
####### BUILDSLAVES
4+
5+
c['slavePortnum'] = 9091
6+
7+
c['bots'] = []
8+
c['bots'].append( ('linux-x86-rsi-droid', 'boost1234') )
9+
10+
11+
####### CHANGESOURCES
12+
13+
from buildbot.changes.svnpoller import SVNPoller
14+
from buildbot.changes.pb import PBChangeSource
15+
16+
c['sources'] = []
17+
#~ c['sources'].append(SVNPoller(
18+
#~ 'http://svn.boost.org/svn/boost/trunk'
19+
#~ ))
20+
c['sources'].append(PBChangeSource())
21+
22+
23+
####### SCHEDULERS
24+
25+
from buildbot.scheduler import AnyBranchScheduler
26+
27+
c['schedulers'] = []
28+
c['schedulers'].append(AnyBranchScheduler(
29+
name = 'testing',
30+
branches = ['trunk'],
31+
treeStableTimer = 2*60,
32+
builderNames = [
33+
'Linux x86 Alpha'
34+
]
35+
))
36+
37+
38+
####### BUILDERS
39+
40+
from boost.bot.factory import Boost_BuildFactory, action
41+
42+
c['builders'] = []
43+
c['builders'].append({
44+
'name': 'Linux x86 Alpha',
45+
'slavename': 'linux-x86-rsi-droid',
46+
'builddir': 'Linux-x86-Alpha',
47+
'factory': Boost_BuildFactory(
48+
action('svn',root='http://svn.boost.org/svn/boost/'),
49+
action('bjam_build'),
50+
action('test_tools_build', toolset='gcc'),
51+
action('btest_all',
52+
toolset=['gcc-4.1.2~linux~x86','gcc-4.2.0~linux~x86'],
53+
options=['-sTEST_BOOST_VERSION=HEAD','-j2']
54+
)
55+
)
56+
})
57+
58+
59+
####### STATUS TARGETS
60+
61+
from buildbot.status import html
62+
from buildbot.status import words
63+
64+
c['status'] = []
65+
c['status'].append(html.Waterfall(
66+
http_port=9090
67+
))
68+
c['status'].append(words.IRC(
69+
host="irc.freenode.net",
70+
nick="buildbot_alpha",
71+
channels=["#boost"]
72+
))
73+
74+
75+
####### DEBUGGING OPTIONS
76+
77+
78+
####### PROJECT IDENTITY
79+
80+
c['projectName'] = "Boost"
81+
c['projectURL'] = "http://boost.org/"
82+
c['buildbotURL'] = "http://droid.borg.redshift-software.com:9090/"

tools/buildbot/src/boost/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#~ Copyright Redshift Software, Inc. 2006
2+
#~ Distributed under the Boost Software License, Version 1.0.
3+
#~ (See accompanying file LICENSE_1_0.txt or copy at
4+
#~ http://www.boost.org/LICENSE_1_0.txt)
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
# Copyright Redshift Software, Inc. 2005-2007
3+
#
4+
# Distributed under the Boost Software License, Version 1.0.
5+
# (See accompanying file LICENSE_1_0.txt or copy at
6+
# http://www.boost.org/LICENSE_1_0.txt)
7+
8+
modified = '$Date: 2007-05-09 10:49:32 -0500 (Wed, 09 May 2007) $'
9+
revision = '$Revision: 37651 $'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# Copyright Redshift Software, Inc. 2005-2007
3+
#
4+
# Distributed under the Boost Software License, Version 1.0.
5+
# (See accompanying file LICENSE_1_0.txt or copy at
6+
# http://www.boost.org/LICENSE_1_0.txt)
7+
8+
import string
9+
10+
def chr_or_question_mark( c ):
11+
if chr(c) in string.printable and c < 128 and c not in ( 0x09, 0x0b, 0x0c ):
12+
return chr(c)
13+
else:
14+
return '?'
15+
16+
char_translation_table = string.maketrans(
17+
''.join( map( chr, range(0, 256) ) )
18+
, ''.join( map( chr_or_question_mark, range(0, 256) ) )
19+
)

0 commit comments

Comments
 (0)