X-Git-Url: https://git.ralfj.de/mass-build.git/blobdiff_plain/b1d915653a9f8a415a0d4a8d66027508881361d3..10b1a877e16f857332404fabcfcc04270998dea9:/build_system.py?ds=sidebyside diff --git a/build_system.py b/build_system.py index 78039f1..197d7ac 100644 --- a/build_system.py +++ b/build_system.py @@ -1,18 +1,19 @@ -import os, subprocess +import os, shutil, subprocess -'''A build system has three methods: "configure" (with optionak "force" parameter), "build" and "install"''' +'''A build system must have a "build" method with an optional "reconfigure" parameter.''' # Compile, build, and install cmake projects: class CMake: - def __init__(self, sourceFolder, buildFolder, module, config): + def __init__(self, sourceFolder, buildFolder, projectConfig, globalConfig): self.sourceFolder = os.path.abspath(sourceFolder) self.buildFolder = os.path.abspath(buildFolder) - self.installDir = config['installDir'] - self.buildType = config['buildType'] - self.jobs = config['jobs'] - self.buildCmdPrefix = config['buildCmdPrefix'] - self.installCmdPrefix = config['installCmdPrefix'] - self.cmakeParameters = module.get('cmakeParameters', []) + self.installDir = globalConfig['installDir'] + self.buildType = globalConfig['buildType'] + self.jobs = globalConfig['jobs'] + self.buildCmdPrefix = globalConfig['buildCmdPrefix'] + self.installCmdPrefix = globalConfig['installCmdPrefix'] + self.waitAfterConfig = globalConfig.get('waitAfterConfig', False) + self.projectConfig = projectConfig def build(self, reconfigure=False): # Make sure we have a build directory @@ -24,8 +25,11 @@ class CMake: # Run cmake os.putenv('PKG_CONFIG_PATH', os.path.join(self.installDir, 'lib', 'pkgconfig')) # I found no way to do this within cmake subprocess.check_call(['cmake', self.sourceFolder, '-DCMAKE_BUILD_TYPE='+self.buildType, - '-DCMAKE_INSTALL_PREFIX='+self.installDir]+self.cmakeParameters) + '-DCMAKE_INSTALL_PREFIX='+self.installDir]+self.projectConfig.get('cmakeParameters', [])) os.unsetenv('PKG_CONFIG_PATH') + # if asked to do so, wait + if self.waitAfterConfig: + raw_input('Configuration done. Hit "Enter" to build the project. ') # run compilation subprocess.check_call(self.buildCmdPrefix + ['make', '-j'+str(self.jobs)]) # run installation @@ -35,46 +39,48 @@ class CMake: try: import auto_debuild class AutoDebuild: - def __init__(self, sourceFolder, buildFolder, module, vcs, config): + def __init__(self, sourceFolder, buildFolder, projectConfig, vcs, globalConfig): self.sourceFolder = os.path.abspath(sourceFolder) - buildSystem = module.get('build-system', 'cmake') - self.autoDebuildConfig = { - 'sourceName': module['name'], - 'debDir': os.path.abspath(config['debDir']), - 'buildSystem': buildSystem, - 'buildDir': os.path.abspath(buildFolder), - 'name': config['debName'], - 'email': config['debEMail'], - } - self.copyOption(config, 'jobs', 'parallelJobs') - self.copyOption(module, 'dbgPackage') - self.copyOption(module, 'skipFiles', 'binarySkipFiles') - self.copyOption(module, 'installFiles', 'binaryInstall') - self.copyOption(module, 'buildDepends') - self.copyOption(module, 'binaryDepends') - self.copyOption(module, 'binaryRecommends') - if buildSystem == 'cmake': - self.copyOption(module, 'cmakeParameters') + self.buildFolder = os.path.abspath(buildFolder) + self.jobs = globalConfig['jobs'] + self.debDir = os.path.abspath(globalConfig['debDir']) + self.debName = globalConfig['debName'] + self.debEMail = globalConfig['debEMail'] + self.waitAfterConfig = globalConfig.get('waitAfterConfig', False) + self.projectConfig = projectConfig self.vcs = vcs - def copyOption(self, src, name, dstName = None): - if dstName is None: dstName = name # per default, stick with original name - if name in src: - self.autoDebuildConfig[dstName] = src[name] - def build(self, reconfigure=False): # reconfigure is ignored (we always do a reconfiguration) - # Get us a version number - self.autoDebuildConfig['version'] = self.vcs.version() # by now, data has been fetched, so this is possible - if self.autoDebuildConfig['version'] is None: - raise Exception("VCS did not provide us with a proper version, please fix this") + # create auto-debuild configuration + autoDebuildConfig = { + 'sourceName': self.projectConfig['name'], + 'buildSystem': self.projectConfig['buildSystem'], + 'debDir': self.debDir, + 'buildDir': self.buildFolder, + 'name': self.debName, + 'email': self.debEMail, + 'parallelJobs': self.jobs, + 'version': self.vcs.version(), + 'waitAfterConfig': self.waitAfterConfig, + } + if autoDebuildConfig['version'] is None: + raise Exception("VCS did not provide us with a proper version number, please fix this") + # copy some more optional configuration + for option in ('dbgPackage', 'section', 'withPython2', 'binarySkipFiles', 'binaryInstallFiles', + 'buildDepends', 'binaryDepends', 'binaryRecommends', 'binaryProvides', 'binaryConflicts', + 'cmakeParameters', 'automakeParameters'): + if option in self.projectConfig: + autoDebuildConfig[option] = self.projectConfig[option] # create Debian files os.chdir(self.sourceFolder) - files = auto_debuild.createDebianFiles(self.autoDebuildConfig) + if os.path.isdir('debian'): # clean previous build attempts + shutil.rmtree('debian') + files = auto_debuild.createDebianFiles(autoDebuildConfig) # build package(s) - auto_debuild.buildDebianPackage(self.autoDebuildConfig) + auto_debuild.buildDebianPackage(autoDebuildConfig) # install package(s) subprocess.check_call(['sudo', 'dpkg', '--install'] + files) except ImportError: - print "auto_debuild not found, disabling auto-debuild system" + #print "auto_debuild not found, disabling auto-debuild system" pass