public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mikle Kolyada" <zlogene@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/vifm/
Date: Sun, 20 May 2018 16:47:03 +0000 (UTC)	[thread overview]
Message-ID: <1526834740.c8a6b5fcbe66ba039c856ed9d661e7da5b1b3057.zlogene@gentoo> (raw)

commit:     c8a6b5fcbe66ba039c856ed9d661e7da5b1b3057
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 20 16:45:40 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 20 16:45:40 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8a6b5fc

app-misc/vifm: Drop old (EAPI=4; base.eclass)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-misc/vifm/Manifest          |  1 -
 app-misc/vifm/metadata.xml      |  2 --
 app-misc/vifm/vifm-0.7.2.ebuild | 64 -----------------------------------------
 3 files changed, 67 deletions(-)

diff --git a/app-misc/vifm/Manifest b/app-misc/vifm/Manifest
index 80251a279bd..324ba2e18bc 100644
--- a/app-misc/vifm/Manifest
+++ b/app-misc/vifm/Manifest
@@ -1,3 +1,2 @@
-DIST vifm-0.7.2.tar.bz2 468086 BLAKE2B a83b1f43eb3f6e47afd5a7c810741468857c602b80cad5c91d2033eea9e1f1efb09e19ca7b02f39e93f8f7186b4cb6fb0627f98a30c054a0d7d71d1b454698d8 SHA512 24a5ad44cecd01f489b95008f0b98ad6cd63656bc7fe4a888101f369f9b258cb87b8025efac30237fbaebc7aff14d173d02118839312017276f3f6b62ea4a3b9
 DIST vifm-0.9.1.tar.bz2 1002758 BLAKE2B 8eb9cc4c299877485bb4a44d95fe2412e196686399a6246bc1b5036dbc34ecbcf1cd43d1d55bdacdcc099a65e03f589f360d39ee38da4e12bff0a4bfcbdd180b SHA512 a30457329bf9501efd7e9e0853107b5ecd653ab70e7081764677d035bd0f61876bc96b35bea5258153d68b7be075091168331be79d7398f94353f73bbf78933d
 DIST vifm-0.9.tar.bz2 971539 BLAKE2B 5d6dd8c399e38886ab3e2d548b93492bf31b464e5661c6f6d54504701bf1eab8338155a9ddc9b220c4cb2a67417d5622094e9ffb717ddf594984fe475214af60 SHA512 5ae2b03e672bd9a7f95a5c59141dabac8bc7946a4e307d6a3df70bdb52e1f7665b960a3d20709c811cbfbcf76f7836d23b5edb191968e5277fb705a291ab3a9a

diff --git a/app-misc/vifm/metadata.xml b/app-misc/vifm/metadata.xml
index 3ed17ddd9fc..564dc1b9462 100644
--- a/app-misc/vifm/metadata.xml
+++ b/app-misc/vifm/metadata.xml
@@ -17,13 +17,11 @@
 	conjunto de órdenes.
 	</longdescription>
 	<use>
-		<flag name="compatibility">Compatibility with previous versions of vifm</flag>
 		<flag name="developer">Enable features of interest to developers</flag>
 		<flag name="extended-keys">Support for extended keys (arrows, home etc)</flag>
 		<flag name="gtk">Use gtk+ to determine mimetypes</flag>
 		<flag name="magic">Use libmagic to determine mimetypes</flag>
 		<flag name="vim">Install the vifm vim plugin and vim-compatible documentation</flag>
-		<flag name="vim-plugin">Install the vifm vim plugin</flag>
 		<flag name="vim-syntax">Pulls in related vim syntax scripts</flag>
 		<flag name="X">Add support for X11</flag>
 	</use>

diff --git a/app-misc/vifm/vifm-0.7.2.ebuild b/app-misc/vifm/vifm-0.7.2.ebuild
deleted file mode 100644
index 1d2fab2e4b8..00000000000
--- a/app-misc/vifm/vifm-0.7.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit base
-
-DESCRIPTION="Console file manager with vi(m)-like keybindings"
-HOMEPAGE="http://vifm.info/"
-SRC_URI="mirror://sourceforge/vifm/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc s390 x86"
-IUSE="+compatibility +extended-keys +magic vim-plugin vim-syntax"
-
-DEPEND="
-	>=sys-libs/ncurses-5.7-r7
-	magic? ( sys-apps/file )
-"
-RDEPEND="
-	${DEPEND}
-	vim-plugin? ( >=app-editors/vim-7.3 )
-	vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
-"
-
-DOCS=( AUTHORS FAQ NEWS README TODO )
-
-S="${WORKDIR}"
-
-src_configure() {
-	econf \
-		$(use_enable compatibility compatibility-mode) \
-		$(use_enable extended-keys) \
-		$(use_with magic libmagic)
-}
-
-src_install() {
-	base_src_install
-
-	if use vim-syntax; then
-		local t
-		for t in ftdetect ftplugin syntax; do
-			insinto /usr/share/vim/vimfiles/"${t}"
-			doins "${S}"/data/vim/"${t}"/"${PN}".vim
-		done
-	fi
-	if use vim-plugin; then
-		local t
-		for t in doc plugin; do
-			insinto /usr/share/vim/vimfiles/"${t}"
-			doins "${S}"/data/vim/"${t}"/"${PN}".*
-		done
-	fi
-}
-
-pkg_postinst() {
-	elog "To use vim to view the vifm help, copy /usr/share/${P}/vifm.txt"
-	elog "	to ~/.vim/doc/ and run ':helptags ~/.vim/doc' in vim,"
-	elog "then edit ~/.vifm/vifmrc${PV/a/} and set USE_VIM_HELP=1"
-	elog ""
-	elog "To use the vifm plugin in vim, copy /usr/share/${P}/vifm.vim to"
-	elog "	/usr/share/vim/vimXX/"
-}


             reply	other threads:[~2018-05-20 16:47 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-20 16:47 Mikle Kolyada [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-09  0:06 [gentoo-commits] repo/gentoo:master commit in: app-misc/vifm/ Jakov Smolić
2024-10-06  8:26 Sam James
2024-10-06  7:59 Sam James
2024-09-04 10:53 Petr Vaněk
2024-04-30 22:56 Sam James
2024-04-30 22:56 Sam James
2024-04-30 22:55 Sam James
2023-05-05  4:39 Sam James
2023-05-05  4:39 Sam James
2022-06-30 18:44 Sam James
2022-06-30 18:44 Sam James
2022-06-11  5:36 Sam James
2022-02-27 15:36 Patrice Clement
2021-10-19  0:56 Sam James
2021-03-21 19:43 Patrice Clement
2021-01-18 11:36 David Seifert
2021-01-08 10:36 Sam James
2021-01-07 16:52 Sam James
2020-12-28 11:50 David Seifert
2019-11-27 23:29 Patrice Clement
2019-11-27 23:29 Patrice Clement
2019-10-01 21:38 Patrice Clement
2019-08-11  8:13 Michał Górny
2019-05-23 20:21 Patrice Clement
2018-11-13 19:20 José María Alonso
2018-11-13  8:40 José María Alonso
2018-05-25 23:58 Thomas Deutschmann
2018-05-24 14:31 Agostino Sarubbo
2018-05-20 16:47 Mikle Kolyada
2018-04-07 15:30 José María Alonso
2018-02-05 21:44 José María Alonso
2018-01-27 18:56 José María Alonso
2017-12-03 19:29 José María Alonso
2017-10-15 12:53 Sergei Trofimovich
2017-08-29 23:16 Thomas Deutschmann
2017-07-31 12:56 Tobias Klausmann
2017-06-21 11:36 José María Alonso
2017-06-20 15:01 José María Alonso
2017-04-06 18:06 José María Alonso
2016-08-15 16:29 José María Alonso
2016-08-13 20:50 José María Alonso
2016-07-06  9:23 Agostino Sarubbo
2016-06-25 20:14 Agostino Sarubbo
2016-04-28 11:14 José María Alonso
2016-03-26 16:39 Agostino Sarubbo
2016-03-04 16:37 José María Alonso
2016-02-23 11:00 José María Alonso
2016-02-22 21:41 José María Alonso
2016-01-09 19:48 José María Alonso
2015-09-20  9:30 Agostino Sarubbo
2015-09-06 13:25 Agostino Sarubbo
2015-08-26 10:43 Agostino Sarubbo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1526834740.c8a6b5fcbe66ba039c856ed9d661e7da5b1b3057.zlogene@gentoo \
    --to=zlogene@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox