X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=cdist;h=4fd61e14f9cbee0c8ae507f3ef1b339c338323c2;hb=427050d00e21412dcaff729563bc66ea8d6a5c02;hp=ff04fdf3002d4e92cafb5a603364a42d46a037ba;hpb=c2627a770f87c85fab9366366acee7cd54ef8c85;p=cdist.git diff --git a/cdist b/cdist index ff04fdf..4fd61e1 100755 --- a/cdist +++ b/cdist @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # Copyright (C) 2012-2020 Carl Hetherington # @@ -17,20 +17,22 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. from __future__ import print_function -import os -import sys -import shutil -import glob -import tempfile + import argparse -import datetime -import subprocess -import re import copy -import inspect +import datetime import getpass -import shlex +import glob +import inspect import multiprocessing +import os +import re +import shlex +import shutil +import subprocess +import sys +import tempfile +import time TEMPORARY_DIRECTORY = '/var/tmp' @@ -103,9 +105,12 @@ class Config: def __init__(self): self.options = [ Option('mxe_prefix'), Option('git_prefix'), + Option('git_reference'), Option('osx_environment_prefix'), Option('osx_sdk_prefix'), Option('osx_sdk'), + Option('osx_keychain_file'), + Option('osx_keychain_password'), Option('apple_id'), Option('apple_password'), BoolOption('docker_sudo'), @@ -172,10 +177,14 @@ config = Config() # Utility bits # -def log(m): +def log_normal(m): if not globals.quiet: print('\x1b[33m* %s\x1b[0m' % m) +def log_verbose(m): + if globals.verbose: + print('\x1b[35m* %s\x1b[0m' % m) + def escape_spaces(s): return s.replace(' ', '\\ ') @@ -192,14 +201,14 @@ def mv_escape(n): return '\"%s\"' % n.substr(' ', '\\ ') def copytree(a, b): - log('copy %s -> %s' % (scp_escape(a), scp_escape(b))) + log_normal('copy %s -> %s' % (scp_escape(a), scp_escape(b))) if b.startswith('s3://'): command('s3cmd -P -r put "%s" "%s"' % (a, b)) else: command('scp -r %s %s' % (scp_escape(a), scp_escape(b))) def copyfile(a, b): - log('copy %s -> %s' % (scp_escape(a), scp_escape(b))) + log_normal('copy %s -> %s' % (scp_escape(a), scp_escape(b))) if b.startswith('s3://'): command('s3cmd -P put "%s" "%s"' % (a, b)) else: @@ -233,26 +242,26 @@ def makedirs(d): command('ssh %s -- mkdir -p %s' % (s[0], s[1])) def rmdir(a): - log('remove %s' % a) + log_normal('remove %s' % a) os.rmdir(a) def rmtree(a): - log('remove %s' % a) + log_normal('remove %s' % a) shutil.rmtree(a, ignore_errors=True) def command(c): - log(c) + log_normal(c) r = os.system(c) if (r >> 8): raise Error('command %s failed' % c) def command_and_read(c): - log(c) + log_normal(c) p = subprocess.Popen(c.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE) (out, err) = p.communicate() if p.returncode != 0: raise Error('command %s failed (%s)' % (c, err)) - return out.splitlines() + return str(out, 'utf-8').splitlines() def read_wscript_variable(directory, variable): f = open('%s/wscript' % directory, 'r') @@ -291,7 +300,7 @@ def append_version_to_changelog(version): try: f = open('ChangeLog', 'r') except: - log('Could not open ChangeLog') + log_normal('Could not open ChangeLog') return c = f.read() @@ -304,7 +313,7 @@ def append_version_to_changelog(version): def append_version_to_debian_changelog(version): if not os.path.exists('debian'): - log('Could not find debian directory') + log_normal('Could not find debian directory') return command('dch -b -v %s-1 "New upstream release."' % version) @@ -315,7 +324,8 @@ def devel_to_git(git_commit, filename): return filename -def get_options(args, target): +def get_command_line_options(args): + """Get the options specified by --option on the command line""" options = dict() if args.option is not None: for o in args.option: @@ -323,14 +333,11 @@ def get_options(args, target): if len(b) != 2: raise Error("Bad option `%s'" % o) if b[1] == 'False': - opts[b[0]] = False + options[b[0]] = False elif b[1] == 'True': - opts[b[0]] = True + options[b[0]] = True else: - opts[b[0]] = b[1] - # Add defaults for any unspecified options - tree = globals.trees.get(args.project, args.checkout, target) - tree.add_defaults(options) + options[b[0]] = b[1] return options @@ -443,7 +450,7 @@ class Target(object): self.set('CCACHE_BASEDIR', os.path.realpath(self.directory)) self.set('CCACHE_NOHASHDIR', '') else: - self.directory = directory + self.directory = os.path.realpath(directory) self.rmdir = False @@ -451,34 +458,39 @@ class Target(object): pass def package(self, project, checkout, output_dir, options): - tree = globals.trees.get(project, checkout, self) - if self.build_dependencies: - tree.build_dependencies(options) - tree.build(options) - if len(inspect.getargspec(tree.cscript['package']).args) == 3: + tree = self.build(project, checkout, options) + tree.add_defaults(options) + if len(inspect.getfullargspec(tree.cscript['package']).args) == 3: packages = tree.call('package', tree.version, options) else: - log("Deprecated cscript package() method with no options parameter") + log_normal("Deprecated cscript package() method with no options parameter") packages = tree.call('package', tree.version) - if isinstance(packages, (str, unicode)): - copyfile(packages, os.path.join(output_dir, os.path.basename(devel_to_git(tree.git_commit, packages)))) - else: + if isinstance(packages, list): for p in packages: copyfile(p, os.path.join(output_dir, os.path.basename(devel_to_git(tree.git_commit, p)))) + else: + copyfile(packages, os.path.join(output_dir, os.path.basename(devel_to_git(tree.git_commit, packages)))) def build(self, project, checkout, options): tree = globals.trees.get(project, checkout, self) if self.build_dependencies: tree.build_dependencies(options) tree.build(options) + return tree def test(self, tree, test, options): """test is the test case to run, or None""" if self.build_dependencies: tree.build_dependencies(options) tree.build(options) - return tree.call('test', test) + + tree.add_defaults(options) + if len(inspect.getfullargspec(tree.cscript['test']).args) == 3: + return tree.call('test', options, test) + else: + log_normal('Deprecated cscript test() method with no options parameter') + return tree.call('test', test) def set(self, a, b): self.variables[a] = b @@ -540,14 +552,19 @@ class DockerTarget(Target): return '' return '-u %s' % getpass.getuser() + def _mount_option(self, d): + return '-v %s:%s ' % (os.path.realpath(d), os.path.realpath(d)) + def setup(self): - opts = '-v %s:%s ' % (self.directory, self.directory) + opts = self._mount_option(self.directory) for m in self.mounts: - opts += '-v %s:%s ' % (m, m) + opts += self._mount_option(m) + if config.has('git_reference'): + opts += self._mount_option(config.get('git_reference')) if self.privileged: opts += '--privileged=true ' if self.ccache: - opts += "-e CCACHE_DIR=/ccache --volumes-from ccache-%s" % self.image + opts += "-e CCACHE_DIR=/ccache/%s-%d --mount source=ccache,target=/ccache" % (self.image, os.getuid()) tag = self.image if config.has('docker_hub_repository'): @@ -620,8 +637,6 @@ class WindowsTarget(DockerTarget): self.set('PKG_CONFIG_LIBDIR', '%s/lib/pkgconfig' % self.environment_prefix) self.set('PKG_CONFIG_PATH', '%s/lib/pkgconfig:%s/bin/pkgconfig' % (self.directory, self.directory)) self.set('PATH', '%s/bin:%s:%s' % (self.environment_prefix, self.tool_path, os.environ['PATH'])) - self.set('CC', '%s-gcc' % self.name) - self.set('CXX', '%s-g++' % self.name) self.set('LD', '%s-ld' % self.name) self.set('RANLIB', '%s-ranlib' % self.name) self.set('WINRC', '%s-windres' % self.name) @@ -636,29 +651,38 @@ class WindowsTarget(DockerTarget): if environment_version is not None: self.image += '_%s' % environment_version + def setup(self): + super().setup() + if self.ccache: + self.set('CC', '"ccache %s-gcc"' % self.name) + self.set('CXX', '"ccache %s-g++"' % self.name) + else: + self.set('CC', '%s-gcc' % self.name) + self.set('CXX', '%s-g++' % self.name) + @property def library_prefix(self): - log('Deprecated property library_prefix: use environment_prefix') + log_normal('Deprecated property library_prefix: use environment_prefix') return self.environment_prefix @property def windows_prefix(self): - log('Deprecated property windows_prefix: use environment_prefix') + log_normal('Deprecated property windows_prefix: use environment_prefix') return self.environment_prefix @property def mingw_prefixes(self): - log('Deprecated property mingw_prefixes: use environment_prefix') + log_normal('Deprecated property mingw_prefixes: use environment_prefix') return [self.environment_prefix] @property def mingw_path(self): - log('Deprecated property mingw_path: use tool_path') + log_normal('Deprecated property mingw_path: use tool_path') return self.tool_path @property def mingw_name(self): - log('Deprecated property mingw_name: use name') + log_normal('Deprecated property mingw_name: use name') return self.name @@ -706,7 +730,7 @@ class LinuxTarget(DockerTarget): class AppImageTarget(LinuxTarget): def __init__(self, work): - super(AppImageTarget, self).__init__('ubuntu', '16.04', 64, work) + super(AppImageTarget, self).__init__('ubuntu', '18.04', 64, work) self.detail = 'appimage' self.privileged = True @@ -719,10 +743,16 @@ class OSXTarget(Target): self.environment_prefix = config.get('osx_environment_prefix') self.apple_id = config.get('apple_id') self.apple_password = config.get('apple_password') + self.osx_keychain_file = config.get('osx_keychain_file') + self.osx_keychain_password = config.get('osx_keychain_password') def command(self, c): command('%s %s' % (self.variables_string(False), c)) + def build(self, *a, **k): + self.command('security unlock-keychain -p %s %s' % (self.osx_keychain_password, self.osx_keychain_file)) + return super().build(*a, **k) + class OSXSingleTarget(OSXTarget): def __init__(self, bits, directory=None): @@ -772,10 +802,10 @@ class OSXUniversalTarget(OSXTarget): tree = globals.trees.get(project, checkout, self) with TreeDirectory(tree): - if len(inspect.getargspec(tree.cscript['package']).args) == 3: + if len(inspect.getfullargspec(tree.cscript['package']).args) == 3: packages = tree.call('package', tree.version, options) else: - log("Deprecated cscript package() method with no options parameter") + log_normal("Deprecated cscript package() method with no options parameter") packages = tree.call('package', tree.version) for p in packages: copyfile(p, os.path.join(output_dir, os.path.basename(devel_to_git(tree.git_commit, p)))) @@ -786,7 +816,7 @@ class SourceTarget(Target): super(SourceTarget, self).__init__('source') def command(self, c): - log('host -> %s' % c) + log_normal('host -> %s' % c) command('%s %s' % (self.variables_string(), c)) def cleanup(self): @@ -900,7 +930,11 @@ class Tree(object): if globals.quiet: flags = '-q' redirect = '>/dev/null' - command('git clone %s %s/%s.git %s/src/%s' % (flags, config.get('git_prefix'), self.name, target.directory, self.name)) + if config.has('git_reference'): + ref = '--reference-if-able %s/%s.git' % (config.get('git_reference'), self.name) + else: + ref = '' + command('git clone %s %s %s/%s.git %s/src/%s' % (flags, ref, config.get('git_prefix'), self.name, target.directory, self.name)) os.chdir('%s/src/%s' % (target.directory, self.name)) spec = self.specifier @@ -916,9 +950,19 @@ class Tree(object): exec(open('%s/cscript' % proj).read(), self.cscript) # cscript can include submodules = False to stop submodules being fetched - if not 'submodules' in self.cscript or self.cscript['submodules'] == True: - command('git submodule init --quiet') - command('git submodule update --quiet') + if (not 'submodules' in self.cscript or self.cscript['submodules'] == True) and os.path.exists('.gitmodules'): + command('git submodule --quiet init') + paths = command_and_read('git config --file .gitmodules --get-regexp path') + urls = command_and_read('git config --file .gitmodules --get-regexp url') + for path, url in zip(paths, urls): + ref = '' + if config.has('git_reference'): + url = url.split(' ')[1] + ref_path = os.path.join(config.get('git_reference'), os.path.basename(url)) + if os.path.exists(ref_path): + ref = '--reference %s' % ref_path + path = path.split(' ')[1] + command('git submodule --quiet update %s %s' % (ref, path)) if os.path.exists('%s/wscript' % proj): v = read_wscript_variable(proj, "VERSION"); @@ -926,7 +970,7 @@ class Tree(object): try: self.version = Version(v) except: - tag = subprocess.Popen(shlex.split('git -C %s describe --tags' % proj), stdout=subprocess.PIPE).communicate()[0][1:] + tag = command_and_read('git -C %s describe --tags' % proj)[0][1:] self.version = Version.from_git_tag(tag) os.chdir(cwd) @@ -936,73 +980,70 @@ class Tree(object): return self.cscript[function](self.target, *args) def add_defaults(self, options): - """Add the defaults from this into a dict options""" + """Add the defaults from self into a dict options""" if 'option_defaults' in self.cscript: from_cscript = self.cscript['option_defaults'] if isinstance(from_cscript, dict): defaults_dict = from_cscript else: - log("Deprecated cscript option_defaults method; replace with a dict") + log_normal("Deprecated cscript option_defaults method; replace with a dict") defaults_dict = from_cscript() for k, v in defaults_dict.items(): if not k in options: options[k] = v def dependencies(self, options): + """ + yield details of the dependencies of this tree. Each dependency is returned + as a tuple of (tree, options, parent_tree). The 'options' parameter are the options that + we want to force for 'self'. + """ if not 'dependencies' in self.cscript: return - if len(inspect.getargspec(self.cscript['dependencies']).args) == 2: - deps = self.call('dependencies', options) + if len(inspect.getfullargspec(self.cscript['dependencies']).args) == 2: + self_options = copy.copy(options) + self.add_defaults(self_options) + deps = self.call('dependencies', self_options) else: - log("Deprecated cscript dependencies() method with no options parameter") + log_normal("Deprecated cscript dependencies() method with no options parameter") deps = self.call('dependencies') + # Loop over our immediate dependencies for d in deps: dep = globals.trees.get(d[0], d[1], self.target, self.name) - # Start with the options passed in - dep_options = copy.copy(options) - # Add things specified by the parent - if len(d) > 2: - for k, v in d[2].items(): - if not k in dep_options: - dep_options[k] = v - # Then fill in the dependency's defaults - dep.add_defaults(dep_options) - + # deps only get their options from the parent's cscript + dep_options = d[2] if len(d) > 2 else {} for i in dep.dependencies(dep_options): yield i - yield (dep, dep_options) + yield (dep, dep_options, self) def checkout_dependencies(self, options={}): for i in self.dependencies(options): pass def build_dependencies(self, options): + """ + Called on the 'main' project tree (-p on the command line) to build all dependencies. + 'options' will be the ones from the command line. + """ for i in self.dependencies(options): - global args - if args.verbose: - print('Building a dependency of %s %s %s with %s' % (self.name, self.specifier, self.version, options)) i[0].build(i[1]) def build(self, options): if self.built: return - global args - if args.verbose: - print("* Building %s %s %s with %s" % (self.name, self.specifier, self.version, options)) + log_verbose("Building %s %s %s with %s" % (self.name, self.specifier, self.version, options)) variables = copy.copy(self.target.variables) - # Start with the options passed in options = copy.copy(options) - # Fill in the defaults self.add_defaults(options) if not globals.dry_run: - if len(inspect.getargspec(self.cscript['build']).args) == 2: + if len(inspect.getfullargspec(self.cscript['build']).args) == 2: self.call('build', options) else: self.call('build') @@ -1018,7 +1059,7 @@ def main(): commands = { "build": "build project", - "package": "package and build project", + "package": "build and package project", "release": "release a project using its next version number (changing wscript and tagging)", "pot": "build the project's .pot files", "manual": "build the project's manual", @@ -1027,7 +1068,8 @@ def main(): "test": "run the project's unit tests", "shell": "build the project then start a shell", "checkout": "check out the project", - "revision": "print the head git revision number" + "revision": "print the head git revision number", + "dependencies" : "print details of the project's dependencies as a .dot file" } one_of = "Command is one of:\n" @@ -1086,11 +1128,14 @@ def main(): if args.work is not None: args.work = os.path.abspath(args.work) + if not os.path.exists(args.work): + os.makedirs(args.work) if args.project is None and args.command != 'shell': raise Error('you must specify -p or --project') globals.quiet = args.quiet + globals.verbose = args.verbose globals.command = args.command globals.dry_run = args.dry_run @@ -1103,7 +1148,7 @@ def main(): raise Error('you must specify -t or --target') target = target_factory(args) - target.build(args.project, args.checkout, get_options(args, target)) + target.build(args.project, args.checkout, get_command_line_options(args)) if not args.keep: target.cleanup() @@ -1124,7 +1169,7 @@ def main(): output_dir = args.output makedirs(output_dir) - target.package(args.project, args.checkout, output_dir, get_options(args, target)) + target.package(args.project, args.checkout, output_dir, get_command_line_options(args)) except Error as e: if target is not None and not args.keep: target.cleanup() @@ -1237,7 +1282,7 @@ def main(): target = target_factory(args) tree = globals.trees.get(args.project, args.checkout, target) with TreeDirectory(tree): - target.test(tree, args.test, get_options(args, target)) + target.test(tree, args.test, get_command_line_options(args)) except Error as e: if target is not None and not args.keep: target.cleanup() @@ -1272,6 +1317,19 @@ def main(): shutil.copytree('.', args.output) target.cleanup() + elif globals.command == 'dependencies': + if args.target is None: + raise Error('you must specify -t or --target') + if args.checkout is None: + raise Error('you must specify -c or --checkout') + + target = target_factory(args) + tree = globals.trees.get(args.project, args.checkout, target) + print("strict digraph {") + for d in list(tree.dependencies({})): + print("%s -> %s;" % (d[2].name.replace("-", "-"), d[0].name.replace("-", "_"))) + print("}") + else: raise Error('invalid command %s' % globals.command)