Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/aruba: aruba-0.5.0.ebuild ChangeLog
Date: Sat, 24 Nov 2012 08:21:59
Message-Id: 20121124082137.D1BA020C65@flycatcher.gentoo.org
1 graaff 12/11/24 08:21:37
2
3 Modified: ChangeLog
4 Added: aruba-0.5.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.20 dev-util/aruba/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/aruba/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/aruba/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/aruba/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/aruba/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 28 Oct 2012 18:16:58 -0000 1.19
24 +++ ChangeLog 24 Nov 2012 08:21:37 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/aruba
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/aruba/ChangeLog,v 1.19 2012/10/28 18:16:58 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/aruba/ChangeLog,v 1.20 2012/11/24 08:21:37 graaff Exp $
30 +
31 +*aruba-0.5.0 (24 Nov 2012)
32 +
33 + 24 Nov 2012; Hans de Graaff <graaff@g.o> +aruba-0.5.0.ebuild:
34 + Version bump.
35
36 28 Oct 2012; Raúl Porcel <armin76@g.o> aruba-0.4.11.ebuild:
37 Add ~alpha/~ia64/~sparc wrt #417573
38
39
40
41 1.1 dev-util/aruba/aruba-0.5.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/aruba/aruba-0.5.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/aruba/aruba-0.5.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: aruba-0.5.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/aruba/aruba-0.5.0.ebuild,v 1.1 2012/11/24 08:21:37 graaff Exp $
51
52 EAPI=4
53 USE_RUBY="ruby18 ruby19 ree18"
54
55 RUBY_FAKEGEM_TASK_DOC=""
56 RUBY_FAKEGEM_RECIPE_TEST="cucumber"
57 RUBY_FAKEGEM_EXTRADOC="History.md README.md"
58
59 RUBY_FAKEGEM_GEMSPEC="aruba.gemspec"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="Cucumber steps for driving out command line applications."
64 HOMEPAGE="https://github.com/cucumber/aruba"
65 LICENSE="MIT"
66
67 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
68 SLOT="0"
69 IUSE=""
70
71 DEPEND="${DEPEND} test? ( sys-devel/bc )"
72 RDEPEND="${RDEPEND}"
73
74 ruby_add_rdepend "
75 >=dev-ruby/bcat-0.6.1
76 >=dev-ruby/childprocess-0.2.3
77 >=dev-ruby/rspec-2.6
78 >=dev-util/cucumber-1.1.1"
79
80 all_ruby_prepare() {
81 # Remove bundler-related code.
82 sed -i -e '/[Bb]undler/d' Rakefile || die
83 rm Gemfile || die
84
85 # Relax childprocess dependency. We don't have this old version
86 # anymore and this is only done to handle changed semantics for
87 # non-existing files. Also remove references to git ls-files.
88 sed -i -e 's/= 0.2.3/>= 0.2.3/' \
89 -e '/git ls-files/d' \
90 aruba.gemspec || die
91
92 # see https://github.com/cucumber/aruba/issues/106
93 # Avoid features depending on deprecated childprocess behavior.
94 sed -i -e '34,39 s/@posix/@posix @wip/' features/exit_statuses.feature || die
95 sed -i -e '7 s/@posix/@posix @wip/' features/output.feature || die
96 }