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/rack-test: ChangeLog rack-test-0.5.6.ebuild
Date: Sun, 03 Oct 2010 09:47:02
Message-Id: 20101003094657.7803820051@flycatcher.gentoo.org
1 graaff 10/10/03 09:46:57
2
3 Modified: ChangeLog
4 Added: rack-test-0.5.6.ebuild
5 Log:
6 Version bump. Add ree18 support.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 dev-ruby/rack-test/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack-test/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack-test/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack-test/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rack-test/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 5 Jun 2010 05:44:31 -0000 1.5
23 +++ ChangeLog 3 Oct 2010 09:46:57 -0000 1.6
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ruby/rack-test
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack-test/ChangeLog,v 1.5 2010/06/05 05:44:31 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack-test/ChangeLog,v 1.6 2010/10/03 09:46:57 graaff Exp $
29 +
30 +*rack-test-0.5.6 (03 Oct 2010)
31 +
32 + 03 Oct 2010; Hans de Graaff <graaff@g.o> +rack-test-0.5.6.ebuild:
33 + Version bump. Add ree18 support.
34
35 *rack-test-0.5.4 (05 Jun 2010)
36
37
38
39
40 1.1 dev-ruby/rack-test/rack-test-0.5.6.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack-test/rack-test-0.5.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack-test/rack-test-0.5.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: rack-test-0.5.6.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack-test/rack-test-0.5.6.ebuild,v 1.1 2010/10/03 09:46:57 graaff Exp $
50
51 EAPI=2
52 USE_RUBY="ruby18 ree18"
53
54 # no documentation is generable, it needs hanna, which is broken
55 RUBY_FAKEGEM_TASK_DOC=""
56
57 RUBY_FAKEGEM_TASK_TEST="spec"
58
59 RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="Rack::Test is a small, simple testing API for Rack apps."
64 HOMEPAGE="http://github.com/brynary/rack-test"
65
66 LICENSE="MIT"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE=""
70
71 ruby_add_rdepend '>=dev-ruby/rack-1.0'
72 ruby_add_bdepend "test? ( dev-ruby/rspec:2 dev-ruby/sinatra )"
73
74 all_ruby_prepare() {
75 # The specs don't explicitly need 1.0.0 but also pass with 1.1.
76 sed -i -e 's/~> 1.0.0/> 1.0.0/' spec/spec_helper.rb || die
77
78 # Remove Bundler related code.
79 rm Gemfile Gemfile.lock || die "Unable to clean unneeded Bundler items."
80 }