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.13.0.ebuild
Date: Sun, 24 Feb 2013 08:44:15
Message-Id: 20130224084412.9EC8F2171D@flycatcher.gentoo.org
1 graaff 13/02/24 08:44:12
2
3 Modified: ChangeLog
4 Added: rspec-expectations-2.13.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.52 dev-ruby/rspec-expectations/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog?rev=1.52&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog?rev=1.52&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog?r1=1.51&r2=1.52
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog,v
20 retrieving revision 1.51
21 retrieving revision 1.52
22 diff -u -r1.51 -r1.52
23 --- ChangeLog 24 Feb 2013 08:10:36 -0000 1.51
24 +++ ChangeLog 24 Feb 2013 08:44:12 -0000 1.52
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/rspec-expectations
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog,v 1.51 2013/02/24 08:10:36 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/ChangeLog,v 1.52 2013/02/24 08:44:12 graaff Exp $
30 +
31 +*rspec-expectations-2.13.0 (24 Feb 2013)
32 +
33 + 24 Feb 2013; Hans de Graaff <graaff@g.o>
34 + +rspec-expectations-2.13.0.ebuild:
35 + Version bump.
36
37 24 Feb 2013; Hans de Graaff <graaff@g.o>
38 -rspec-expectations-2.10.0.ebuild, -rspec-expectations-2.11.3.ebuild:
39
40
41
42 1.1 dev-ruby/rspec-expectations/rspec-expectations-2.13.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/rspec-expectations-2.13.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-expectations/rspec-expectations-2.13.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: rspec-expectations-2.13.0.ebuild
48 ===================================================================
49 # Copyright 1999-2013 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.13.0.ebuild,v 1.1 2013/02/24 08:44:12 graaff Exp $
52
53 EAPI=5
54 USE_RUBY="ruby18 ree18 ruby19 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="~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"
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
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 # fix up the gemspecs
89 sed -i \
90 -e '/git ls/d' \
91 -e '/add_development_dependency/d' \
92 "${RUBY_FAKEGEM_GEMSPEC}" || die
93 }