Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/glark/files/1.7.4/, app-text/glark/files/1.8.0/
Date: Fri, 11 Aug 2017 03:52:00
Message-Id: 1502423331.5913e9c6d6798fd69afcc7d51a5711981f09fc1f.monsieurp@gentoo
1 commit: 5913e9c6d6798fd69afcc7d51a5711981f09fc1f
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Aug 9 09:25:48 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 11 03:48:51 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5913e9c6
7
8 app-text/glark: remove unused files.
9
10 Closes: https://github.com/gentoo/gentoo/pull/5369
11
12 app-text/glark/files/1.7.4/glark-completion | 33 -----------------------------
13 app-text/glark/files/1.8.0/glark-completion | 33 -----------------------------
14 2 files changed, 66 deletions(-)
15
16 diff --git a/app-text/glark/files/1.7.4/glark-completion b/app-text/glark/files/1.7.4/glark-completion
17 deleted file mode 100644
18 index 2a1c596f63d..00000000000
19 --- a/app-text/glark/files/1.7.4/glark-completion
20 +++ /dev/null
21 @@ -1,33 +0,0 @@
22 -# Author: Ciaran McCreesh <ciaranm@g.o>
23 -#
24 -# completion for glark
25 -
26 -_glark()
27 -{
28 - local cur prev
29 -
30 - COMPREPLY=()
31 - cur=${COMP_WORDS[COMP_CWORD]}
32 - prev=${COMP_WORDS[COMP_CWORD-1]}
33 -
34 - if [[ "${cur}" == -* ]] || [[ ${COMP_CWORD} -eq 1 ]] ; then
35 - COMPREPLY=( $( compgen -W ' --directories --binary-files --basename \
36 - --name --fullname --path --exclude-matching --recurse \
37 - --split-as-path --no-split-as-path --and --before --after \
38 - --file --ignore-case --match-limit --or --range \
39 - --invert-match --word --word-regexp --line-regexp --xor \
40 - --after-context --before-context --context --count \
41 - --file-color --no-filter --grep --no-filename --with-filename \
42 - --files-with-matches --files-without-match --line-number \
43 - --no-line-number --line-number-color --text-color --highlight \
44 - --no-highlight --extract-matches --null --help --config \
45 - --explain --quiet --no-messages --no-quiet --version \
46 - --verbose --label' -- $cur ) )
47 - else
48 - _filedir
49 - fi
50 -}
51 -
52 -complete -o filenames -F _glark glark
53 -
54 -# vim: set ft=sh sw=4 et sts=4 :
55
56 diff --git a/app-text/glark/files/1.8.0/glark-completion b/app-text/glark/files/1.8.0/glark-completion
57 deleted file mode 100644
58 index be1706f6368..00000000000
59 --- a/app-text/glark/files/1.8.0/glark-completion
60 +++ /dev/null
61 @@ -1,33 +0,0 @@
62 -# Author: Ciaran McCreesh <ciaranm@g.o>
63 -#
64 -# completion for glark
65 -
66 -_glark()
67 -{
68 - local cur prev
69 -
70 - COMPREPLY=()
71 - cur=${COMP_WORDS[COMP_CWORD]}
72 - prev=${COMP_WORDS[COMP_CWORD-1]}
73 -
74 - if [[ "${cur}" == -* ]] || [[ ${COMP_CWORD} -eq 1 ]] ; then
75 - COMPREPLY=( $( compgen -W ' --directories --binary-files --basename \
76 - --name --fullname --path --exclude-matching --recurse --size-limit \
77 - --split-as-path --no-split-as-path --and --before --after \
78 - --file --ignore-case --match-limit --or --range \
79 - --invert-match --word --word-regexp --line-regexp --xor \
80 - --after-context --before-context --context --count \
81 - --file-color --no-filter --grep --no-filename --with-filename \
82 - --files-with-matches --files-without-match --line-number \
83 - --no-line-number --line-number-color --text-color --highlight \
84 - --no-highlight --extract-matches --null --help --conf --dump \
85 - --explain --quiet --no-messages --no-quiet --version \
86 - --verbose --label' -- $cur ) )
87 - else
88 - _filedir
89 - fi
90 -}
91 -
92 -complete -o filenames -F _glark glark
93 -
94 -# vim: set ft=sh sw=4 et sts=4 :