diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-08-09 11:25:48 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-08-11 05:48:51 +0200 |
commit | 5913e9c6d6798fd69afcc7d51a5711981f09fc1f (patch) | |
tree | 41201caa0b426051b42e9fe69a2aef62ac7a6a11 /app-text/glark | |
parent | app-emulation/rkt: version bump to 1.28.1 (diff) | |
download | gentoo-5913e9c6d6798fd69afcc7d51a5711981f09fc1f.tar.gz gentoo-5913e9c6d6798fd69afcc7d51a5711981f09fc1f.tar.bz2 gentoo-5913e9c6d6798fd69afcc7d51a5711981f09fc1f.zip |
app-text/glark: remove unused files.
Closes: https://github.com/gentoo/gentoo/pull/5369
Diffstat (limited to 'app-text/glark')
-rw-r--r-- | app-text/glark/files/1.7.4/glark-completion | 33 | ||||
-rw-r--r-- | app-text/glark/files/1.8.0/glark-completion | 33 |
2 files changed, 0 insertions, 66 deletions
diff --git a/app-text/glark/files/1.7.4/glark-completion b/app-text/glark/files/1.7.4/glark-completion deleted file mode 100644 index 2a1c596f63dd..000000000000 --- a/app-text/glark/files/1.7.4/glark-completion +++ /dev/null @@ -1,33 +0,0 @@ -# Author: Ciaran McCreesh <ciaranm@gentoo.org> -# -# completion for glark - -_glark() -{ - local cur prev - - COMPREPLY=() - cur=${COMP_WORDS[COMP_CWORD]} - prev=${COMP_WORDS[COMP_CWORD-1]} - - if [[ "${cur}" == -* ]] || [[ ${COMP_CWORD} -eq 1 ]] ; then - COMPREPLY=( $( compgen -W ' --directories --binary-files --basename \ - --name --fullname --path --exclude-matching --recurse \ - --split-as-path --no-split-as-path --and --before --after \ - --file --ignore-case --match-limit --or --range \ - --invert-match --word --word-regexp --line-regexp --xor \ - --after-context --before-context --context --count \ - --file-color --no-filter --grep --no-filename --with-filename \ - --files-with-matches --files-without-match --line-number \ - --no-line-number --line-number-color --text-color --highlight \ - --no-highlight --extract-matches --null --help --config \ - --explain --quiet --no-messages --no-quiet --version \ - --verbose --label' -- $cur ) ) - else - _filedir - fi -} - -complete -o filenames -F _glark glark - -# vim: set ft=sh sw=4 et sts=4 : diff --git a/app-text/glark/files/1.8.0/glark-completion b/app-text/glark/files/1.8.0/glark-completion deleted file mode 100644 index be1706f63686..000000000000 --- a/app-text/glark/files/1.8.0/glark-completion +++ /dev/null @@ -1,33 +0,0 @@ -# Author: Ciaran McCreesh <ciaranm@gentoo.org> -# -# completion for glark - -_glark() -{ - local cur prev - - COMPREPLY=() - cur=${COMP_WORDS[COMP_CWORD]} - prev=${COMP_WORDS[COMP_CWORD-1]} - - if [[ "${cur}" == -* ]] || [[ ${COMP_CWORD} -eq 1 ]] ; then - COMPREPLY=( $( compgen -W ' --directories --binary-files --basename \ - --name --fullname --path --exclude-matching --recurse --size-limit \ - --split-as-path --no-split-as-path --and --before --after \ - --file --ignore-case --match-limit --or --range \ - --invert-match --word --word-regexp --line-regexp --xor \ - --after-context --before-context --context --count \ - --file-color --no-filter --grep --no-filename --with-filename \ - --files-with-matches --files-without-match --line-number \ - --no-line-number --line-number-color --text-color --highlight \ - --no-highlight --extract-matches --null --help --conf --dump \ - --explain --quiet --no-messages --no-quiet --version \ - --verbose --label' -- $cur ) ) - else - _filedir - fi -} - -complete -o filenames -F _glark glark - -# vim: set ft=sh sw=4 et sts=4 : |