def check_imports(fips_dir, proj_dir) : """do various checks on the imports of a project :param fips_dir: absolute fips directory :param proj_dir: absolute project directory :returns: True if checks were valid """ # check whether any imported projects are in sync with the remote git repo success, imported_projects = get_all_imports_exports(fips_dir, proj_dir) num_imports = 0 for imp_proj_name in imported_projects : imp_proj_dir = imported_projects[imp_proj_name]['proj_dir'] # don't git-check the top-level project directory if imp_proj_dir != proj_dir : num_imports += 1 log.info("git status of '{}':".format(imp_proj_name)) if os.path.isdir(imp_proj_dir) : if os.path.isdir("{}/.git".format(imp_proj_dir)) : if git.check_out_of_sync(imp_proj_dir) : log.warn(" '{}' is out of sync with remote git repo".format(imp_proj_dir)) else : log.colored(log.GREEN, ' uptodate') else : log.colored(log.GREEN, " '{}' is not a git repository".format(imp_proj_dir)) else : log.warn(" '{}' does not exist, please run 'fips fetch'".format(imp_proj_dir)) if success and num_imports == 0 : log.info(' none') # gather imports, this will dump warnings gather_imports(fips_dir, proj_dir)
def check_imports(fips_dir, proj_dir) : """do various checks on the imports of a project :param fips_dir: absolute fips directory :param proj_dir: absolute project directory :returns: True if checks were valid """ # check whether any imported projects are in sync with the remote git repo success, imported_projects = get_all_imports_exports(fips_dir, proj_dir) num_imports = 0 for imp_proj_name in imported_projects : imp_proj_dir = util.get_project_dir(fips_dir, imp_proj_name) # don't git-check the top-level project directory if imp_proj_dir != proj_dir : num_imports += 1 log.info("git status of '{}':".format(imp_proj_name)) if os.path.isdir(imp_proj_dir) : if git.check_out_of_sync(imp_proj_dir) : log.warn(" '{}' is out of sync with remote git repo".format(imp_proj_dir)) else : log.colored(log.GREEN, ' uptodate') else : log.warn(" '{}' does not exist, please run 'fips fetch'".format(imp_proj_dir)) if success and num_imports == 0 : log.info(' none') # gather imports, this will dump warnings gather_imports(fips_dir, proj_dir)