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-util/aruba/
Date: Thu, 01 Sep 2016 19:50:02
Message-Id: 1472759377.e7df36441266809467cdd278486e846d5b549dab.graaff@gentoo
1 commit: e7df36441266809467cdd278486e846d5b549dab
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 18:59:47 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 19:49:37 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7df3644
7
8 dev-util/aruba: add ruby23 revision
9
10 Package-Manager: portage-2.2.28
11
12 dev-util/aruba/aruba-0.6.2-r1.ebuild | 41 ++++++++++++++++++++++++++++++++++++
13 1 file changed, 41 insertions(+)
14
15 diff --git a/dev-util/aruba/aruba-0.6.2-r1.ebuild b/dev-util/aruba/aruba-0.6.2-r1.ebuild
16 new file mode 100644
17 index 00000000..c012bf4
18 --- /dev/null
19 +++ b/dev-util/aruba/aruba-0.6.2-r1.ebuild
20 @@ -0,0 +1,41 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +USE_RUBY="ruby20 ruby21 ruby22 ruby23"
27 +
28 +RUBY_FAKEGEM_TASK_DOC=""
29 +RUBY_FAKEGEM_RECIPE_TEST="cucumber"
30 +RUBY_FAKEGEM_EXTRADOC="History.md README.md"
31 +
32 +RUBY_FAKEGEM_GEMSPEC="aruba.gemspec"
33 +
34 +inherit ruby-fakegem
35 +
36 +DESCRIPTION="Cucumber steps for driving out command line applications"
37 +HOMEPAGE="https://github.com/cucumber/aruba"
38 +LICENSE="MIT"
39 +
40 +KEYWORDS="~amd64"
41 +SLOT="0"
42 +IUSE=""
43 +
44 +DEPEND="${DEPEND} test? ( sys-devel/bc )"
45 +RDEPEND="${RDEPEND}"
46 +
47 +ruby_add_rdepend "
48 + >=dev-ruby/childprocess-0.3.6
49 + >=dev-ruby/rspec-expectations-2.7:2
50 + >=dev-util/cucumber-1.1.1"
51 +
52 +ruby_add_bdepend "test? ( >=dev-ruby/rspec-2.11:2 >=dev-ruby/bcat-0.6.1 )"
53 +
54 +all_ruby_prepare() {
55 + # Remove bundler-related code.
56 + sed -i -e '/[Bb]undler/d' Rakefile || die
57 + rm Gemfile || die
58 +
59 + # Remove references to git ls-files.
60 + sed -i -e '/git ls-files/d' aruba.gemspec || die
61 +}