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 2C90D1580B9 for ; Fri, 27 Aug 2021 07:36:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7487AE0878; Fri, 27 Aug 2021 07:36:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57204E0878 for ; Fri, 27 Aug 2021 07:36:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39FB3342BF3 for ; Fri, 27 Aug 2021 07:36:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDC892C for ; Fri, 27 Aug 2021 07:36:48 +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: <1630049805.a6a234de93529a3d79949b5ea713f632791cd3ce.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/protobuf-cucumber/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/protobuf-cucumber/protobuf-cucumber-3.10.8.ebuild X-VCS-Directories: dev-util/protobuf-cucumber/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: a6a234de93529a3d79949b5ea713f632791cd3ce X-VCS-Branch: master Date: Fri, 27 Aug 2021 07:36:48 +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: 7b743212-4827-4d41-aa44-b12685982355 X-Archives-Hash: 56feb5638f2d0489acb19bfe8d5f031b commit: a6a234de93529a3d79949b5ea713f632791cd3ce Author: Hans de Graaff gentoo org> AuthorDate: Fri Aug 27 07:24:31 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Aug 27 07:36:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6a234de dev-util/protobuf-cucumber: cleanup Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> .../protobuf-cucumber-3.10.8.ebuild | 35 ---------------------- 1 file changed, 35 deletions(-) diff --git a/dev-util/protobuf-cucumber/protobuf-cucumber-3.10.8.ebuild b/dev-util/protobuf-cucumber/protobuf-cucumber-3.10.8.ebuild deleted file mode 100644 index 705345da3cf..00000000000 --- a/dev-util/protobuf-cucumber/protobuf-cucumber-3.10.8.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -inherit ruby-fakegem - -DESCRIPTION="Google Protocol Buffers serialization and RPC implementation for Ruby" -HOMEPAGE="https://github.com/ruby-protobuf/protobuf" - -LICENSE="MIT" -SLOT="$(ver_cut 1)" -KEYWORDS="~amd64 ~arm" -IUSE="" - -ruby_add_bdepend " - >=dev-ruby/activesupport-3.2:* - dev-ruby/middleware - dev-ruby/thor:* - dev-ruby/thread_safe -" - -all_ruby_prepare() { - sed -i -e '/bundler/I s:^:#:' Rakefile spec/spec_helper.rb || die - - # Avoid unpackaged optional dependency - rm -f spec/lib/protobuf/rpc/connectors/{ping,zmq}_spec.rb spec/functional/zmq_server_spec.rb || die - rm -rf spec/lib/protobuf/rpc/servers/zmq || die - sed -i -e '/context .zmq/,/^ end/ s:^:#:' spec/lib/protobuf/cli_spec.rb || die -}