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-util/protobuf-cucumber/
Date: Fri, 27 Aug 2021 07:36:52
Message-Id: 1630049805.a6a234de93529a3d79949b5ea713f632791cd3ce.graaff@gentoo
1 commit: a6a234de93529a3d79949b5ea713f632791cd3ce
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 27 07:24:31 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 27 07:36:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6a234de
7
8 dev-util/protobuf-cucumber: cleanup
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 .../protobuf-cucumber-3.10.8.ebuild | 35 ----------------------
14 1 file changed, 35 deletions(-)
15
16 diff --git a/dev-util/protobuf-cucumber/protobuf-cucumber-3.10.8.ebuild b/dev-util/protobuf-cucumber/protobuf-cucumber-3.10.8.ebuild
17 deleted file mode 100644
18 index 705345da3cf..00000000000
19 --- a/dev-util/protobuf-cucumber/protobuf-cucumber-3.10.8.ebuild
20 +++ /dev/null
21 @@ -1,35 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -USE_RUBY="ruby25 ruby26 ruby27"
27 -
28 -RUBY_FAKEGEM_EXTRADOC="README.md"
29 -
30 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
31 -
32 -inherit ruby-fakegem
33 -
34 -DESCRIPTION="Google Protocol Buffers serialization and RPC implementation for Ruby"
35 -HOMEPAGE="https://github.com/ruby-protobuf/protobuf"
36 -
37 -LICENSE="MIT"
38 -SLOT="$(ver_cut 1)"
39 -KEYWORDS="~amd64 ~arm"
40 -IUSE=""
41 -
42 -ruby_add_bdepend "
43 - >=dev-ruby/activesupport-3.2:*
44 - dev-ruby/middleware
45 - dev-ruby/thor:*
46 - dev-ruby/thread_safe
47 -"
48 -
49 -all_ruby_prepare() {
50 - sed -i -e '/bundler/I s:^:#:' Rakefile spec/spec_helper.rb || die
51 -
52 - # Avoid unpackaged optional dependency
53 - rm -f spec/lib/protobuf/rpc/connectors/{ping,zmq}_spec.rb spec/functional/zmq_server_spec.rb || die
54 - rm -rf spec/lib/protobuf/rpc/servers/zmq || die
55 - sed -i -e '/context .zmq/,/^ end/ s:^:#:' spec/lib/protobuf/cli_spec.rb || die
56 -}