Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/neovim-ruby-client/
Date: Sun, 31 May 2020 08:09:31
Message-Id: 1590912534.0010a164256ff758fd14bb41304c4253afe7841d.graaff@gentoo
1 commit: 0010a164256ff758fd14bb41304c4253afe7841d
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 07:49:38 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 08:08:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0010a164
7
8 dev-ruby/neovim-ruby-client: cleanup
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 .../neovim-ruby-client-0.8.1.ebuild | 32 ----------------------
14 1 file changed, 32 deletions(-)
15
16 diff --git a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.8.1.ebuild b/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.8.1.ebuild
17 deleted file mode 100644
18 index da03866f0f5..00000000000
19 --- a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.8.1.ebuild
20 +++ /dev/null
21 @@ -1,32 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -USE_RUBY="ruby24 ruby25 ruby26"
27 -
28 -RUBY_FAKEGEM_NAME="neovim"
29 -RUBY_FAKEGEM_EXTRADOC="README.md"
30 -
31 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
32 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
33 -
34 -inherit ruby-fakegem
35 -
36 -DESCRIPTION="Ruby bindings for Neovim"
37 -HOMEPAGE="https://github.com/alexgenco/neovim-ruby"
38 -
39 -LICENSE="MIT"
40 -SLOT="0"
41 -KEYWORDS="~amd64 ~arm ~x86"
42 -
43 -ruby_add_rdepend "
44 - >=dev-ruby/msgpack-1.1:0
45 - =dev-ruby/multi_json-1*
46 -"
47 -
48 -all_ruby_prepare() {
49 - sed -i -e '/\(bundler\|pry\)/ s:^:#:' spec/helper.rb || die
50 -
51 - # Avoid tests that result in a unix socket path that is too long
52 - sed -i -e '/\(establishes an RPC connection\|sets appropriate client info\)/askip "socket path length"' spec/neovim_spec.rb || die
53 -}