This is an automated email from the git hooks/post-receive script. bignose-guest pushed a commit to branch master in repository devscripts.
commit 1f3ba0f3f1355f345451594950c979cb8e37ae12 Author: Ben Finney <[email protected]> Date: Sat May 14 07:05:38 2016 +1000 scripts/*.bash_completion: Normalise editor hints to preserve formatting. --- scripts/bts.bash_completion | 12 +++++++++--- scripts/chdist.bash_completion | 6 ++++++ scripts/checkbashisms.bash_completion | 12 +++++++++--- scripts/dcut.bash_completion | 8 ++++++++ scripts/debchange.bash_completion | 8 ++++++++ scripts/debdiff.bash_completion | 12 +++++++++--- scripts/debi.bash_completion | 8 ++++++++ scripts/debsign.bash_completion | 8 ++++++++ scripts/debuild.bash_completion | 12 +++++++++--- scripts/dscextract.bash_completion | 10 +++++++++- scripts/dscverify.bash_completion | 10 +++++++++- scripts/licensecheck.bash_completion | 12 +++++++++--- scripts/list-unreleased.bash_completion | 8 ++++++++ scripts/pkgnames.bash_completion | 8 ++++++++ scripts/plotchangelog.bash_completion | 12 +++++++++--- scripts/uupdate.bash_completion | 8 ++++++++ scripts/what-patch.bash_completion | 8 ++++++++ 17 files changed, 142 insertions(+), 20 deletions(-) diff --git a/scripts/bts.bash_completion b/scripts/bts.bash_completion index 21e9f5b..114e745 100644 --- a/scripts/bts.bash_completion +++ b/scripts/bts.bash_completion @@ -1,4 +1,4 @@ -# Debian bts(1) completion -*- shell-script -*- +# Debian bts(1) completion. # Copyright: 2015, Nicholas Bamber <[email protected]> _get_version_from_package() @@ -306,5 +306,11 @@ _bts() return 0 } && complete -F _bts bts - -# ex: ts=4 sw=4 et filetype=sh + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/chdist.bash_completion b/scripts/chdist.bash_completion index c270277..285d939 100644 --- a/scripts/chdist.bash_completion +++ b/scripts/chdist.bash_completion @@ -48,3 +48,9 @@ _chdist () complete -F _chdist chdist +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/checkbashisms.bash_completion b/scripts/checkbashisms.bash_completion index 1b39163..91a548e 100644 --- a/scripts/checkbashisms.bash_completion +++ b/scripts/checkbashisms.bash_completion @@ -1,4 +1,4 @@ -# Debian checkbashisms(1) completion -*- shell-script -*- +# Debian checkbashisms(1) completion. # Copyright: 2015, Nicholas Bamber <[email protected]> _checkbashisms() { @@ -14,5 +14,11 @@ _checkbashisms() return 0 } && complete -F _checkbashisms checkbashisms - -# ex: ts=4 sw=4 et filetype=sh + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/dcut.bash_completion b/scripts/dcut.bash_completion index ed0f22e..211936d 100644 --- a/scripts/dcut.bash_completion +++ b/scripts/dcut.bash_completion @@ -43,3 +43,11 @@ _dcut() } complete -F _dcut -o filenames dcut + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/debchange.bash_completion b/scripts/debchange.bash_completion index 3073cad..9fe00a6 100644 --- a/scripts/debchange.bash_completion +++ b/scripts/debchange.bash_completion @@ -76,3 +76,11 @@ _debchange() } complete -F _debchange debchange dch + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/debdiff.bash_completion b/scripts/debdiff.bash_completion index 24b57c2..39d9f74 100644 --- a/scripts/debdiff.bash_completion +++ b/scripts/debdiff.bash_completion @@ -1,4 +1,4 @@ -# Debian debdiff(1) completion -*- shell-script -*- +# Debian debdiff(1) completion. # Copyright: 2015, Nicholas Bamber <[email protected]> _debdiff() { @@ -84,5 +84,11 @@ _debdiff() return 0 } && complete -F _debdiff debdiff - -# ex: ts=4 sw=4 et filetype=sh + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/debi.bash_completion b/scripts/debi.bash_completion index b144e8c..59244d3 100644 --- a/scripts/debi.bash_completion +++ b/scripts/debi.bash_completion @@ -9,3 +9,11 @@ _debc() return 0 } complete -o dirnames -F _debc debc debi + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/debsign.bash_completion b/scripts/debsign.bash_completion index fdb3c1f..dc8580b 100644 --- a/scripts/debsign.bash_completion +++ b/scripts/debsign.bash_completion @@ -27,3 +27,11 @@ _debsign() } complete -F _debsign -o filenames debsign + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/debuild.bash_completion b/scripts/debuild.bash_completion index 44c6a87..c3b0b57 100644 --- a/scripts/debuild.bash_completion +++ b/scripts/debuild.bash_completion @@ -1,4 +1,4 @@ -# Debian debuild(1) completion -*- shell-script -*- +# Debian debuild(1) completion. # Copyright: 2015, Nicholas Bamber <[email protected]> _debuild() { @@ -89,5 +89,11 @@ _debuild() return 0 } && complete -F _debuild debuild - -# ex: ts=4 sw=4 et filetype=sh + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/dscextract.bash_completion b/scripts/dscextract.bash_completion index a742f28..086f258 100644 --- a/scripts/dscextract.bash_completion +++ b/scripts/dscextract.bash_completion @@ -1,4 +1,4 @@ -# Debian dscextract(1) completion -*- shell-script -*- +# Debian dscextract(1) completion. # Copyright: 2015, Nicholas Bamber <[email protected]> _dscextract() { @@ -20,3 +20,11 @@ _dscextract() return 0 } && complete -F _dscextract dscextract + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/dscverify.bash_completion b/scripts/dscverify.bash_completion index 7c05b08..9578d2e 100644 --- a/scripts/dscverify.bash_completion +++ b/scripts/dscverify.bash_completion @@ -1,4 +1,4 @@ -# Debian dscverify(1) completion -*- shell-script -*- +# Debian dscverify(1) completion. # Copyright: 2015, Nicholas Bamber <[email protected]> _dscverify() { @@ -18,3 +18,11 @@ _dscverify() return 0 } && complete -F _dscverify dscverify + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/licensecheck.bash_completion b/scripts/licensecheck.bash_completion index c9eccbc..f54abe5 100644 --- a/scripts/licensecheck.bash_completion +++ b/scripts/licensecheck.bash_completion @@ -1,4 +1,4 @@ -# Debian licensecheck(1) completion -*- shell-script -*- +# Debian licensecheck(1) completion. # Copyright: 2015, Nicholas Bamber <[email protected]> _licensecheck() { @@ -29,5 +29,11 @@ _licensecheck() return 0 } && complete -F _licensecheck licensecheck - -# ex: ts=4 sw=4 et filetype=sh + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/list-unreleased.bash_completion b/scripts/list-unreleased.bash_completion index 3b38154..d4dc9c0 100644 --- a/scripts/list-unreleased.bash_completion +++ b/scripts/list-unreleased.bash_completion @@ -1 +1,9 @@ complete -W '-c -R' -o filenames -d list-unreleased + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/pkgnames.bash_completion b/scripts/pkgnames.bash_completion index c867015..3c8eafa 100644 --- a/scripts/pkgnames.bash_completion +++ b/scripts/pkgnames.bash_completion @@ -10,3 +10,11 @@ _pkg_names() } complete -F _pkg_names wnpp-alert wnpp-check mk-build-deps rmadison mass-bug debsnap dd-list build-rdeps who-uploads transition-check getbuildlog dcontrol grep-excuses rc-alert whodepends dget pts-subscribe pts-unsubscribe + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/plotchangelog.bash_completion b/scripts/plotchangelog.bash_completion index 81fc6c6..0583361 100644 --- a/scripts/plotchangelog.bash_completion +++ b/scripts/plotchangelog.bash_completion @@ -1,4 +1,4 @@ -# Debian plotchangelog(1) completion -*- shell-script -*- +# Debian plotchangelog(1) completion. # Copyright: 2015, Nicholas Bamber <[email protected]> _plotchangelog() { @@ -19,5 +19,11 @@ _plotchangelog() return 0 } && complete -F _plotchangelog plotchangelog - -# ex: ts=4 sw=4 et filetype=sh + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/uupdate.bash_completion b/scripts/uupdate.bash_completion index 85f536b..009c399 100644 --- a/scripts/uupdate.bash_completion +++ b/scripts/uupdate.bash_completion @@ -30,3 +30,11 @@ _uupdate() } complete -F _uupdate -o filenames uupdate + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : diff --git a/scripts/what-patch.bash_completion b/scripts/what-patch.bash_completion index 3106601..614b258 100644 --- a/scripts/what-patch.bash_completion +++ b/scripts/what-patch.bash_completion @@ -1 +1,9 @@ complete -W '-v' -o filenames -d what-patch + + +# Local variables: +# coding: utf-8 +# mode: shell-script +# indent-tabs-mode: nil +# End: +# vim: fileencoding=utf-8 filetype=sh expandtabs shiftwidth=4 : -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
