Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/command-t/
Date: Sun, 08 May 2016 02:48:39
Message-Id: 1462675644.5e1fa77dcd66b9703db3f4f6a95ef4c18f07ccae.radhermit@gentoo
1 commit: 5e1fa77dcd66b9703db3f4f6a95ef4c18f07ccae
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 8 02:40:27 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sun May 8 02:47:24 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e1fa77d
7
8 app-vim/command-t: version bump to 3.0.2
9
10 app-vim/command-t/Manifest | 1 +
11 app-vim/command-t/command-t-3.0.2.ebuild | 43 ++++++++++++++++++++++++++++++++
12 2 files changed, 44 insertions(+)
13
14 diff --git a/app-vim/command-t/Manifest b/app-vim/command-t/Manifest
15 index d013016..6033567 100644
16 --- a/app-vim/command-t/Manifest
17 +++ b/app-vim/command-t/Manifest
18 @@ -1,2 +1,3 @@
19 DIST command-t-1.11.4.tar.bz2 43107 SHA256 8b3b9b70397621d23e74c817f5807319f769253cf82de471913294a8e702ab62 SHA512 d3e35e6c0c144338c3966c6b57822193080ed1ef181ccd2d6ecd480dbe023788d33d82518a8461a7525ee3d4ca9fc643beb250e18aa7cfd691c6bc6aad4a6644 WHIRLPOOL e92fe0ae2b8ec1e5e029be21fd02142b241321e3a15fed5e6e522f64e55daf0d3eb348eedfd0bdad712d130ced10b3116328428379f2ae92f60304b2379c676c
20 DIST command-t-1.13.tar.bz2 45385 SHA256 f5674a4c9dfaf8364deb694d2c4a579520a3921e8378dee32acc0849e1576c1f SHA512 dfa2905d0e9473b847a33c6721598f67e9354c817adc21c4a18bcb63b880f1808f1c7ebee2500c7ae48537b9a1a28c1293f421b06715b80fb54b983a56778002 WHIRLPOOL 3692a85c57690ddddee4978e5189fade9bc1a5f723cf63e22247ca85e9170aa3a23f85ad61cb5c5fca353ac2e2b9560140397fc7b1537653ec8a4ba617e9bb50
21 +DIST command-t-3.0.2.tar.gz 69434 SHA256 f849ef6a4bcf2fa53f4a7f76333a12c0a29c5eac13b36f1a79fdbee0ceea39ac SHA512 35c90a08d807dbbdc9428c1ca35d085bea16111f232063a37fc7ffe954549a53f7cb4e1ea80cf8da7e9dfb6159745af361843a3f15477e80c8f81de51af2ddca WHIRLPOOL c01be35bb9a440eef5b5bf5f47612f3432e58a7ba1bb3f1e0f54b6421d3983d5f39f198e6bb799866c953ed358e25e381c2e915f1b4935a775038bab592df6a4
22
23 diff --git a/app-vim/command-t/command-t-3.0.2.ebuild b/app-vim/command-t/command-t-3.0.2.ebuild
24 new file mode 100644
25 index 0000000..cb5ad97
26 --- /dev/null
27 +++ b/app-vim/command-t/command-t-3.0.2.ebuild
28 @@ -0,0 +1,43 @@
29 +# Copyright 1999-2016 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +# $Id$
32 +
33 +EAPI=5
34 +USE_RUBY="ruby20 ruby21 ruby22 ruby23"
35 +
36 +inherit vim-plugin ruby-ng
37 +
38 +DESCRIPTION="vim plugin: fast file navigation for vim"
39 +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3025 https://github.com/wincent/command-t"
40 +SRC_URI="https://github.com/wincent/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +LICENSE="BSD-2"
42 +KEYWORDS="~amd64 ~x86"
43 +
44 +VIM_PLUGIN_HELPFILES="${PN}.txt"
45 +
46 +RDEPEND="|| ( app-editors/vim[ruby] app-editors/gvim[ruby] )"
47 +
48 +each_ruby_configure() {
49 + cd ruby/${PN} || die
50 + ${RUBY} extconf.rb || die "extconf.rb failed"
51 +}
52 +
53 +each_ruby_compile() {
54 + cd ruby/${PN} || die
55 + emake V=1
56 + rm *.o *.c *.h *.log extconf.rb depend Makefile || die
57 +}
58 +
59 +each_ruby_install() {
60 + local sitelibdir=$(ruby_rbconfig_value "sitelibdir")
61 + insinto "${sitelibdir}"
62 + doins -r ruby/*
63 +}
64 +
65 +all_ruby_install() {
66 + rm Gemfile* *.gemspec Rakefile LICENSE README.md || die
67 + rm -r appstream bin fixtures data ruby spec vendor || die
68 + find "${S}" -name .gitignore -delete || die
69 +
70 + vim-plugin_src_install
71 +}