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 8BBA4138334 for ; Sat, 21 Sep 2019 06:30:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCA8BE087E; Sat, 21 Sep 2019 06:30:22 +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 B04DEE087E for ; Sat, 21 Sep 2019 06:30:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6DDBA34B426 for ; Sat, 21 Sep 2019 06:30:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6102D720 for ; Sat, 21 Sep 2019 06:30:06 +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: <1569047398.fa95fde45b957c5c028a857437825cd599725c5c.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/childprocess/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/childprocess/childprocess-1.0.1.ebuild X-VCS-Directories: dev-ruby/childprocess/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: fa95fde45b957c5c028a857437825cd599725c5c X-VCS-Branch: master Date: Sat, 21 Sep 2019 06:30:06 +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: 20353a0a-f141-4656-a526-f2e8fe21ced6 X-Archives-Hash: 5fbc25d17fa33c1d817344a655aef178 commit: fa95fde45b957c5c028a857437825cd599725c5c Author: Hans de Graaff gentoo org> AuthorDate: Sat Sep 21 06:08:17 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Sep 21 06:29:58 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa95fde4 dev-ruby/childprocess: cleanup Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/childprocess/childprocess-1.0.1.ebuild | 42 ------------------------- 1 file changed, 42 deletions(-) diff --git a/dev-ruby/childprocess/childprocess-1.0.1.ebuild b/dev-ruby/childprocess/childprocess-1.0.1.ebuild deleted file mode 100644 index fed3e299a0f..00000000000 --- a/dev-ruby/childprocess/childprocess-1.0.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# ruby26: code not compatible -USE_RUBY="ruby23 ruby24 ruby25" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Solution for controlling external programs running in the background" -HOMEPAGE="https://github.com/jarib/childprocess" - -LICENSE="MIT" -SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/ffi-1.0.11" - -all_ruby_prepare() { - # Remove bundler support - rm Gemfile || die - sed -i -e "/[Bb]undler/d" Rakefile || die - sed -i -e "/[Cc]overalls/d" spec/spec_helper.rb || die - sed -i -e 's/git ls-files/find/' ${RUBY_FAKEGEM_GEMSPEC} || die -} - -each_ruby_prepare() { - sed -i -e "s:'ruby':'"${RUBY}"':" spec/childprocess_spec.rb || die -} - -each_ruby_test() { - RUBYLIB=lib RSPEC_VERSION=3 ruby-ng_rspec -}