Lines Matching full:packages
41 parser = argparse.ArgumentParser(description='Patch management for packages.')
50 # Add argument for which packages to manage their patches.
52 '--packages',
56 help='the packages to manage their patches (default: %(default)s)')
96 unique_packages = list(set(args_output.packages))
98 # Duplicate packages were passed into the command line
99 if len(unique_packages) != len(args_output.packages):
100 raise ValueError('Duplicate packages were passed in: %s' % ' '.join(
101 args_output.packages))
103 args_output.packages = unique_packages
187 patch_metadata_file, packages, mode): argument
188 """Updates the packages metadata file.
195 packages: All the packages to update their patch metadata file.
221 for cur_package in packages:
262 args_output.packages,
269 print('The patch file %s has been modified for the packages:' %
271 print('\n'.join(args_output.packages))