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-ruby/rspec-expectations: ChangeLog rspec-expectations-2.14.5-r1.ebuild
Date: Tue, 01 Apr 2014 19:31:33
Message-Id: 20140401193130.51F342005C@flycatcher.gentoo.org
1 graaff 14/04/01 19:31:30
2
3 Modified: ChangeLog
4 Added: rspec-expectations-2.14.5-r1.ebuild
5 Log:
6 Add ruby21. Drop alpha, sparc keywords: bug 465948.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.61 dev-ruby/rspec-expectations/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog?rev=1.61&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog?rev=1.61&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog?r1=1.60&r2=1.61
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog,v
20 retrieving revision 1.60
21 retrieving revision 1.61
22 diff -u -r1.60 -r1.61
23 --- ChangeLog 27 Mar 2014 01:57:08 -0000 1.60
24 +++ ChangeLog 1 Apr 2014 19:31:30 -0000 1.61
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/rspec-expectations
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog,v 1.60 2014/03/27 01:57:08 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog,v 1.61 2014/04/01 19:31:30 graaff Exp $
30 +
31 +*rspec-expectations-2.14.5-r1 (01 Apr 2014)
32 +
33 + 01 Apr 2014; Hans de Graaff <graaff@g.o>
34 + +rspec-expectations-2.14.5-r1.ebuild:
35 + Add ruby21. Drop alpha, sparc keywords: bug 465948.
36
37 27 Mar 2014; Manuel RĂ¼ger <mrueg@g.o>
38 -rspec-expectations-2.14.0.ebuild, -rspec-expectations-2.14.1.ebuild,
39
40
41
42 1.1 dev-ruby/rspec-expectations/rspec-expectations-2.14.5-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/rspec-expectations-2.14.5-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/rspec-expectations-2.14.5-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: rspec-expectations-2.14.5-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/rspec-expectations-2.14.5-r1.ebuild,v 1.1 2014/04/01 19:31:30 graaff Exp $
52
53 EAPI=5
54 USE_RUBY="ruby19 ruby20 ruby21 jruby"
55
56 RUBY_FAKEGEM_RECIPE_TEST="rspec"
57
58 RUBY_FAKEGEM_TASK_DOC=""
59 RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
60
61 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
66 HOMEPAGE="http://rspec.rubyforge.org/"
67 SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
68
69 LICENSE="MIT"
70 SLOT="2"
71 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
72 IUSE=""
73
74 ruby_add_rdepend ">=dev-ruby/diff-lcs-1.1.3"
75
76 ruby_add_bdepend "test? (
77 >=dev-ruby/rspec-core-2.11.0:2
78 >=dev-ruby/rspec-mocks-2.14.0:2
79 )"
80
81 all_ruby_prepare() {
82 # Don't set up bundler: it doesn't understand our setup.
83 sed -i -e '/[Bb]undler/d' Rakefile || die
84
85 # Remove the Gemfile to avoid running through 'bundle exec'
86 rm Gemfile || die
87
88 # Remove .rspec options to avoid dependency on newer rspec when
89 # bootstrapping.
90 rm .rspec || die
91
92 # fix up the gemspecs
93 sed -i \
94 -e '/git ls/d' \
95 -e '/add_development_dependency/d' \
96 "${RUBY_FAKEGEM_GEMSPEC}" || die
97 }