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-misc/vifm/
Date: Wed, 27 Nov 2019 23:29:16
Message-Id: 1574897347.f0f1c9bb9695ba8835f56fb7c010b27f12da34d0.monsieurp@gentoo
1 commit: f0f1c9bb9695ba8835f56fb7c010b27f12da34d0
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 27 23:27:55 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 27 23:29:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0f1c9bb
7
8 app-misc/vifm: clean up old.
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 app-misc/vifm/Manifest | 2 -
14 app-misc/vifm/vifm-0.10.ebuild | 102 --------------------------------------
15 app-misc/vifm/vifm-0.9.1.ebuild | 106 ----------------------------------------
16 3 files changed, 210 deletions(-)
17
18 diff --git a/app-misc/vifm/Manifest b/app-misc/vifm/Manifest
19 index 3dabcccfb47..ff1f5a8facc 100644
20 --- a/app-misc/vifm/Manifest
21 +++ b/app-misc/vifm/Manifest
22 @@ -1,3 +1 @@
23 DIST vifm-0.10.1.tar.bz2 1097998 BLAKE2B b9712d61a00761986aa54d9bc561a5125ae96f751e8ba2844adae91577ba093b1a4860071b57ab81dbed3eb52c2c91ce3316831fa44a06436ef5fa81d2739f3a SHA512 8116c4c31b01a9453684a90b26b87a33e5ec2cd2930162869507f673319d231f44e464d1056239f647531c3be5bc9bcf92045c79e5d545f9c75be11c7fe03ea2
24 -DIST vifm-0.10.tar.bz2 1054361 BLAKE2B 81ec964b3bf236764976bcedb84c922eca0da650922b71fc1d6ef107ce51af9a4b1155fb699f800cca452e644345568af4cf17170dc15509393df529336b3959 SHA512 53f45824ffdbd987fecd3a7f7b6d6c5da036aeb3ddbb219d7665a63cae55d68db608239055b18b88a721b39002fcf57cbfd88aa366cffb02ca5f2eb94a206eb2
25 -DIST vifm-0.9.1.tar.bz2 1002758 BLAKE2B 8eb9cc4c299877485bb4a44d95fe2412e196686399a6246bc1b5036dbc34ecbcf1cd43d1d55bdacdcc099a65e03f589f360d39ee38da4e12bff0a4bfcbdd180b SHA512 a30457329bf9501efd7e9e0853107b5ecd653ab70e7081764677d035bd0f61876bc96b35bea5258153d68b7be075091168331be79d7398f94353f73bbf78933d
26
27 diff --git a/app-misc/vifm/vifm-0.10.ebuild b/app-misc/vifm/vifm-0.10.ebuild
28 deleted file mode 100644
29 index 24a2c7f576d..00000000000
30 --- a/app-misc/vifm/vifm-0.10.ebuild
31 +++ /dev/null
32 @@ -1,102 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit autotools vim-doc versionator xdg-utils
39 -
40 -MY_P=$(replace_version_separator 4 '-' ${PF})
41 -
42 -DESCRIPTION="Console file manager with vi(m)-like keybindings"
43 -HOMEPAGE="https://vifm.info/"
44 -SRC_URI="mirror://sourceforge/vifm/${MY_P}.tar.bz2"
45 -
46 -LICENSE="GPL-2"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~ppc ~x86"
49 -IUSE="X developer +extended-keys gtk +magic vim vim-syntax"
50 -
51 -DEPEND="
52 - >=sys-libs/ncurses-5.9-r3:0
53 - magic? ( sys-apps/file )
54 - gtk? ( x11-libs/gtk+:2 )
55 - X? ( x11-libs/libX11 )
56 -"
57 -RDEPEND="
58 - ${DEPEND}
59 - vim? ( || ( app-editors/vim app-editors/gvim ) )
60 - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
61 -"
62 -
63 -DOCS="AUTHORS FAQ NEWS README TODO"
64 -
65 -S="${WORKDIR}/${MY_P}"
66 -
67 -src_prepare() {
68 - default
69 - sed -i -e '/stat.h/a#include <sys/sysmacros.h>' "${S}/src/modes/file_info.c" \
70 - || die
71 - eautoreconf
72 -}
73 -
74 -src_configure() {
75 - econf \
76 - $(use_enable developer) \
77 - $(use_enable extended-keys) \
78 - $(use_with magic libmagic) \
79 - $(use_with gtk) \
80 - $(use_with X X11)
81 -}
82 -
83 -src_compile() {
84 - default
85 -}
86 -
87 -src_install() {
88 - emake DESTDIR="${D}" install
89 - dodoc ${DOCS}
90 -
91 - if use vim; then
92 - local t
93 - for t in app plugin; do
94 - insinto /usr/share/vim/vimfiles/"${t}"
95 - doins "${S}"/data/vim/doc/"${t}"/"${PN}"*
96 - done
97 - fi
98 -
99 - if use vim-syntax; then
100 - local t
101 - for t in ftdetect ftplugin syntax; do
102 - insinto /usr/share/vim/vimfiles/"${t}"
103 - doins "${S}"/data/vim/"${t}"/"${PN}".vim
104 - done
105 - fi
106 -}
107 -
108 -src_test() {
109 - emake check
110 -}
111 -
112 -pkg_postinst() {
113 - xdg_desktop_database_update
114 - if use vim; then
115 - update_vim_helptags
116 -
117 - if [[ -n ${REPLACING_VERSIONS} ]]; then
118 - elog
119 - elog "You don't need to copy or link any files for"
120 - elog " the vim plugin and documentation to work anymore."
121 - elog "If you copied any vifm files to ~/.vim/ manually"
122 - elog " in earlier vifm versions, please delete them."
123 - fi
124 - elog
125 - elog "To use vim in vifm to view the documentation"
126 - elog " edit ~/.vifm/vifmrc and set vimhelp instead of novimhelp"
127 - elog
128 - fi
129 -}
130 -
131 -pkg_postrm() {
132 - xdg_desktop_database_update
133 - use vim && update_vim_helptags
134 -}
135
136 diff --git a/app-misc/vifm/vifm-0.9.1.ebuild b/app-misc/vifm/vifm-0.9.1.ebuild
137 deleted file mode 100644
138 index 6d971785f15..00000000000
139 --- a/app-misc/vifm/vifm-0.9.1.ebuild
140 +++ /dev/null
141 @@ -1,106 +0,0 @@
142 -# Copyright 1999-2018 Gentoo Foundation
143 -# Distributed under the terms of the GNU General Public License v2
144 -
145 -EAPI=6
146 -
147 -inherit autotools vim-doc versionator xdg-utils
148 -
149 -MY_P=$(replace_version_separator 4 '-' ${PF})
150 -
151 -DESCRIPTION="Console file manager with vi(m)-like keybindings"
152 -HOMEPAGE="https://vifm.info/"
153 -SRC_URI="mirror://sourceforge/vifm/${MY_P}.tar.bz2"
154 -
155 -LICENSE="GPL-2"
156 -SLOT="0"
157 -KEYWORDS="amd64 ppc x86"
158 -IUSE="X developer +extended-keys gtk +magic vim vim-syntax"
159 -
160 -DEPEND="
161 - >=sys-libs/ncurses-5.9-r3:0
162 - magic? ( sys-apps/file )
163 - gtk? ( x11-libs/gtk+:2 )
164 - X? ( x11-libs/libX11 )
165 -"
166 -RDEPEND="
167 - ${DEPEND}
168 - vim? ( || ( app-editors/vim app-editors/gvim ) )
169 - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
170 -"
171 -
172 -PATCHES=(
173 - "${FILESDIR}/${P}-fix-ncurses-linking.patch"
174 -)
175 -
176 -DOCS="AUTHORS FAQ NEWS README TODO"
177 -
178 -S="${WORKDIR}/${MY_P}"
179 -
180 -src_prepare() {
181 - default
182 - sed -i -e '/stat.h/a#include <sys/sysmacros.h>' "${S}/src/modes/file_info.c" \
183 - || die
184 - eautoreconf
185 -}
186 -
187 -src_configure() {
188 - econf \
189 - $(use_enable developer) \
190 - $(use_enable extended-keys) \
191 - $(use_with magic libmagic) \
192 - $(use_with gtk) \
193 - $(use_with X X11)
194 -}
195 -
196 -src_compile() {
197 - default
198 -}
199 -
200 -src_install() {
201 - emake DESTDIR="${D}" install
202 - dodoc ${DOCS}
203 -
204 - if use vim; then
205 - local t
206 - for t in app plugin; do
207 - insinto /usr/share/vim/vimfiles/"${t}"
208 - doins "${S}"/data/vim/doc/"${t}"/"${PN}"*
209 - done
210 - fi
211 -
212 - if use vim-syntax; then
213 - local t
214 - for t in ftdetect ftplugin syntax; do
215 - insinto /usr/share/vim/vimfiles/"${t}"
216 - doins "${S}"/data/vim/"${t}"/"${PN}".vim
217 - done
218 - fi
219 -}
220 -
221 -src_test() {
222 - emake check
223 -}
224 -
225 -pkg_postinst() {
226 - xdg_desktop_database_update
227 - if use vim; then
228 - update_vim_helptags
229 -
230 - if [[ -n ${REPLACING_VERSIONS} ]]; then
231 - elog
232 - elog "You don't need to copy or link any files for"
233 - elog " the vim plugin and documentation to work anymore."
234 - elog "If you copied any vifm files to ~/.vim/ manually"
235 - elog " in earlier vifm versions, please delete them."
236 - fi
237 - elog
238 - elog "To use vim in vifm to view the documentation"
239 - elog " edit ~/.vifm/vifmrc and set vimhelp instead of novimhelp"
240 - elog
241 - fi
242 -}
243 -
244 -pkg_postrm() {
245 - xdg_desktop_database_update
246 - use vim && update_vim_helptags
247 -}