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 7ACB61395E2 for ; Mon, 14 Nov 2016 06:39:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E047CE08B2; Mon, 14 Nov 2016 06:39:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88F25E08B2 for ; Mon, 14 Nov 2016 06:39:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B860C341651 for ; Mon, 14 Nov 2016 06:39:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FEAB24C0 for ; Mon, 14 Nov 2016 06:39:01 +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: <1479104941.c38ad61b5abe67df32d547ff3b18d88313357449.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/fakeweb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/fakeweb/fakeweb-1.3.0-r1.ebuild X-VCS-Directories: dev-ruby/fakeweb/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c38ad61b5abe67df32d547ff3b18d88313357449 X-VCS-Branch: master Date: Mon, 14 Nov 2016 06:39:01 +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-Archives-Salt: 564ab236-114b-436f-a1ad-c92a3082e82e X-Archives-Hash: e51a02f16f3a0092ec466029e76f792c commit: c38ad61b5abe67df32d547ff3b18d88313357449 Author: Hans de Graaff gentoo org> AuthorDate: Mon Nov 14 06:29:01 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Nov 14 06:29:01 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38ad61b dev-ruby/fakeweb: cleanup Package-Manager: portage-2.3.0 dev-ruby/fakeweb/fakeweb-1.3.0-r1.ebuild | 53 -------------------------------- 1 file changed, 53 deletions(-) diff --git a/dev-ruby/fakeweb/fakeweb-1.3.0-r1.ebuild b/dev-ruby/fakeweb/fakeweb-1.3.0-r1.ebuild deleted file mode 100644 index 77cea55..00000000 --- a/dev-ruby/fakeweb/fakeweb-1.3.0-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -USE_RUBY="ruby20" - -RUBY_FAKEGEM_DOCDIR="html" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" - -inherit ruby-fakegem - -DESCRIPTION="Helper for faking web requests in Ruby" -HOMEPAGE="https://github.com/chrisk/fakeweb" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86" -IUSE="" - -ruby_add_bdepend " - test? ( - dev-ruby/mocha:0.13 - dev-ruby/test-unit - dev-ruby/samuel - dev-ruby/right_http_connection - )" - -all_ruby_prepare() { - # The package bundles samuel and right_http_connection, remove - # them and use the packages instead. - rm -r test/vendor || die "failed to remove bundled gems" - - # We don't package sdoc and we don't have the direct template. - sed -i -e 's/sdoc/rdoc/' -e '/template/d' Rakefile || die - - # Require an old enough version of mocha - sed -i -e '1igem "mocha", "~> 0.13.0"' test/test_helper.rb || die - - # Use the test-unit gem to make jruby compatible with newer mocha. - sed -i -e '1igem "test-unit"' test/test_helper.rb || die -} - -each_ruby_prepare() { - case ${RUBY} in - *ruby2[01]) - # Tests fail on mocking of TCPSocket, but fakeweb itself - # actually works as evidenced by the thor test suite. - rm test/test_fake_web_open_uri.rb test/test_allow_net_connect.rb test/test_fake_web.rb || die - ;; - esac -}