Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rspec-expectations/
Date: Sat, 09 Jul 2016 05:29:28
Message-Id: 1468042133.6708136424ff129e588ef9e9acb81a92d180f53b.graaff@gentoo
1 commit: 6708136424ff129e588ef9e9acb81a92d180f53b
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 9 05:14:29 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 9 05:28:53 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67081364
7
8 dev-ruby/rspec-expectations: cleanup
9
10 Package-Manager: portage-2.2.28
11
12 .../rspec-expectations-2.14.5.ebuild | 49 ----------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/dev-ruby/rspec-expectations/rspec-expectations-2.14.5.ebuild b/dev-ruby/rspec-expectations/rspec-expectations-2.14.5.ebuild
16 deleted file mode 100644
17 index acf1eca..0000000
18 --- a/dev-ruby/rspec-expectations/rspec-expectations-2.14.5.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -USE_RUBY="ruby19 ruby20"
27 -
28 -RUBY_FAKEGEM_RECIPE_TEST="rspec"
29 -
30 -RUBY_FAKEGEM_TASK_DOC=""
31 -RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
32 -
33 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
34 -
35 -inherit ruby-fakegem
36 -
37 -DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
38 -HOMEPAGE="http://rspec.rubyforge.org/"
39 -SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
40 -
41 -LICENSE="MIT"
42 -SLOT="2"
43 -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"
44 -IUSE=""
45 -
46 -ruby_add_rdepend ">=dev-ruby/diff-lcs-1.1.3"
47 -
48 -ruby_add_bdepend "test? (
49 - >=dev-ruby/rspec-core-2.11.0:2
50 - >=dev-ruby/rspec-mocks-2.14.0:2
51 - )"
52 -
53 -all_ruby_prepare() {
54 - # Don't set up bundler: it doesn't understand our setup.
55 - sed -i -e '/[Bb]undler/d' Rakefile || die
56 -
57 - # Remove the Gemfile to avoid running through 'bundle exec'
58 - rm Gemfile || die
59 -
60 - # Remove .rspec options to avoid dependency on newer rspec when
61 - # bootstrapping.
62 - rm .rspec || die
63 -
64 - # fix up the gemspecs
65 - sed -i \
66 - -e '/git ls/d' \
67 - -e '/add_development_dependency/d' \
68 - "${RUBY_FAKEGEM_GEMSPEC}" || die
69 -}