Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/rack: ChangeLog rack-1.1.0.ebuild
Date: Mon, 04 Jan 2010 19:26:56
Message-Id: E1NRs3P-00027u-89@stork.gentoo.org
1 flameeyes 10/01/04 18:53:23
2
3 Modified: ChangeLog
4 Added: rack-1.1.0.ebuild
5 Log:
6 Version bump, tests needed tweaking for call.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 dev-ruby/rack/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rack/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rack/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rack/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rack/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 4 Jan 2010 11:20:14 -0000 1.22
23 +++ ChangeLog 4 Jan 2010 18:53:22 -0000 1.23
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ruby/rack
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/ChangeLog,v 1.22 2010/01/04 11:20:14 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/ChangeLog,v 1.23 2010/01/04 18:53:22 flameeyes Exp $
29 +
30 +*rack-1.1.0 (04 Jan 2010)
31 +
32 + 04 Jan 2010; Diego E. Pettenò <flameeyes@g.o> +rack-1.1.0.ebuild:
33 + Version bump, tests needed tweaking for call.
34
35 04 Jan 2010; Christian Faulhammer <fauli@g.o> rack-1.0.1-r1.ebuild:
36 Transfer Prefix keywords
37
38
39
40 1.1 dev-ruby/rack/rack-1.1.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rack/rack-1.1.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rack/rack-1.1.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: rack-1.1.0.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/rack-1.1.0.ebuild,v 1.1 2010/01/04 18:53:22 flameeyes Exp $
50
51 EAPI="2"
52 USE_RUBY="ruby18"
53
54 RUBY_FAKEGEM_DOCDIR="doc"
55
56 inherit ruby-fakegem
57
58 DESCRIPTION="A modular Ruby webserver interface"
59 HOMEPAGE="http://rubyforge.org/projects/rack"
60 SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ia64 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
65 IUSE=""
66
67 # The gem has automagic dependencies over mongrel, ruby-openid,
68 # memcache-client, thin and camping; not sure if we should make them
69 # dependencies at all.
70 ruby_add_bdepend test dev-ruby/test-spec
71
72 # Since the Rakefile calls specrb directly rather than loading it, we
73 # cannot use it to launch the tests or only the currently-selected
74 # RUBY interpreter will be tested.
75 each_ruby_test() {
76 ${RUBY} -S specrb -Ilib:test -w -a \
77 -t '^(?!Rack::Handler|Rack::Adapter|Rack::Session::Memcache|rackup)' \
78 || die "test failed for ${RUBY}"
79 }
80
81 all_ruby_install() {
82 all_fakegem_install
83
84 ruby_fakegem_binwrapper rackup
85 }