Updated msys2 to msys2-base-x86_64-20200903

This commit is contained in:
Gator96100 2020-09-07 18:14:14 +02:00
commit 2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions

View file

@ -10,7 +10,7 @@ _dpkg_source()
packopts="-c -l -F -V -T -D -U -W -E -sa -i -I -sk -sr -ss -sA -sK -sP \
-sU -sR"
unpackopts="-sp -sn -su"
options="-x -b $packopts $unpackopts"
options="-x -b --print-format --before-build --after-build --commit $packopts $unpackopts"
fields="Format Source Version Binary Maintainer Uploader Architecture \
Standards-Version Build-Depends Files"
@ -33,7 +33,7 @@ _dpkg_source()
_filedir 'dsc'
;;
*)
COMPREPLY=( $( compgen -W "$unpackopts" -- "$cur" ) )
COMPREPLY=( $(compgen -W "$unpackopts" -- "$cur") )
_filedir -d
_filedir
;;
@ -57,7 +57,7 @@ _dpkg_source()
;;
-F)
# -F: force change log format
COMPREPLY=( $( command ls /usr/lib/dpkg/parsechangelog ) )
COMPREPLY=( $(command ls /usr/lib/dpkg/parsechangelog) )
;;
-V|-D)
# -V: set a substitution variable
@ -72,23 +72,23 @@ _dpkg_source()
# $cur contains a "="
COMPREPLY=()
else
COMPREPLY=( $( compgen -W "$fields" -- "$cur" ) )
COMPREPLY=( $(compgen -W "$fields" -- "$cur") )
fi
;;
-U)
# -U: remove a field
# Suggest possible fieldnames
COMPREPLY=( $( compgen -W "$fields" -- "$cur" ) )
COMPREPLY=( $(compgen -W "$fields" -- "$cur") )
;;
*)
COMPREPLY=( $( compgen -W "$packopts $unpackopts" \
-- "$cur" ) )
COMPREPLY=( $(compgen -W "$packopts $unpackopts" \
-- "$cur") )
;;
esac
return
;;
*)
COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
COMPREPLY=( $(compgen -W "$options" -- "$cur") )
return
;;
esac