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: Tue, 16 Apr 2019 20:43:37
Message-Id: 1555446974.b63dfb32fe20a08e12a665ebb4e51a5f6d831a14.radhermit@gentoo
1 commit: b63dfb32fe20a08e12a665ebb4e51a5f6d831a14
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 13 04:33:41 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 16 20:36:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b63dfb32
7
8 app-vim/command-t: remove old
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 app-vim/command-t/Manifest | 2 --
13 app-vim/command-t/command-t-5.0.1.ebuild | 48 --------------------------------
14 app-vim/command-t/command-t-5.0.2.ebuild | 48 --------------------------------
15 3 files changed, 98 deletions(-)
16
17 diff --git a/app-vim/command-t/Manifest b/app-vim/command-t/Manifest
18 index 816584c252e..c9be2b74f2b 100644
19 --- a/app-vim/command-t/Manifest
20 +++ b/app-vim/command-t/Manifest
21 @@ -1,3 +1 @@
22 -DIST command-t-5.0.1.tar.gz 81781 BLAKE2B 5d606892d9653c259525b6778cd72309da898fae787964fd4d1c9a6ebfd91e467e1f88f5756d7966c4866f721912164f0bf852efdd19209ce779a56725e2adbf SHA512 54262f4628bbef8a11878a8593510af566dabf35dd70005dc90e4abb4c4e9aebde5dc7d08d808c944980017f8f35d7e9723b0032ccde5ab6d2d2fae38e1c632d
23 -DIST command-t-5.0.2.tar.gz 83601 BLAKE2B 0391f010252fcd8b48909ad4a8dd504e6cbb74f1a2f776d719a8179f0d44299bfddf8161a2961c9089cbb3a4c4c944daa4adb26927f27c4c3beebceb0b938f53 SHA512 f8c8356231c3fb0f3a91cb61f534acac4dd401721a940c6ea045ada287d29395923eb46b1cb4f55b8254000f10eea9970841531abb2b110992180a1edbd66b81
24 DIST command-t-5.0.3.tar.gz 84019 BLAKE2B fec893aa698a1d1bfc86cf7bd08562f19b54e58d81b7650e50acdf17bfcec54f78aae38d05ca5f93ae60c981a6e606d5c68c008be3508c7d41e74aa9f064943a SHA512 588ee1516039e6cd45210de43307c02259fed29cc7610c222fe705cdf1d5938f51f823d41b546a36320da31db12e902363867da91b18fe56ea09c1efe2bb51fb
25
26 diff --git a/app-vim/command-t/command-t-5.0.1.ebuild b/app-vim/command-t/command-t-5.0.1.ebuild
27 deleted file mode 100644
28 index 700b5dbef1e..00000000000
29 --- a/app-vim/command-t/command-t-5.0.1.ebuild
30 +++ /dev/null
31 @@ -1,48 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -USE_RUBY="ruby22 ruby23 ruby24"
37 -
38 -inherit vim-plugin ruby-ng
39 -
40 -DESCRIPTION="vim plugin: fast file navigation for vim"
41 -HOMEPAGE="https://vim.sourceforge.io/scripts/script.php?script_id=3025 https://github.com/wincent/command-t"
42 -SRC_URI="https://github.com/wincent/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -LICENSE="BSD-2"
44 -KEYWORDS="~amd64 ~x86"
45 -
46 -VIM_PLUGIN_HELPFILES="${PN}.txt"
47 -
48 -RDEPEND="|| ( app-editors/vim[ruby] app-editors/gvim[ruby] )"
49 -
50 -all_ruby_prepare() {
51 - find "${S}" -name .gitignore -delete || die
52 -}
53 -
54 -each_ruby_configure() {
55 - cd ruby/${PN}/ext/${PN} || die
56 - ${RUBY} extconf.rb || die "extconf.rb failed"
57 -}
58 -
59 -each_ruby_compile() {
60 - cd ruby/${PN}/ext/${PN} || die
61 - emake V=1
62 - rm *.o *.c *.h *.log extconf.rb depend Makefile || die
63 -}
64 -
65 -each_ruby_install() {
66 - local sitelibdir=$(ruby_rbconfig_value "sitelibdir")
67 - insinto "${sitelibdir}"
68 - doins -r ruby/${PN}/{ext,lib}/*
69 -}
70 -
71 -all_ruby_install() {
72 - rm Gemfile* Rakefile LICENSE README.md || die
73 - rm -r appstream bin fixtures data ruby/${PN}/{ext,lib,*.gemspec} spec vendor || die
74 -
75 - vim-plugin_src_install
76 -
77 - # make sure scripts are executable
78 - chmod +x "${ED}"/usr/share/vim/vimfiles/ruby/${PN}/bin/* || die
79 -}
80
81 diff --git a/app-vim/command-t/command-t-5.0.2.ebuild b/app-vim/command-t/command-t-5.0.2.ebuild
82 deleted file mode 100644
83 index 82f1973dda5..00000000000
84 --- a/app-vim/command-t/command-t-5.0.2.ebuild
85 +++ /dev/null
86 @@ -1,48 +0,0 @@
87 -# Copyright 1999-2017 Gentoo Foundation
88 -# Distributed under the terms of the GNU General Public License v2
89 -
90 -EAPI=6
91 -USE_RUBY="ruby22 ruby23 ruby24"
92 -
93 -inherit vim-plugin ruby-ng
94 -
95 -DESCRIPTION="vim plugin: fast file navigation for vim"
96 -HOMEPAGE="https://vim.sourceforge.io/scripts/script.php?script_id=3025 https://github.com/wincent/command-t"
97 -SRC_URI="https://github.com/wincent/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
98 -LICENSE="BSD-2"
99 -KEYWORDS="~amd64 ~x86"
100 -
101 -VIM_PLUGIN_HELPFILES="${PN}.txt"
102 -
103 -RDEPEND="|| ( app-editors/vim[ruby] app-editors/gvim[ruby] )"
104 -
105 -all_ruby_prepare() {
106 - find "${S}" -name .gitignore -delete || die
107 -}
108 -
109 -each_ruby_configure() {
110 - cd ruby/${PN}/ext/${PN} || die
111 - ${RUBY} extconf.rb || die "extconf.rb failed"
112 -}
113 -
114 -each_ruby_compile() {
115 - cd ruby/${PN}/ext/${PN} || die
116 - emake V=1
117 - rm *.o *.c *.h *.log extconf.rb depend Makefile || die
118 -}
119 -
120 -each_ruby_install() {
121 - local sitelibdir=$(ruby_rbconfig_value "sitelibdir")
122 - insinto "${sitelibdir}"
123 - doins -r ruby/${PN}/{ext,lib}/*
124 -}
125 -
126 -all_ruby_install() {
127 - rm Gemfile* Rakefile LICENSE README.md || die
128 - rm -r appstream bin fixtures data ruby/${PN}/{ext,lib,*.gemspec} spec vendor || die
129 -
130 - vim-plugin_src_install
131 -
132 - # make sure scripts are executable
133 - chmod +x "${ED}"/usr/share/vim/vimfiles/ruby/${PN}/bin/* || die
134 -}