From: Hans de Graaff Date: Mon, 25 Jun 2018 19:00:31 +0000 (+0200) Subject: dev-ruby/gherkin: cleanup X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3f95f9f8771d851db859d50947ba42789ca73592;p=gentoo.git dev-ruby/gherkin: cleanup Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- diff --git a/dev-ruby/gherkin/Manifest b/dev-ruby/gherkin/Manifest index 2ed71e1d87fc..deff1367f38b 100644 --- a/dev-ruby/gherkin/Manifest +++ b/dev-ruby/gherkin/Manifest @@ -1,4 +1,3 @@ -DIST gherkin-2.12.2-git.tgz 1764938 BLAKE2B b5cc7f063c8567df2dfe92fe805d5310feeba967865221ce69c8c24986ab786851885f4724b17a028daea298eea340b3bcd0c7296f05b02816c837ffdf8a41b5 SHA512 1030bcaf31791c7031f22b8e4c5d94ddbddf012b8686d06a7598fde99a28f8a1fda45dc66dbdefdb825a045730b077a10ca1134835630710551e20364886ce51 DIST gherkin-4.1.3.gem 350208 BLAKE2B 3b0f54124c9f29c9216aaa9810526f1e11f6243b02143443d0ac18209320c14fda67f1c36d3056dbe5adbc18c36f72270054c17a011921eb87f8d21bc3e8c3c9 SHA512 7c113172ddf38ccf7e49eaac19355f3cb991f69d7499dba9189f375b75d3614f349fc6374e584a92c1223b0708cc8944859b4b38e28d79779a5091fa0c775e6e DIST gherkin-5.0.0.gem 340992 BLAKE2B a8292fde04c98c409423733791e78b9d6e40a7a60b59a1acd0a0e9c6df0be9185e90f1c5af6ce0ac39f352457c18094c495557fb05323eb7ea5ae8ce27008950 SHA512 cc782e37f5aea4ad0776f5336e6218b77e7fd8d193786acffaa44685de3a2592e4e6f37a3787add807654901afd12bc2d094a782b154bb2be9e2cd16e283df2a DIST gherkin-5.1.0.gem 29696 BLAKE2B 2439b82a147a546e8df71e11996f9560a8720580e07795542fc81781449b483a42e54251f3d0dd3482331773b1cada1d61b468bfcec2a9464ee2542eef2ed13e SHA512 d935ccceaec493736f337a4c3db69909858d15f4c41e93ecfc6ca31a30fc48eec1cecbe71d455265e1062006f49f05461c9860c9b3cc4806bb25f42dec6f504e diff --git a/dev-ruby/gherkin/gherkin-2.12.2.ebuild b/dev-ruby/gherkin/gherkin-2.12.2.ebuild deleted file mode 100644 index a0671caf9601..000000000000 --- a/dev-ruby/gherkin/gherkin-2.12.2.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby22 ruby23" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="" - -RUBY_FAKEGEM_DOCDIR="rdoc" -RUBY_FAKEGEM_EXTRADOC="History.md README.md" - -inherit ruby-fakegem - -DESCRIPTION="Fast Gherkin lexer and parser based on Ragel" -HOMEPAGE="https://github.com/cucumber/gherkin" -LICENSE="MIT" -SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz" - -KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~sparc x86" -SLOT="0" -IUSE="doc test" - -DEPEND="${DEPEND} =dev-util/ragel-6*" -RDEPEND="${RDEPEND}" - -ruby_add_bdepend " - dev-ruby/rake-compiler - dev-ruby/ruby-beautify - test? ( - >=dev-ruby/builder-2.1.2 - >=dev-util/cucumber-1.1.3 - >=dev-ruby/rspec-2.6.0 - >=dev-ruby/term-ansicolor-1.0.5 - ) - doc? ( >=dev-ruby/yard-0.8.3 )" - -ruby_add_rdepend ">=dev-ruby/multi_json-1.3" - -RUBY_PATCHES=( ${P}-ruby21.patch ) - -all_ruby_prepare() { - # Remove Bundler-related things. - sed -i -e '/[Bb]undler/d' Rakefile spec/spec_helper.rb features/support/env.rb || die - rm Gemfile || die - - # Don't use compile dependencies to avoid building again for specs. - sed -i -e '/:compile/d' Rakefile - - # Keep this hardcoded -O0 optimization level since - # https://github.com/cucumber/gherkin/issues/182#issuecomment-6945009 - # hints at the fact that removing it might cause the mysterious - # Lexer errors that hapen intermittently. - # sed -ie -e 's/-O0//' tasks/compile.rake || die - - # Remove feature that depends on direct access to the cucumber - # source. We could probably set this up by downloading the source - # and unpacking it, but skipping this now in the interest of time. - rm features/pretty_formatter.feature || die - - # We need to remove these tasks during bootstrapping since it tries - # to load cucumber already but we can be sure it isn't installed - # yet. Also remove other rake tasks for which we may not yet have - # dependencies. - if ! use test ; then - rm tasks/cucumber.rake tasks/rspec.rake || die "Unable to remove rake tasks." - fi - - # Avoid dependency on yard if USE=-doc - if ! use doc ; then - rm tasks/apidoc.rake || die - fi - - # Avoid implicit dependency on git - sed -i -e 's/git ls-files/echo/' gherkin.gemspec || die -} - -all_ruby_compile() { - all_fakegem_compile - - if use doc ; then - yard || die - fi -} - -each_ruby_compile() { - ${RUBY} -I lib -S rake -rrake/clean -f tasks/compile.rake compile || die -} - -each_ruby_test() { - ${RUBY} -I lib -S rspec-2 spec || die "Specs failed" - CUCUMBER_HOME="${HOME}" RUBYLIB=lib ${RUBY} -S cucumber features || die "Cucumber features failed" -}