def execute_plan(plan, index=None, verbose=False): if verbose: from conda.console import setup_verbose_handlers setup_verbose_handlers() # set default prefix prefix = config.root_dir i = None cmds = cmds_from_plan(plan) for cmd, arg in cmds: if i is not None and cmd in progress_cmds: i += 1 getLogger('progress.update').info((install.name_dist(arg), i)) if cmd == PREFIX: prefix = arg elif cmd == PRINT: getLogger('print').info(arg) elif cmd == FETCH: fetch(index, arg) elif cmd == PROGRESS: i = 0 maxval = int(arg) getLogger('progress.start').info(maxval) elif cmd == EXTRACT: install.extract(config.pkgs_dirs[0], arg) elif cmd == RM_EXTRACTED: install.rm_extracted(config.pkgs_dirs[0], arg) elif cmd == RM_FETCHED: install.rm_fetched(config.pkgs_dirs[0], arg) elif cmd == LINK: link(prefix, arg) elif cmd == UNLINK: install.unlink(prefix, arg) elif cmd == SYMLINK_CONDA: install.symlink_conda(prefix, arg) else: raise Exception("Did not expect command: %r" % cmd) if i is not None and cmd in progress_cmds and maxval == i: i = None getLogger('progress.stop').info(None) install.messages(prefix)
def execute_plan(plan, index=None, verbose=False): if verbose: from conda.console import setup_verbose_handlers setup_verbose_handlers() # set default prefix prefix = config.root_dir i = None cmds = cmds_from_plan(plan) for cmd, arg in cmds: if i is not None and cmd in progress_cmds: i += 1 getLogger('progress.update').info((install.name_dist(arg), i)) if cmd == PREFIX: prefix = arg elif cmd == PRINT: getLogger('print').info(arg) elif cmd == FETCH: fetch(index, arg) elif cmd == PROGRESS: i = 0 maxval = int(arg) getLogger('progress.start').info(maxval) elif cmd == EXTRACT: install.extract(config.pkgs_dirs[0], arg) elif cmd == RM_EXTRACTED: install.rm_extracted(config.pkgs_dirs[0], arg) elif cmd == RM_FETCHED: install.rm_fetched(config.pkgs_dirs[0], arg) elif cmd == LINK: link(prefix, arg, index=index) elif cmd == UNLINK: install.unlink(prefix, arg) elif cmd == SYMLINK_CONDA: install.symlink_conda(prefix, arg) else: raise Exception("Did not expect command: %r" % cmd) if i is not None and cmd in progress_cmds and maxval == i: i = None getLogger('progress.stop').info(None) install.messages(prefix)
def execute_instructions(plan, index=None, verbose=False, _commands=None): """ Execute the instructions in the plan :param plan: A list of (instruction, arg) tuples :param index: The meta-data index :param verbose: verbose output :param _commands: (For testing only) dict mapping an instruction to executable if None then the default commands will be used """ if _commands is None: _commands = commands if verbose: from conda.console import setup_verbose_handlers setup_verbose_handlers() state = {'i': None, 'prefix': config.root_dir, 'index': index} for instruction, arg in plan: log.debug(' %s(%r)' % (instruction, arg)) if state['i'] is not None and instruction in progress_cmds: state['i'] += 1 getLogger('progress.update').info((install.name_dist(arg), state['i']-1)) cmd = _commands.get(instruction) if cmd is None: raise InvalidInstruction(instruction) cmd(state, arg) if (state['i'] is not None and instruction in progress_cmds and state['maxval'] == state['i']): state['i'] = None getLogger('progress.stop').info(None) install.messages(state['prefix'])
def execute_instructions(plan, index=None, verbose=False, _commands=None): """ Execute the instructions in the plan :param plan: A list of (instruction, arg) tuples :param index: The meta-data index :param verbose: verbose output :param _commands: (For testing only) dict mapping an instruction to executable if None then the default commands will be used """ if _commands is None: _commands = commands if verbose: from conda.console import setup_verbose_handlers setup_verbose_handlers() state = {'i': None, 'prefix': config.root_dir, 'index': index} for instruction, arg in plan: log.debug(' %s(%r)' % (instruction, arg)) if state['i'] is not None and instruction in progress_cmds: state['i'] += 1 getLogger('progress.update').info((install.name_dist(arg), state['i'] - 1)) cmd = _commands.get(instruction) if cmd is None: raise InvalidInstruction(instruction) cmd(state, arg) if (state['i'] is not None and instruction in progress_cmds and state['maxval'] == state['i']): state['i'] = None getLogger('progress.stop').info(None) install.messages(state['prefix'])
is_build=False, ) build_root.make_relocatable(copy=True) if saw_build_link and config.post_link_patch_rpaths: print("Patching build environment...") assert prefix != config.root_dir, prefix from conda_build.dll import BuildRoot build_root = BuildRoot( prefix=prefix, forgiving=True, is_build=False, ) build_root.make_relocatable(copy=True) install.messages(prefix) >>>>>>> princeofdarkness76/rpath def update_old_plan(old_plan): """ Update an old plan object to work with `conda.instructions.execute_instructions` """ plan = [] for line in old_plan: if line.startswith('#'): continue if ' ' not in line: raise CondaException( "The instruction '%s' takes at least one argument" % line
======= >>>>>>> origin/feature/instruction-arguments ======= <<<<<<< HEAD >>>>>>> princeofdarkness76/feature/instruction-arguments ======= >>>>>>> conda/feature/instruction-arguments >>>>>>> princeofdarkness76/conda ======= >>>>>>> origin/feature/instruction-arguments ======= >>>>>>> princeofdarkness76/feature/instruction-arguments ======= >>>>>>> origin/feature/instruction-arguments getLogger('progress.update').info((args[0], state['i'])) cmd = commands.get(instruction) >>>>>>> conda/feature/instruction-arguments if cmd is None: raise InvalidInstruction(instruction) cmd(state, *args) if (state['i'] is not None and instruction in progress_cmds and state['maxval'] == state['i']): state['i'] = None getLogger('progress.stop').info(None) install.messages(state['prefix'])