From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C9413158086 for ; Mon, 18 Oct 2021 05:52:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C576CE089C; Mon, 18 Oct 2021 05:52:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABE69E089C for ; Mon, 18 Oct 2021 05:52:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 833CC343681 for ; Mon, 18 Oct 2021 05:52:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2449162 for ; Mon, 18 Oct 2021 05:52:13 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1634536323.62ff1bc276577517184ac5c15b8f2d8ce5a4ee97.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/command-t/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/command-t/command-t-5.0.3.ebuild X-VCS-Directories: app-vim/command-t/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 62ff1bc276577517184ac5c15b8f2d8ce5a4ee97 X-VCS-Branch: master Date: Mon, 18 Oct 2021 05:52:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5c274021-fa5a-460e-bcee-b3d94e931105 X-Archives-Hash: 7fc5e1fba4e7f7ef1e7fe9017a993647 commit: 62ff1bc276577517184ac5c15b8f2d8ce5a4ee97 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 17 08:55:30 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Oct 18 05:52:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62ff1bc2 app-vim/command-t: cleanup Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> app-vim/command-t/command-t-5.0.3.ebuild | 47 -------------------------------- 1 file changed, 47 deletions(-) diff --git a/app-vim/command-t/command-t-5.0.3.ebuild b/app-vim/command-t/command-t-5.0.3.ebuild deleted file mode 100644 index 0783b39f126..00000000000 --- a/app-vim/command-t/command-t-5.0.3.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby23 ruby24 ruby25 ruby26" - -inherit vim-plugin ruby-ng - -DESCRIPTION="vim plugin: fast file navigation for vim" -HOMEPAGE="https://vim.sourceforge.io/scripts/script.php?script_id=3025 https://github.com/wincent/command-t" -SRC_URI="https://github.com/wincent/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="BSD-2" -KEYWORDS="~amd64 ~x86" - -VIM_PLUGIN_HELPFILES="${PN}.txt" - -RDEPEND="|| ( app-editors/vim[ruby] app-editors/gvim[ruby] )" - -all_ruby_prepare() { - find "${S}" -name .gitignore -delete || die -} - -each_ruby_configure() { - cd ruby/${PN}/ext/${PN} || die - ${RUBY} extconf.rb || die "extconf.rb failed" -} - -each_ruby_compile() { - cd ruby/${PN}/ext/${PN} || die - emake V=1 - rm *.o *.c *.h *.log extconf.rb depend Makefile || die -} - -each_ruby_install() { - local sitelibdir=$(ruby_rbconfig_value "sitelibdir") - insinto "${sitelibdir}" - doins -r ruby/${PN}/{ext,lib}/* -} - -all_ruby_install() { - rm -r appstream bin fixtures data ruby/${PN}/{ext,lib,*.gemspec} spec vendor || die - - vim-plugin_src_install - - # make sure scripts are executable - chmod +x "${ED}"/usr/share/vim/vimfiles/ruby/${PN}/bin/* || die -}