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.99.2.ebuild
Date: Sat, 02 Aug 2014 06:05:44
Message-Id: 20140802060537.4EEA52004E@flycatcher.gentoo.org
1 graaff 14/08/02 06:05:36
2
3 Modified: ChangeLog
4 Added: rspec-expectations-2.99.2.ebuild
5 Log:
6 Version bump.
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.74 dev-ruby/rspec-expectations/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog?rev=1.74&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog?rev=1.74&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog?r1=1.73&r2=1.74
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog,v
20 retrieving revision 1.73
21 retrieving revision 1.74
22 diff -u -r1.73 -r1.74
23 --- ChangeLog 22 Jul 2014 15:58:44 -0000 1.73
24 +++ ChangeLog 2 Aug 2014 06:05:36 -0000 1.74
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.73 2014/07/22 15:58:44 klausman Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog,v 1.74 2014/08/02 06:05:36 graaff Exp $
30 +
31 +*rspec-expectations-2.99.2 (02 Aug 2014)
32 +
33 + 02 Aug 2014; Hans de Graaff <graaff@g.o>
34 + +rspec-expectations-2.99.2.ebuild:
35 + Version bump.
36
37 22 Jul 2014; Tobias Klausmann <klausman@g.o>
38 rspec-expectations-2.99.0.ebuild:
39
40
41
42 1.1 dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: rspec-expectations-2.99.2.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.99.2.ebuild,v 1.1 2014/08/02 06:05:36 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
98 # Avoid a weird, and failing, test testing already installed code.
99 sed -e '/has an up-to-date caller_filter file/,/end/ s:^:#:' -i spec/rspec/expectations_spec.rb || die
100 }
101
102 each_ruby_prepare() {
103 case ${RUBY} in
104 *jruby)
105 # Avoid a test failing on backtrace details.
106 sed -e '/when the root file is loaded/,/end/ s:^:#:' -i spec/rspec/expectations_spec.rb || die
107 ;;
108 esac
109 }