/usr/share/bash-completion/completions/cme-dpkg-patch is in libconfig-model-dpkg-perl 2.105.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | # cme(1) completion for dpkg-patch model
# the file must be delivered with a name beginning with cme- so that it can
# be picked up by cme bash completion file
_cme_dpkg-patch()
{
COMPREPLY=( $( cd debian/patches ; compgen -o filenames -G "$cur*" -W '~~ -' -- $cur | grep -v series ) )
}
|