Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/rack: rack-1.5.2-r1.ebuild ChangeLog
Date: Sat, 05 Oct 2013 10:53:22
Message-Id: 20131005105316.5A3C22004C@flycatcher.gentoo.org
1 mrueg 13/10/05 10:53:16
2
3 Modified: ChangeLog
4 Added: rack-1.5.2-r1.ebuild
5 Log:
6 Add ruby20 target.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.114 dev-ruby/rack/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/ChangeLog?rev=1.114&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/ChangeLog?rev=1.114&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/ChangeLog?r1=1.113&r2=1.114
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rack/ChangeLog,v
20 retrieving revision 1.113
21 retrieving revision 1.114
22 diff -u -r1.113 -r1.114
23 --- ChangeLog 13 Apr 2013 12:29:14 -0000 1.113
24 +++ ChangeLog 5 Oct 2013 10:53:16 -0000 1.114
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/rack
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/ChangeLog,v 1.113 2013/04/13 12:29:14 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/ChangeLog,v 1.114 2013/10/05 10:53:16 mrueg Exp $
30 +
31 +*rack-1.5.2-r1 (05 Oct 2013)
32 +
33 + 05 Oct 2013; Manuel RĂ¼ger <mrueg@g.o> +rack-1.5.2-r1.ebuild:
34 + Add ruby20 target.
35
36 *rack-1.5.2 (13 Apr 2013)
37 *rack-1.4.5-r1 (13 Apr 2013)
38
39
40
41 1.1 dev-ruby/rack/rack-1.5.2-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/rack-1.5.2-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/rack-1.5.2-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rack-1.5.2-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/rack-1.5.2-r1.ebuild,v 1.1 2013/10/05 10:53:16 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20 jruby"
54
55 RUBY_FAKEGEM_DOCDIR="doc"
56 RUBY_FAKEGEM_EXTRADOC="ChangeLog KNOWN-ISSUES README.rdoc SPEC"
57
58 inherit ruby-fakegem eutils versionator
59
60 DESCRIPTION="A modular Ruby webserver interface"
61 HOMEPAGE="http://rack.github.com/"
62 SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz"
63
64 LICENSE="MIT"
65 SLOT="$(get_version_component_range 1-2)"
66 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"
67 IUSE=""
68
69 RUBY_PATCHES=( ${PN}-1.2.1-gentoo.patch )
70
71 ruby_add_rdepend "virtual/ruby-ssl"
72
73 # The gem has automagic dependencies over mongrel, ruby-openid,
74 # memcache-client, thin, mongrel and camping; not sure if we should
75 # make them dependencies at all.
76 ruby_add_bdepend "test? ( dev-ruby/bacon )"
77
78 # Block against versions in older slots that also try to install a binary.
79 RDEPEND="${RDEPEND} !<dev-ruby/rack-1.4.5-r1:1.4"
80
81 each_ruby_test() {
82 # Since the Rakefile calls specrb directly rather than loading it, we
83 # cannot use it to launch the tests or only the currently-selected
84 # RUBY interpreter will be tested.
85 ${RUBY} -S bacon -Ilib -w -a \
86 -q -t '^(?!Rack::Handler|Rack::Adapter|Rack::Session::Memcache|Rack::Server)' \
87 || die "test failed for ${RUBY}"
88 }