Build fixes for non-Windows
[moonshot.git] / builder
1 #!/usr/bin/python
2
3 '''A script to buildMoonshot  potentially using a schroot for install testing.
4 '''
5
6 from contextlib import contextmanager
7 import os, subprocess, exceptions
8 import re
9 import sys
10 from optparse import OptionParser
11 from shutil import copy
12
13
14
15 # These variables can be overridden by options. If packages is not
16 # set, then it is read from the source_packages file
17 packages = []  # Set of packages to build
18 prefix = "/usr/local/moonshot"
19 root_command = "fakeroot"
20
21 schroot_command = ""
22
23 class CommandError(exceptions.StandardError):
24     pass
25
26 class Schroot(object):
27     '''Represents a schroot used for building moonshot.'''
28
29     def __init__(self, name):
30         '''Initialize a new schroot option from the named
31         schroot. Unless the named schroot starts with session:, then a
32         new session schroot is created.'''
33         if not name.startswith('session:'):
34             self.name = command_output(('schroot', '-b',
35                                         '-c', name))
36             self.end_session = True
37         else:
38             self.name = name
39             self.end_session = False
40
41     def __del__(self):
42         if self.end_session:
43             try:
44                 run_cmd(('schroot', '-e', '-c', self.name))
45             except CommandError: pass
46
47 @contextmanager
48 def current_directory(dir):
49     "Change the current directory as a context manager; when the context exits, return."
50     cwd = os.getcwd()
51     os.chdir(dir)
52     yield
53     os.chdir(cwd)
54
55
56 def run_cmd(args, **kwords):
57     rcode =  subprocess.call( args, **kwords)
58     if rcode <> 0:
59         raise CommandError(args)
60
61 def command_output(args) :
62     p = subprocess.Popen(args, stdout=subprocess.PIPE)
63     output = p.communicate()
64     output = output[0]
65     if p.returncode != 0:
66         raise CommandError(args)
67     return output.strip()
68
69 def build(package):
70     with current_directory(package):
71         run_cmd(('autoreconf', '-i', '-f'))
72         configure_command = ' '.join([
73                                       './configure'] + configure_opts)
74         if len(schroot_command) > 0:
75             configure_command = schroot_command + " -- " \
76                 + configure_command
77         print configure_command
78         sys.stdout.flush()
79         run_cmd(configure_command, shell=True)
80         run_cmd(schroot_command + ' make', shell=True)
81
82 def make_install(package):
83     with current_directory(package):
84         install_command = root_command + " make install"
85         print install_command
86         sys.stdout.flush()
87         run_cmd(install_command, shell=True)
88         
89
90
91 def read_packages():
92     '''Read in the packages file from source_packages
93     '''
94     try: pf = file("source_packages")
95     except IOError:
96         print "Error: source_packages file not found"
97         exit(1)
98     def is_comment(line):
99         if re.match("^\\s*#", line): return False
100         if "#" in line: raise ValueError(
101             "Source package line contains a comment but not at beginning")
102         return True
103     return map(lambda(x): x.rstrip(),
104         filter(is_comment, pf.readlines()))
105
106
107 # main program
108 opt = OptionParser()
109 opt.add_option('--prefix',
110                dest="prefix", default=prefix,
111                help="Set the prefix under which packages are built and"
112                + "installed")
113 opt.add_option('-c', '--configure-opt', dest="configure_opts",
114                action="append",
115                help="Specify an option to pass to configure")
116 opt.add_option('-r', '--root-cmd', dest="root_command",
117                default=root_command,
118                help="Specify command to gain root for make install")
119 opt.add_option('-s', '--schroot',
120                dest="schroot",
121                help="Specify name of schroot to use for build;"
122                "implicitly sets root_command")
123 opt.usage = "%prog [options] [packages]"
124 (options, packages) = opt.parse_args()
125 prefix = options.prefix
126 root_command = options.root_command
127 configure_opts = ['--prefix', prefix,
128                   "LDFLAGS='-Wl,-L"+prefix+"/lib -Wl,-L/usr/lib/freeradius"
129                   + " -Wl,-rpath="+prefix+"/lib'",
130                   'CPPFLAGS="-I '+prefix+'/include"',
131                   '--with-system-libtool', '--with-system-libltdl',
132                   '--enable-tls', '--with-gssapi='+prefix,
133                   "--with-xmltooling="+prefix, 
134                   ]
135 if options.configure_opts is not None: 
136     configure_opts.extend(options.configure_opts)
137
138 our_schroot = None
139 if options.schroot is not None:
140     our_schroot = Schroot(options.schroot)
141     schroot_command = "schroot -r -c " + our_schroot.name
142     root_command = schroot_command + " -u root"
143
144 all_packages = read_packages()
145 if len(packages) == 0: packages = all_packages
146
147 os.umask(022)
148
149 try:
150     for p in all_packages:
151         if p in packages: build(p)
152         make_install(p)
153 except CommandError as c:
154     print "Error:" + str(c.args)
155     our_schroot = None
156     exit(1)
157 finally: del our_schroot
158
159     
160