3 '''A build system has three methods: "configure" (with optionak "force" parameter), "build" and "install"'''
5 # Compile, build, and install cmake projects:
7 def __init__(self, sourceFolder, buildFolder, module, config):
8 self.sourceFolder = os.path.abspath(sourceFolder)
9 self.buildFolder = os.path.abspath(buildFolder)
10 self.installDir = config['installDir']
11 self.buildType = config['buildType']
12 self.jobs = config['jobs']
13 self.buildCmdPrefix = config['buildCmdPrefix']
14 self.installCmdPrefix = config['installCmdPrefix']
15 self.cmakeParameters = module.get('cmakeParameters', [])
17 def configure(self, force=False):
18 if not os.path.exists(self.buildFolder): os.makedirs(self.buildFolder)
19 os.chdir(self.buildFolder)
20 # check if we actually need to work
21 cacheFile = 'CMakeCache.txt'
22 if os.path.exists(cacheFile) and os.path.exists('Makefile') and not force: return
23 # yes we do! make sure we start clean, and then go ahead
24 if os.path.exists(cacheFile): os.remove(cacheFile)
25 os.putenv('PKG_CONFIG_PATH', os.path.join(self.installDir, 'lib', 'pkgconfig')) # I found no way to do this within cmake
26 subprocess.check_call(['cmake', self.sourceFolder, '-DCMAKE_BUILD_TYPE='+self.buildType,
27 '-DCMAKE_INSTALL_PREFIX='+self.installDir]+self.cmakeParameters)
28 os.unsetenv('PKG_CONFIG_PATH')
31 os.chdir(self.buildFolder)
32 subprocess.check_call(self.buildCmdPrefix + ['make', '-j'+str(self.jobs)])
35 os.chdir(self.buildFolder)
36 subprocess.check_call(self.installCmdPrefix + ['make', 'install'])
38 # if auto-debuild is available, provide a wrapper for it
42 def __init__(self, sourceFolder, buildFolder, module, vcs, config):
43 self.sourceFolder = os.path.abspath(sourceFolder)
44 buildSystem = module.get('build-system', 'cmake')
45 self.autoDebuildConfig = {
46 'sourceName': module['name'],
47 'debDir': os.path.abspath(config['debDir']),
48 'buildSystem': buildSystem,
49 'buildDir': os.path.abspath(buildFolder),
50 'name': config['debName'],
51 'email': config['debEMail'],
53 self.copyFromModule(module, 'buildDepends')
54 if buildSystem == 'cmakeParameters':
55 self.copyFromModule(module, 'cmakeParameters')
57 self.configured = False # make sure configure is called before build/install
59 def copyFromModule(self, module, name):
61 self.autoDebuildConfig[name] = module[name]
63 def configure(self, force=False): # force is ignored
64 self.autoDebuildConfig['version'] = self.vcs.version() # by now, data has been fetched, so this is possible
65 self.vcs.ignore('/debian/') # make sure the debian folder is ignored
66 os.chdir(self.sourceFolder)
67 print self.autoDebuildConfig
68 self.files = auto_debuild.createDebianFiles(self.autoDebuildConfig)
69 self.configured = True
72 if not self.configured: self.configure()
73 os.chdir(self.sourceFolder)
74 auto_debuild.buildDebianPackage(self.autoDebuildConfig)
77 if not self.configured: self.configure()
78 os.chdir(self.sourceFolder)
79 subprocess.check_call(['sudo', 'dpkg', '--install'] + self.files)
81 print "auto_debuild not found, disabling auto-debuild system"