File: fedabipkgdiff

package info (click to toggle)
libabigail 1.0~rc6-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 394,432 kB
  • ctags: 7,019
  • sloc: cpp: 56,835; sh: 11,177; xml: 3,945; makefile: 1,774; python: 1,128; ansic: 934
file content (29 lines) | stat: -rwxr-xr-x 704 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
_fedabipkgdiff_module()
{
	local cur OPTS
	COMPREPLY=()
	cur="${COMP_WORDS[COMP_CWORD]}"
	case $cur in
	  -*)
	    OPTS="  --dry-run
                    --debug
                    --traceback
                    --server
                    --topdir
                    --from
                    --to
                    --all-subpackages
                    --dso-only
                    --no-default-suppression
                    --no-devel-pkg
                    --abipkgdiff"
	    COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
	    return 0
	    ;;
	esac
	local IFS=$'\n'
	compopt -o filenames
	COMPREPLY=( $(compgen -f -- $cur) )
	return 0
}
complete -F _fedabipkgdiff_module fedabipkgdiff