Make overriding the version name independant of VCS; submodule support for git
[mass-build.git] / build_system.py
1 import os, shutil, subprocess
2
3 '''A build system must have a "build" method with an optional "reconfigure" parameter.'''
4
5 # Compile, build, and install cmake projects:
6 class CMake:
7         def __init__(self, sourceFolder, buildFolder, config):
8                 self.sourceFolder = os.path.abspath(sourceFolder)
9                 self.buildFolder = os.path.abspath(buildFolder)
10                 self.config = config
11         
12         def build(self, reconfigure=False):
13                 # Make sure we have a build directory
14                 if not os.path.exists(self.buildFolder): os.makedirs(self.buildFolder)
15                 os.chdir(self.buildFolder)
16                 # In case of reconfiguration, delete cache file if it exists
17                 cacheFile = 'CMakeCache.txt'
18                 if os.path.exists(cacheFile) and reconfigure: os.remove(cacheFile)
19                 # Run cmake
20                 os.putenv('PKG_CONFIG_PATH', os.path.join(self.config['installDir'], 'lib', 'pkgconfig')) # I found no way to do this within cmake
21                 subprocess.check_call(['cmake', self.sourceFolder, '-DCMAKE_BUILD_TYPE='+self.config['buildType'],
22                         '-DCMAKE_INSTALL_PREFIX='+self.config['installDir']]+self.config.get('cmakeParameters', []))
23                 os.unsetenv('PKG_CONFIG_PATH')
24                 # if asked to do so, wait
25                 if self.config['waitAfterConfig']:
26                         raw_input('Configuration done. Hit "Enter" to build the project. ')
27                 # run compilation
28                 subprocess.check_call(self.config['buildCmdPrefix'] + ['make', '-j'+str(self.config['jobs'])])
29                 # run installation
30                 subprocess.check_call(self.config['installCmdPrefix'] + ['make', 'install'])
31
32 # if auto-debuild is available, provide a wrapper for it
33 try:
34         import auto_debuild
35         class AutoDebuild:
36                 def __init__(self, sourceFolder, buildFolder, config, vcs):
37                         self.sourceFolder = os.path.abspath(sourceFolder)
38                         self.buildFolder = os.path.abspath(buildFolder)
39                         self.debFolder = os.path.abspath(config['debDir'])
40                         self.config = config
41                         self.vcs = vcs
42
43                 def build(self, reconfigure=False): # reconfigure is ignored (we always do a reconfiguration)
44                         # create auto-debuild configuration
45                         versionName = self.config['versionName'] if 'versionName' in self.config else self.vcs.version()
46                         autoDebuildConfig = {
47                                 'sourceName': self.config['name'],
48                                 'buildSystem': self.config['buildSystem'],
49                                 'debDir': self.debFolder,
50                                 'buildDir': self.buildFolder,
51                                 'name': self.config['debName'],
52                                 'email': self.config['debEMail'],
53                                 'parallelJobs': self.config['jobs'],
54                                 'version': versionName,
55                         }
56                         if autoDebuildConfig['version'] is None:
57                                 raise Exception("VCS did not provide us with a proper version number, please fix this")
58                         # copy some more optional configuration
59                         for option in ('waitAfterConfig',  'dbgPackage', 'section', 'withPython2', 'binarySkipFiles', 'binaryInstallFiles',
60                                         'buildDepends', 'binaryDepends', 'binaryRecommends', 'binaryProvides', 'binaryConflicts',
61                                         'alternatives', 'cmakeParameters', 'automakeParameters'):
62                                 if option in self.config:
63                                         autoDebuildConfig[option] = self.config[option]
64                         # create Debian files
65                         os.chdir(self.sourceFolder)
66                         if os.path.isdir('debian'): # clean previous build attempts
67                                 shutil.rmtree('debian')
68                         files = auto_debuild.createDebianFiles(autoDebuildConfig)
69                         # build package(s)
70                         auto_debuild.buildDebianPackage(autoDebuildConfig)
71                         # install package(s)
72                         if self.config.get('debInstall', True):
73                                 subprocess.check_call(['sudo', 'dpkg', '--install'] + files)
74
75 except ImportError:
76         #print "auto_debuild not found, disabling auto-debuild system"
77         pass