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 0B0A11382FF for ; Sat, 9 Jul 2016 05:29:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D839D21C084; Sat, 9 Jul 2016 05:29:24 +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 859C121C082 for ; Sat, 9 Jul 2016 05:29:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B56AC340FD5 for ; Sat, 9 Jul 2016 05:29:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA373244D for ; Sat, 9 Jul 2016 05:29:17 +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: <1468042143.68e3f76132af93768b354c66fa03f0af38d59b13.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rake-compiler/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild X-VCS-Directories: dev-ruby/rake-compiler/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 68e3f76132af93768b354c66fa03f0af38d59b13 X-VCS-Branch: master Date: Sat, 9 Jul 2016 05:29:17 +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: b2259da2-df1a-4774-b6ed-2dcd6c10dd32 X-Archives-Hash: abc755f6f4d6f9d219e01a572b29ab50 commit: 68e3f76132af93768b354c66fa03f0af38d59b13 Author: Hans de Graaff gentoo org> AuthorDate: Sat Jul 9 05:18:00 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jul 9 05:29:03 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68e3f761 dev-ruby/rake-compiler: cleanup Package-Manager: portage-2.2.28 dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild | 59 ----------------------- 1 file changed, 59 deletions(-) diff --git a/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild b/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild deleted file mode 100644 index 8baa0d7..0000000 --- a/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20" - -RUBY_FAKEGEM_RECIPE_TEST="none" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc" - -inherit ruby-fakegem eutils - -DESCRIPTION="Provide a standard and simplified way to build and package Ruby extensions" -HOMEPAGE="https://github.com/luislavena/rake-compiler" -LICENSE="MIT" - -SRC_URI="https://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz" -RUBY_S="luislavena-${PN}-*" - -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="" - -ruby_add_rdepend "dev-ruby/rake" -USE_RUBY="ruby19 ruby20" ruby_add_bdepend "test? ( dev-ruby/rspec:2 )" -USE_RUBY="ruby19" ruby_add_bdepend "test? ( dev-util/cucumber )" - -each_ruby_prepare() { - case ${RUBY} in - *ruby19|*jruby) - # Remove this task so that it won't load on Ruby 1.9 and JRuby - # that lack the package_task file. It is, though, needed for the - # tests - rm tasks/gem.rake || die - # Remove specs aimed at a C-compiling ruby implementation. - rm spec/lib/rake/extensiontask_spec.rb || die - ;; - *) - ;; - esac -} - -each_ruby_test() { - # Skip cucumber for jruby (not supported) and ruby20 (not ready yet) - # Skip rspec as well for ruby21 to allow bootstrapping rspec for ruby21 - case ${RUBY} in - *ruby19) - ruby-ng_rspec - ruby-ng_cucumber - ;; - *ruby21) - ;; - *) - ruby-ng_rspec - ;; - esac -}